From a75ab6669fd573dd8cae29867ed299f6251dc4a0 Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Tue, 11 Feb 2025 15:06:38 +0100 Subject: [PATCH] maint: Migrate to org GitHub to Jira application We have a new GitHub to Jira global organization application. The previous gh workflow action is now deprecated. UDENG-5958 --- .github/.jira_sync_config.yaml | 9 +++++++++ .github/workflows/sync-gh-jira.yaml | 12 ------------ 2 files changed, 9 insertions(+), 12 deletions(-) create mode 100644 .github/.jira_sync_config.yaml delete mode 100644 .github/workflows/sync-gh-jira.yaml diff --git a/.github/.jira_sync_config.yaml b/.github/.jira_sync_config.yaml new file mode 100644 index 00000000..ba26941d --- /dev/null +++ b/.github/.jira_sync_config.yaml @@ -0,0 +1,9 @@ +settings: + jira_project_key: UDENG + components: + - Apps + labels: + - jira + status_mapping: + opened: Untriaged + closed: Done diff --git a/.github/workflows/sync-gh-jira.yaml b/.github/workflows/sync-gh-jira.yaml deleted file mode 100644 index 320bd90d..00000000 --- a/.github/workflows/sync-gh-jira.yaml +++ /dev/null @@ -1,12 +0,0 @@ -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 }} - component: 'Apps'