Skip to content

Commit 607b7df

Browse files
authored
Merge pull request #2 from cncf-tags/test-workflows
new workflow file 1
2 parents a8a057c + f136312 commit 607b7df

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/gtr.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)