CLOUDP-178750: Add deletion protection to deployments #713
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Forked | |
on: | |
pull_request_target: | |
types: [labeled] | |
paths-ignore: | |
- 'docs/**' | |
concurrency: | |
group: test-forked-${{ github.head_ref || github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
allowed-forked: | |
name: Allowed action | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} || contains(github.event.pull_request.labels.*.name, 'safe-to-test') | |
steps: | |
- name: allowed message | |
run: echo "Allowed to run" | |
unit-tests-forked: | |
needs: allowed-forked | |
uses: ./.github/workflows/test-unit.yml | |
secrets: inherit | |
with: | |
forked: true | |
e2e-tests-forked: | |
needs: allowed-forked | |
uses: ./.github/workflows/test-e2e.yml | |
secrets: inherit | |
with: | |
forked: true | |
openshift-upgrade-test: | |
needs: allowed-forked | |
uses: ./.github/workflows/openshift-upgrade-test.yaml | |
secrets: inherit | |
with: | |
forked: true |