Skip to content

Commit

Permalink
feat: /build command status fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmoysrt committed May 16, 2024
1 parent 28c928e commit 9002a52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/slash-build-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ jobs:
-d '{"ref":"main", "inputs":{"app_name":"${{ env.APP_NAME }}", "version": "${{ env.VERSION }}"}}'
- name: Add reaction +1
id: add-reaction
id: add-reaction-1
if: ${{ steps.trigger-build.outcome }} == 'success'
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ github.event.comment.id }}
reactions: "+1"
- name: Add reaction -1
id: add-reaction
if: ${{ steps.trigger-build.outcome }} == 'failure'
id: add-reaction-2
if: ${{ steps.trigger-build.outcome }} == 'failure' || ${{ steps.check-args.outcome }} == 'failure'
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ github.event.comment.id }}
Expand Down

0 comments on commit 9002a52

Please sign in to comment.