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 4e2b266 commit 460c81eCopy full SHA for 460c81e
.github/workflows/comment.yml
@@ -0,0 +1,23 @@
1
+name: PR Comment
2
+
3
+on:
4
+ workflow_run:
5
+ # The workflow generating the artifacts
6
+ workflows: [Test]
7
+ types:
8
+ - completed
9
10
+permissions:
11
+ actions: read
12
+ issues: write
13
+ checks: read
14
+ statuses: read
15
+ pull-requests: write
16
17
+jobs:
18
+ comment:
19
+ uses: bgd-labs/github-workflows/.github/workflows/comment.yml@main
20
+ secrets:
21
+ # the provided PAT needs write and write permissions on issues and pull requests
22
+ # the PAT is only really needed when commenting of prs from forks
23
+ READ_ONLY_PAT: ${{ secrets.READ_ONLY_PAT }}
0 commit comments