We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f66f67 commit 7c50983Copy full SHA for 7c50983
.github/workflows/clippy_bors.yml
@@ -22,6 +22,9 @@ jobs:
22
steps:
23
- name: Check Changelog
24
run: |
25
+ MESSAGE=$(git log --format=%B -n 1 ${{ github.sha }})
26
+ echo $MESSAGE
27
+ exit 1
28
PR=$(echo "${{ github.ref }}" | grep -o "[0-9]*")
29
output=$(curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -s "https://api.github.com/repos/rust-lang/rust-clippy/pulls/$PR" | \
30
python -c "import sys, json; print(json.load(sys.stdin)['body'])" | \
0 commit comments