-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af6d1c5
commit 2b12ea2
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 }} | ||
|