Skip to content

Commit

Permalink
Allowing Deployment Board Disable
Browse files Browse the repository at this point in the history
  • Loading branch information
stevematney authored Feb 9, 2024
1 parent af6d1c5 commit 2b12ea2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/im-reusable-finish-deployment-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ on:
required: false
type: string
default: 'america/denver'
udpate-deployment-board:
description: 'Whether or not to update a deployment board. Defaults to true'
required: false
type: boolean
default: true
deployment-board-number:
description: 'The number of the deployment board that should be updated. Defaults to 1.'
required: false
Expand Down Expand Up @@ -139,7 +144,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Update deployment board
if: always()
if: always() && inputs.update-deployment-board
uses: im-open/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 2b12ea2

Please sign in to comment.