From 261e4ce71de05cb09303c0db6f00204c34ca60e8 Mon Sep 17 00:00:00 2001 From: sukumarp2022 <121007359+sukumarp2022@users.noreply.github.com> Date: Fri, 7 Apr 2023 11:31:03 +0530 Subject: [PATCH] Update issue_ops.yml Unable to access `JENKINS_INSTANCE_URL` using `secrets.`. Instead, we should be using `vars.` as it was suggested to add the variable as variable, not as secret. --- .github/workflows/issue_ops.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue_ops.yml b/.github/workflows/issue_ops.yml index 4dcbce7..1778580 100644 --- a/.github/workflows/issue_ops.yml +++ b/.github/workflows/issue_ops.yml @@ -11,7 +11,7 @@ permissions: env: GITHUB_INSTANCE_URL: ${{ secrets.GITHUB_INSTANCE_URL || 'https://github.com' }} GITHUB_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} - JENKINS_INSTANCE_URL: ${{ secrets.JENKINS_INSTANCE_URL }} + JENKINS_INSTANCE_URL: ${{ vars.JENKINS_INSTANCE_URL }} JENKINS_USERNAME: ${{ secrets.jenkins_username }} JENKINS_ACCESS_TOKEN: ${{ secrets.jenkins_access_token }} JENKINSFILE_ACCESS_TOKEN: ${{ secrets.jenkinsfile_access_token }}