From 2bc73898b0e3cfbbf3e12b02ec922eb151706517 Mon Sep 17 00:00:00 2001 From: Ambrogio Foletti Date: Tue, 2 Jul 2024 07:00:23 +0200 Subject: [PATCH] Create test JIRA connection This is an action mirroring tickets activity into the BLW-intern JIRA board --- .github/workflows/main.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..acc3fc8 --- /dev/null +++ b/.github/workflows/main.yml @@ -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: canonical/sync-issues-github-jira@v1 + with: + webhook-url: ${{ secrets.JIRA_WEBHOOK_URL }}