We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cee3977 commit bd5685eCopy full SHA for bd5685e
.github/workflows/test-pr.yaml
@@ -39,13 +39,14 @@ jobs:
39
40
# This job exists so that PRs from outside the main repo are rejected
41
fail_on_remote:
42
+ needs: [unit_tests, lint]
43
runs-on: ubuntu-latest
44
steps:
45
- name: PR must be from a branch in the azimuth-cloud/cluster-api-janitor-openstack repo
46
run: exit ${{ github.event.pull_request.head.repo.full_name == 'azimuth-cloud/cluster-api-janitor-openstack' && '0' || '1' }}
47
48
publish_artifacts:
- needs: [unit_tests,fail_on_remote]
49
+ needs: [fail_on_remote]
50
uses: ./.github/workflows/build-push-artifacts.yaml
51
with:
52
ref: ${{ github.event.pull_request.head.sha }}
0 commit comments