We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fef63b1 commit 20f83e1Copy full SHA for 20f83e1
.github/workflows/trigger_partner_docs_update.yml
@@ -8,14 +8,12 @@ on:
8
- '**.md'
9
10
jobs:
11
- run:
+ build:
12
runs-on: ubuntu-latest
13
steps:
14
- name: Trigger docs.pact.io update workflow
15
- run: |
16
- curl -X POST https://api.github.com/repos/pactflow/partners.pactflow.io/dispatches \
17
- -H 'Accept: application/vnd.github.everest-preview+json' \
18
- -H "Authorization: Bearer $GITHUB_TOKEN" \
19
- -d '{"event_type": "pactflow-example-consumer-python-updated"}'
20
- env:
21
- GITHUB_TOKEN: ${{ secrets.GHTOKENFORTRIGGERINGPACTDOCSUPDATE }}
+ uses: peter-evans/repository-dispatch@v1
+ with:
+ token: ${{ secrets.GHTOKENFORTRIGGERINGPACTDOCSUPDATE }}
+ repository: pactflow/partners.pactflow.io
+ event-type: pactflow-example-consumer-js-updated
0 commit comments