Skip to content

Commit

Permalink
Add repository dispatch event to run integration tests (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
s-anupam authored Mar 14, 2023
1 parent 0d39a63 commit 9970186
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9970186

Please sign in to comment.