diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7c0da71a6b..d0e22184b7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,9 @@ concurrency: jobs: run-workflow: name: PR Workflow - if: github.repository_owner == 'aws' + # If any dependent jobs fails, this WF skips which won't block merging PRs + # calling always() is required for this WF to run all the time + if: github.repository_owner == 'aws' && always() runs-on: ubuntu-latest needs: - make-pr