Skip to content

Commit 1dd0fb2

Browse files
authored
Adds JIRA Release Sync action to github workflows (PP-3790). (#295)
1 parent 165f892 commit 1dd0fb2

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Jira Release Sync
2+
on:
3+
release:
4+
types: [published]
5+
jobs:
6+
sync-to-jira:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout repository
10+
uses: actions/checkout@v4
11+
12+
- name: Sync release to Jira
13+
uses: ThePalaceProject/circulation/.github/actions/jira-release-sync@main
14+
with:
15+
jira-base-url: ${{ secrets.JIRA_BASE_URL }}
16+
jira-user-email: ${{ secrets.JIRA_USER_EMAIL }}
17+
jira-api-token: ${{ secrets.JIRA_API_TOKEN }}
18+
19+
release-name: "Android ${{ github.event.release.tag_name }}"
20+
release-url: ${{ github.event.release.html_url }}
21+
release-body: ${{ github.event.release.body }}

0 commit comments

Comments
 (0)