We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9422b5 commit 6b0a285Copy full SHA for 6b0a285
.github/workflows/commit-format.yml
@@ -10,6 +10,8 @@ jobs:
10
check_commit_changelogs:
11
runs-on: ubuntu-latest
12
name: check-changelogs
13
+ permissions:
14
+ pull-requests: write
15
16
steps:
17
- uses: actions/checkout@v3
@@ -26,7 +28,13 @@ jobs:
26
28
27
29
- name: GCC check PR Commits
30
run: |
- python3 contrib/gcc-changelog/git_check_commit.py origin/${{ github.event.pull_request.base.ref }}..${{ github.event.pull_request.head.sha }}
31
+ python3 contrib/gcc-changelog/git_check_commit.py origin/${{ github.event.pull_request.base.ref }}..${{ github.event.pull_request.head.sha }} | tee results.log
32
+
33
+ # rerun (remove)
34
+ - uses: mshick/add-pr-comment@v2
35
+ with:
36
+ message-id: 0
37
+ message-path: results.log
38
39
check_commit_prefixes:
40
0 commit comments