Skip to content

Commit

Permalink
Merge pull request #2 from cncf-tags/test-workflows
Browse files Browse the repository at this point in the history
new workflow file 1
  • Loading branch information
angellk authored Jun 12, 2024
2 parents a8a057c + f136312 commit 607b7df
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/gtr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Add General Technical Review Comment
on:
issues:
types:
- labeled
jobs:
add-comment:
if: github.event.label.name == 'gtr'
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Add General Technical Review comment
run: gh issue comment "$NUMBER" --body "$BODY"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
BODY: >
This is a comment discussing what to expect with the General Technical Review questions.
:sparkles: Thank you! :sparkles:

0 comments on commit 607b7df

Please sign in to comment.