From c6ebb51cc0bc6e09eecf9be83ad02e5a5fe47c83 Mon Sep 17 00:00:00 2001 From: Sagar Paul Date: Mon, 15 May 2023 21:32:07 +0530 Subject: [PATCH] remove safe to test (#267) --- .github/workflows/safe_to_test.yml | 40 ------------------------------ 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/safe_to_test.yml diff --git a/.github/workflows/safe_to_test.yml b/.github/workflows/safe_to_test.yml deleted file mode 100644 index ded86c4..0000000 --- a/.github/workflows/safe_to_test.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: test - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -on: - pull_request_target: - branches: [main] - types: - - labeled - - opened - - reopened - - synchronize - workflow_dispatch: - -jobs: - safe-to-test: - if: >- - github.event.label.name == 'safe to test' || - github.event.action != 'labeled' - uses: ansible-network/github_actions/.github/workflows/safe-to-test.yml@main - secrets: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - tox-ansible: - uses: tox-dev/tox-ansible/.github/workflows/run.yml@main - needs: - - safe-to-test - - tox-ansible-passed: - if: ${{ always() }} - needs: - - tox-ansible - runs-on: ubuntu-latest - steps: - - run: >- - python -c "assert set([ - '${{ needs.tox-ansible.result }}', - ]) == {'success'}"