added workflow file #1
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: 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"}' |