Skip to content

Commit

Permalink
ci: fixed if-statement always evaluating to true in comment.yml (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
JarLob authored Oct 12, 2022
1 parent b6bd53f commit a00934f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
comment:
runs-on: ubuntu-latest
if: >
${{ github.event.workflow_run.conclusion == 'success' }} # && github.event.workflow_run.event == 'pull_request'
github.event.workflow_run.conclusion == 'success' # && github.event.workflow_run.event == 'pull_request'
steps:
- uses: iterative/setup-cml@v1
Expand Down

0 comments on commit a00934f

Please sign in to comment.