From 62d15eb64472aa7635e12c95398bf49e23e6a9e1 Mon Sep 17 00:00:00 2001 From: Sivamuthu Kumar <60989380+ksivamuthu-cei@users.noreply.github.com> Date: Wed, 10 Aug 2022 18:38:36 -0400 Subject: [PATCH] Update the default values and get from secrets --- .github/workflows/issue_ops.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue_ops.yml b/.github/workflows/issue_ops.yml index 359a664..9861c5a 100644 --- a/.github/workflows/issue_ops.yml +++ b/.github/workflows/issue_ops.yml @@ -9,9 +9,9 @@ permissions: issues: write env: - GITHUB_INSTANCE_URL: https://github.com + GITHUB_INSTANCE_URL: ${{ secrets.GITHUB_INSTANCE_URL || 'https://github.com' }} GITHUB_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} - JENKINS_INSTANCE_URL: https://jenkout.westus2.cloudapp.azure.com + JENKINS_INSTANCE_URL: ${{ secrets.JENKINS_INSTANCE_URL }} JENKINS_USERNAME: ${{ secrets.jenkins_username }} JENKINS_ACCESS_TOKEN: ${{ secrets.jenkins_access_token }} JENKINSFILE_ACCESS_TOKEN: ${{ secrets.jenkinsfile_access_token }}