mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
Check PRs for changelog entry in the body
This commit is contained in:
parent
a73bb33399
commit
a0f6c9361b
1 changed files with 13 additions and 0 deletions
13
.travis.yml
13
.travis.yml
|
@ -88,6 +88,19 @@ matrix:
|
|||
- os: windows
|
||||
|
||||
script:
|
||||
- |
|
||||
if [ "$TRAVIS_BRANCH" == "auto" ] || [ "$TRAVIS_BRANCH" == "try" ]; then
|
||||
output=$(curl -s "https://api.github.com/repos/rust-lang/rust-clippy/pulls/$TRAVIS_PULL_REQUEST" | \
|
||||
python -c "import sys, json; print(json.load(sys.stdin)['body'])" | \
|
||||
grep "changelog: " | \
|
||||
sed "s/changelog: //g")
|
||||
if [ -z "$output" ]; then
|
||||
echo "ERROR: PR body must contain 'changelog: ...'"
|
||||
exit 1
|
||||
elif [ "$output" = "none" ]; then
|
||||
echo "WARNING: changelog is 'none'"
|
||||
fi
|
||||
fi
|
||||
- |
|
||||
rm rust-toolchain
|
||||
./setup-toolchain.sh
|
||||
|
|
Loading…
Reference in a new issue