From d9b0fdcb8eec4d28947261a3a049442a3347d27a Mon Sep 17 00:00:00 2001 From: Matt McQuillan Date: Wed, 23 Apr 2025 15:39:58 -0400 Subject: [PATCH 1/3] Testing Revised Jira Fields --- .github/workflows/jira-sync.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/jira-sync.yml b/.github/workflows/jira-sync.yml index 98641c920..d63afded9 100644 --- a/.github/workflows/jira-sync.yml +++ b/.github/workflows/jira-sync.yml @@ -37,9 +37,8 @@ jobs: description: "${{ github.event.issue.body || github.event.pull_request.body }}\n\n_Created in GitHub by ${{ github.actor }}._" # customfield_10089 is "Issue Link", customfield_10371 is "Source" (use JIRA API to retrieve), customerfield_10091 is "Team (R&D) extraFields: '{ "customfield_10089": "${{ github.event.issue.html_url || github.event.pull_request.html_url }}", - "customfield_10371": { "value": "GitHub" }, - "customfield_10091": ["NomadMinor"], - "labels": ["community"] }' + "labels": ["community", "GitHub"] }' + "Team[Team]": "72e166fb-d26c-4a61-b0de-7a290d91708f", env: JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} From 1754fb1ed86d27fec8ca6e3653676adbcb9f12cd Mon Sep 17 00:00:00 2001 From: Matt McQuillan Date: Wed, 23 Apr 2025 15:53:35 -0400 Subject: [PATCH 2/3] Update .github/workflows/jira-sync.yml Co-authored-by: Tim Gross --- .github/workflows/jira-sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jira-sync.yml b/.github/workflows/jira-sync.yml index d63afded9..afd171056 100644 --- a/.github/workflows/jira-sync.yml +++ b/.github/workflows/jira-sync.yml @@ -37,7 +37,7 @@ jobs: description: "${{ github.event.issue.body || github.event.pull_request.body }}\n\n_Created in GitHub by ${{ github.actor }}._" # customfield_10089 is "Issue Link", customfield_10371 is "Source" (use JIRA API to retrieve), customerfield_10091 is "Team (R&D) extraFields: '{ "customfield_10089": "${{ github.event.issue.html_url || github.event.pull_request.html_url }}", - "labels": ["community", "GitHub"] }' + "labels": ["community", "GitHub"] }', "Team[Team]": "72e166fb-d26c-4a61-b0de-7a290d91708f", env: JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} From 2b437fd7330dff5147c6cbd0c5b7bc09317b8a6c Mon Sep 17 00:00:00 2001 From: Matt McQuillan Date: Wed, 23 Apr 2025 15:59:27 -0400 Subject: [PATCH 3/3] Fixing ordering and ending bracket of extraFields --- .github/workflows/jira-sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jira-sync.yml b/.github/workflows/jira-sync.yml index afd171056..b214ecf86 100644 --- a/.github/workflows/jira-sync.yml +++ b/.github/workflows/jira-sync.yml @@ -37,8 +37,8 @@ jobs: description: "${{ github.event.issue.body || github.event.pull_request.body }}\n\n_Created in GitHub by ${{ github.actor }}._" # customfield_10089 is "Issue Link", customfield_10371 is "Source" (use JIRA API to retrieve), customerfield_10091 is "Team (R&D) extraFields: '{ "customfield_10089": "${{ github.event.issue.html_url || github.event.pull_request.html_url }}", - "labels": ["community", "GitHub"] }', "Team[Team]": "72e166fb-d26c-4a61-b0de-7a290d91708f", + "labels": ["community", "GitHub"] }' env: JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}