We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64e14d8 commit 03f15f2Copy full SHA for 03f15f2
.github/workflows/trigger_internal_tests.yml
@@ -11,11 +11,17 @@ jobs:
11
name: "trigger"
12
runs-on: ubuntu-24.04
13
steps:
14
+ - uses: actions/create-github-app-token@v1
15
+ id: app-token
16
+ with:
17
+ app-id: ${{ vars.PLAYWRIGHT_APP_ID }}
18
+ private-key: ${{ secrets.PLAYWRIGHT_PRIVATE_KEY }}
19
+ repositories: playwright-browsers
20
- run: |
- curl -X POST \
21
+ curl -X POST --fail \
22
-H "Accept: application/vnd.github.v3+json" \
23
-H "Authorization: token ${GH_TOKEN}" \
24
--data "{\"event_type\": \"playwright_tests_dotnet\", \"client_payload\": {\"ref\": \"${GITHUB_SHA}\"}}" \
25
https://api.github.com/repos/microsoft/playwright-browsers/dispatches
26
env:
- GH_TOKEN: ${{ secrets.REPOSITORY_DISPATCH_PERSONAL_ACCESS_TOKEN }}
27
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
0 commit comments