There was an error while loading. Please reload this page.
1 parent 46affdb commit 63a217cCopy full SHA for 63a217c
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,19 @@
1
+on:
2
+ push:
3
+jobs:
4
+ jira-comments-test:
5
+ name: Comment on new pull request
6
+ runs-on: ubuntu-24.04
7
+ steps:
8
+ - name: Checkout
9
+ uses: actions/checkout@v5
10
+ - name: Build Comment
11
+ run: |-
12
+ echo '{"JTST-91": "test comment"}' > jira_comment.json
13
+ - name: Post Comment
14
+ uses: ./actions/jira-comment
15
+ with:
16
+ comment_file: jira_comment.json
17
+ user: ${{ secrets.JIRA_USER }}
18
+ password: ${{ secrets.JIRA_PASSWORD }}
19
+ url: ${{ secrets.JIRA_URL }}
0 commit comments