From 06530bf7109f26b4f7635dd550ee49a9751ab182 Mon Sep 17 00:00:00 2001 From: RomainFloreani Date: Fri, 10 Jul 2026 12:19:55 -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 444e20d937..ae3a4247dd 100644 --- a/.github/workflows/issue_to_jira.yml +++ b/.github/workflows/issue_to_jira.yml @@ -18,5 +18,5 @@ jobs: components: '[{"name": "simpeg"}]' 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 }}