summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-08-16 09:36:06 +0200
committerJacob Walls <jacobtylerwalls@gmail.com>2022-08-16 21:49:32 -0400
commit750e3602d268d18d9938904d8f6dae118ca5e0db (patch)
tree547bf16161d71bb4b5dae35bd66da5dac075a398
parenta9b18c60be110e73c6ec3fdcf296aa8552fce77e (diff)
downloadpylint-git-750e3602d268d18d9938904d8f6dae118ca5e0db.tar.gz
Skip the primer comment job if the PR primer job failed
-rw-r--r--.github/workflows/primer_comment.yaml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/primer_comment.yaml b/.github/workflows/primer_comment.yaml
index 5d1ed094d..ff596a6dc 100644
--- a/.github/workflows/primer_comment.yaml
+++ b/.github/workflows/primer_comment.yaml
@@ -21,6 +21,8 @@ permissions:
jobs:
primer-comment:
+ # Skip job if the workflow failed
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
name: Run
runs-on: ubuntu-latest
steps: