From 6ad3e7339176914ab85d7a83fb759b6c2411d5b7 Mon Sep 17 00:00:00 2001 From: Roy Wong Date: Tue, 6 Feb 2024 14:43:24 -0700 Subject: [PATCH] Need to hold of on deploying the create deployment action because of a context commit status error --- ...im-reusable-finish-deployment-workflow.yml | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/im-reusable-finish-deployment-workflow.yml b/.github/workflows/im-reusable-finish-deployment-workflow.yml index c8bc5840..a6d614ef 100644 --- a/.github/workflows/im-reusable-finish-deployment-workflow.yml +++ b/.github/workflows/im-reusable-finish-deployment-workflow.yml @@ -157,18 +157,18 @@ jobs: timezone: ${{ inputs.timezone }} # Only run this step if Tech Hub metadata.name value is passed in - - name: Create GitHub Deployment - if: ${{ inputs.entity != null }} - uses: im-open/create-github-deployment@v1.0 - with: - workflow-actor: ${{ github.actor }} # This will add the user who kicked off the workflow to the deployment payload - token: ${{ secrets.GITHUB_TOKEN }} # Special per-job token generated by GH for interacting with the repo - environment: ${{ inputs.deployment-environment }} - release-ref: ${{ inputs.release-tag }} - deployment-status: ${{ steps.conclusion.outputs.workflow_conclusion }} - deployment-description: 'Deployment to the ${{ inputs.deployment-environment }} environment of ${{ inputs.release-tag }}' - entity: ${{ inputs.entity }} - instance: ${{ inputs.instance || inputs.target-slot }} + # - name: Create GitHub Deployment + # if: ${{ inputs.entity != null }} + # uses: im-open/create-github-deployment@v1.0 + # with: + # workflow-actor: ${{ github.actor }} # This will add the user who kicked off the workflow to the deployment payload + # token: ${{ secrets.GITHUB_TOKEN }} # Special per-job token generated by GH for interacting with the repo + # environment: ${{ inputs.deployment-environment }} + # release-ref: ${{ inputs.release-tag }} + # deployment-status: ${{ steps.conclusion.outputs.workflow_conclusion }} + # deployment-description: 'Deployment to the ${{ inputs.deployment-environment }} environment of ${{ inputs.release-tag }}' + # entity: ${{ inputs.entity }} + # instance: ${{ inputs.instance || inputs.target-slot }} - name: Configure facts for team's notification channel if: always()