Skip to content

Commit

Permalink
added workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
deepaktiwari committed Dec 20, 2024
1 parent db6f6d2 commit 666ff85
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/sampleworkflow.yml
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"}'

0 comments on commit 666ff85

Please sign in to comment.