We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 165f892 commit 1dd0fb2Copy full SHA for 1dd0fb2
1 file changed
.github/workflows/jira-release-sync.yml
@@ -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