Skip to content

Commit

Permalink
pr number was not injected (bcgov#1287)
Browse files Browse the repository at this point in the history
pr number was not injected because the syntax was not correct
  • Loading branch information
jasonchung1871 authored Feb 14, 2024
1 parent f6fe959 commit 8fa2028
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/.deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ jobs:
ref: ${{ needs.set-vars.outputs.ref }}
- name: Release Comment on PR
uses: marocchino/sticky-pull-request-comment@v2
if: github.event.inputs.pr-number != '' && success()
if: ${{ github.event.inputs.pr-number }} != '' && success()
with:
header: release
message: |
Release ${{ github.sha }} deployed at <https://${{ env.ACRONYM }}-dev.apps.silver.devops.gov.bc.ca/pr-${{ github.event.inputs.pr-number }}>
number: github.event.inputs.pr-number
number: ${{ github.event.inputs.pr-number }}

0 comments on commit 8fa2028

Please sign in to comment.