From 9970186500fd471320e7340b256229209899bde5 Mon Sep 17 00:00:00 2001 From: Anupam <83457710+s-anupam@users.noreply.github.com> Date: Tue, 14 Mar 2023 21:54:19 +0530 Subject: [PATCH] Add repository dispatch event to run integration tests (#98) --- .github/workflows/integration-tests.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/integration-tests.yml diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml new file mode 100644 index 0000000..ad3356f --- /dev/null +++ b/.github/workflows/integration-tests.yml @@ -0,0 +1,16 @@ +name: Repository dispatch event for Integration Tests + +on: + push: + branches: [ "main" ] + +jobs: + repository_dispatch_event: + runs-on: ubuntu-latest + steps: + - name: Repository Dispatch Event + uses: peter-evans/repository-dispatch@26b39ed245ab8f31526069329e112ab2fb224588 + with: + token: ${{ secrets.ITS_PAT }} + repository: ${{ secrets.ITS_REPO }} + event-type: delete-package-versions-its