Skip to content

Commit

Permalink
Create sync-issues-to-jira.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
lolaapenna authored Jun 19, 2024
1 parent 6a8a363 commit ca55ac5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/sync-issues-to-jira.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Sync GitHub issues to Jira example
on: [issues]

concurrency:
group: sync-issues-to-jira-${{ github.event.issue.number }}

jobs:
sync-issues:
name: Sync issues to Jira
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cloudoperators/sync-issues-github-jira@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JIRA_URL: ${{ secrets.JIRA_URL }}
JIRA_USERNAME: ${{ secrets.JIRA_USERNAME }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_COMPONENT: ${{ secrets.JIRA_COMPONENT }}
JIRA_PROJECT_KEY: ${{ secrets.JIRA_PROJECT_KEY }}
JIRA_EPIC_KEY: ${{ secrets.JIRA_EPIC_KEY }}
JIRA_AUTHORIZATION: ${{ secrets.JIRA_AUTHORIZATION }}

0 comments on commit ca55ac5

Please sign in to comment.