From ad25ed012104545420de5868d42cdc358c0a6602 Mon Sep 17 00:00:00 2001 From: RomainFloreani Date: Fri, 10 Jul 2026 12:20:01 -0400 Subject: [PATCH] DEVOPS-1033: rename JIRA_USER_EMAIL/JIRA_API_TOKEN secrets to their _WRITE counterparts Authored using a powershell script with the help of Copilot. --- .github/workflows/issue_to_jira.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue_to_jira.yml b/.github/workflows/issue_to_jira.yml index b67cfaa..2b0dd82 100644 --- a/.github/workflows/issue_to_jira.yml +++ b/.github/workflows/issue_to_jira.yml @@ -17,5 +17,5 @@ jobs: components: '[{"name": "OMF"}]' secrets: JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} - JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} - JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} + JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN_WRITE }} + JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL_WRITE }}