diff --git a/.github/workflows/finishReleaseCycle.yml b/.github/workflows/finishReleaseCycle.yml index 6b6044e8cfe6..c7bb77d23e8a 100644 --- a/.github/workflows/finishReleaseCycle.yml +++ b/.github/workflows/finishReleaseCycle.yml @@ -110,8 +110,8 @@ jobs: # Create a local git tag so that GitUtils.getPullRequestsMergedBetween can use `git log` to generate a # list of pull requests that were merged between this version tag and another. - # NOTE: It's important to not push this tag now, because that would cause a staging deploy, - # which is handled separately in the deploy.yml workflow. + # NOTE: This tag is only used locally and shouldn't be pushed to the remote. + # If it was pushed, that would trigger the staging deploy which is handled in a separate workflow (deploy.yml) - name: Tag version run: git tag ${{ env.NEW_VERSION }} diff --git a/.github/workflows/lockDeploys.yml b/.github/workflows/lockDeploys.yml index 8bd5775a23b0..cc179300121e 100644 --- a/.github/workflows/lockDeploys.yml +++ b/.github/workflows/lockDeploys.yml @@ -45,8 +45,8 @@ jobs: # Create a local git tag on staging so that GitUtils.getPullRequestsMergedBetween can use `git log` to generate a # list of pull requests that were merged between this version tag and another. - # NOTE: It's important to not push this tag now, because that would cause a staging deploy, - # which is handled separately in the deploy.yml workflow. + # NOTE: This tag is only used locally and shouldn't be pushed to the remote. + # If it was pushed, that would trigger the staging deploy which is handled in a separate workflow (deploy.yml) - name: Tag version run: git tag ${{ env.NEW_VERSION }} diff --git a/.github/workflows/preDeploy.yml b/.github/workflows/preDeploy.yml index 7eae6acf51a0..75f89842cf9b 100644 --- a/.github/workflows/preDeploy.yml +++ b/.github/workflows/preDeploy.yml @@ -103,8 +103,8 @@ jobs: # Create a local git tag on staging so that GitUtils.getPullRequestsMergedBetween can use `git log` to generate a # list of pull requests that were merged between this version tag and another. - # NOTE: It's important to not push this tag now, because that would cause a staging deploy, - # which is handled separately in the deploy.yml workflow. + # NOTE: This tag is only used locally and shouldn't be pushed to the remote. + # If it was pushed, that would trigger the staging deploy which is handled in a separate workflow (deploy.yml) - name: Tag staging run: | git checkout staging