-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
deepaktiwari
committed
Dec 20, 2024
1 parent
db6f6d2
commit 666ff85
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Trigger playwright automation Workflow | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main # Replace with the branch name to monitor | ||
|
||
jobs: | ||
trigger: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Trigger Repository A Workflow | ||
run: | | ||
curl -X POST \ | ||
-H "Accept: application/vnd.github.everest-preview+json" \ | ||
-H "Authorization: Bearer ${{ secrets.AUTOMATION_REPO_TOKEN }}" \ | ||
https://api.github.com/repos/codeandtheory/playwright-automation-framework/dispatches \ | ||
-d '{"event_type": "trigger-workflow"}' |