From 6590c9121aa0354e010a2b75e61aa4933924f4da Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Wed, 1 Jun 2022 16:11:15 +0200 Subject: [PATCH] Enable github to jira bug synchronization Use a default "jira" tag to import bugs to our Jira instance. --- .github/workflows/sync-gh-jira.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/sync-gh-jira.yaml diff --git a/.github/workflows/sync-gh-jira.yaml b/.github/workflows/sync-gh-jira.yaml new file mode 100644 index 00000000..67dbf9ae --- /dev/null +++ b/.github/workflows/sync-gh-jira.yaml @@ -0,0 +1,11 @@ +name: Sync GitHub issues to Jira +on: [issues, issue_comment] +jobs: + sync-issues: + name: Sync issues to Jira + runs-on: ubuntu-latest + steps: + - uses: ubuntu/sync-issues-github-jira@v1 + with: + webhook-url: ${{ secrets.JIRA_WEBHOOK_URL }} + component: 'WSL'