Merge pull request #74 from gotreasa/02-24-chore_remove_unused_packag… #11
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 update to docs | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.md' | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger partners.pactflow.io update workflow | |
run: | | |
curl -X POST https://api.github.com/repos/pactflow/partners.pactflow.io/dispatches \ | |
-H 'Accept: application/vnd.github.everest-preview+json' \ | |
-H "Authorization: Bearer $GITHUB_TOKEN" \ | |
-d '{"event_type": "pactflow-example-bi-directional-consumer-cypress-updated"}' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GHTOKENFORTRIGGERINGPACTDOCSUPDATE }} | |
- name: Trigger docs.pactflow.io update workflow | |
run: | | |
curl -X POST https://api.github.com/repos/pactflow/docs.pactflow.io/dispatches \ | |
-H 'Accept: application/vnd.github.everest-preview+json' \ | |
-H "Authorization: Bearer $GITHUB_TOKEN" \ | |
-d '{"event_type": "pactflow-example-bi-directional-consumer-cypress-updated"}' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GHTOKENFORTRIGGERINGPACTDOCSUPDATE }} |