Skip to content

Commit 63a217c

Browse files
committed
[internal] DEBUG JIRA COMMENT ISSUE
1 parent 46affdb commit 63a217c

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)