Skip to content

Commit 7aad551

Browse files
committed
(PA-5395) Add Jira workflow
This commit adds a GitHub Actions workflow to export issues from GitHub into Jira.
1 parent 4f005ab commit 7aad551

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/jira.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Export issue to Jira
3+
4+
on:
5+
issues:
6+
types: [labeled]
7+
8+
permissions:
9+
issues: write
10+
11+
jobs:
12+
export:
13+
uses: "puppetlabs/phoenix-github-actions/.github/workflows/jira.yml@main"
14+
with:
15+
jira-project: PA
16+
jira-base-url: ${{ vars.jira_base_url }}
17+
jira-user-email: ${{ vars.jira_user_email }}
18+
secrets:
19+
jira-api-token: ${{ secrets.JIRA_ISSUES_ACTION }}

0 commit comments

Comments
 (0)