-
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.
Merge pull request #250 from im-practices/restore-update-deployment-b…
…oard Add deployment board update step
- Loading branch information
Showing
1 changed file
with
34 additions
and
11 deletions.
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' | ||
deployment-board-number: | ||
description: 'The number of the deployment board that should be updated. Defaults to 1.' | ||
required: false | ||
type: number | ||
default: 1 | ||
deployable-type: | ||
description: 'Identifier if there are multiple deployables in the repo, like MFE, DB, API. Defaults to an empty string for single deployables.' | ||
required: false | ||
|
@@ -133,19 +138,37 @@ jobs: | |
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Only run this step if Tech Hub metadata.name value is passed in | ||
- name: Create GitHub Deployment | ||
if: ${{ inputs.entity != null }} | ||
uses: im-open/[email protected] | ||
- name: Update deployment board | ||
if: always() | ||
uses: im-open/[email protected] | ||
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 | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
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 }} | ||
board-number: ${{ inputs.deployment-board-number }} | ||
ref: ${{ inputs.release-tag }} | ||
ref-type: 'tag' | ||
deployable-type: ${{ inputs.deployable-type }} | ||
deploy-label: ${{ inputs.deployable-label }} | ||
deploy-status: ${{ steps.conclusion.outputs.workflow_conclusion }} | ||
enable-deployment-slot-tracking: ${{ inputs.enable-deployment-slot-tracking }} | ||
slot-swapped-with-production-slot: ${{ inputs.slot-swapped-with-production-slot }} | ||
target-slot: ${{ inputs.target-slot }} | ||
source-slot: ${{ inputs.source-slot }} | ||
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/[email protected] | ||
# 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() | ||
|