We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a8a057c + f136312 commit 607b7dfCopy full SHA for 607b7df
.github/workflows/gtr.yaml
@@ -0,0 +1,21 @@
1
+name: Add General Technical Review Comment
2
+on:
3
+ issues:
4
+ types:
5
+ - labeled
6
+jobs:
7
+ add-comment:
8
+ if: github.event.label.name == 'gtr'
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ issues: write
12
+ steps:
13
+ - name: Add General Technical Review comment
14
+ run: gh issue comment "$NUMBER" --body "$BODY"
15
+ env:
16
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
+ GH_REPO: ${{ github.repository }}
18
+ NUMBER: ${{ github.event.issue.number }}
19
+ BODY: >
20
+ This is a comment discussing what to expect with the General Technical Review questions.
21
+ :sparkles: Thank you! :sparkles:
0 commit comments