mirror of
https://github.com/public-apis/public-apis.git
synced 2025-05-15 01:56:44 +02:00
Update diff generator for pull requests
This commit is contained in:
parent
e2b3ae925f
commit
fa02f5cbcf
1 changed files with 8 additions and 2 deletions
|
@ -2,9 +2,15 @@
|
||||||
FORMAT_FILE=../README.md
|
FORMAT_FILE=../README.md
|
||||||
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
||||||
echo "running on Pull Request #$TRAVIS_PULL_REQUEST"
|
echo "running on Pull Request #$TRAVIS_PULL_REQUEST"
|
||||||
git show | egrep "\+" > additions.txt
|
DIFF_URL="https://patch-diff.githubusercontent.com/raw/toddmotto/public-apis/pull/$TRAVIS_PULL_REQUEST.diff"
|
||||||
echo "--ADDITIONS--"
|
curl https://patch-diff.githubusercontent.com/raw/toddmotto/public-apis/pull/398.diff > diff.txt
|
||||||
|
echo "------- BEGIN DIFF -------"
|
||||||
|
cat diff.txt
|
||||||
|
echo "-------- END DIFF --------"
|
||||||
|
cat diff.txt | egrep "\+" > additions.txt
|
||||||
|
echo "------ BEGIN ADDITIONS -----"
|
||||||
cat additions.txt
|
cat additions.txt
|
||||||
|
echo "------- END ADDITIONS ------"
|
||||||
LINK_FILE=additions.txt
|
LINK_FILE=additions.txt
|
||||||
else
|
else
|
||||||
echo "running on $TRAVIS_BRANCH branch"
|
echo "running on $TRAVIS_BRANCH branch"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue