Skip to content

Commit

Permalink
Create jira.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell authored Jun 25, 2024
1 parent c5ad5a4 commit d16ca97
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/jira.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# When someone opens a public GitHub issue, this workflow will create a corresponding
# Jira ticket and update the issue title to reference the Jira ticket number.
# When someone closes a public GitHub issue, this workflow will comment on the linked
# Jira ticket indicating that the issue was closed.
# Your Jira project key must match the repository name.
name: Sync GitHub issues to Jira
on:
issues:
types:
- opened
- closed
permissions:
issues: write
jobs:
jira:
uses: acquia/.github/.github/workflows/jira.yml@main
# Set the JIRA* secrets in your repository settings. You will need to create an API
# token from your Jira user profile.
secrets:
jira-user-email: ${{ secrets.JIRA_USER_EMAIL }}
jira-api-token: ${{ secrets.JIRA_API_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d16ca97

Please sign in to comment.