Merge pull request #4018 from lisajulia/feature/pyAction-add-document… #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: Dispatch to opm-simulators | |
on: | |
push: | |
branches: master | |
paths: | |
- 'python/docstrings_common.json' | |
pull_request: | |
branches: master | |
paths: | |
- 'python/docstrings_common.json' | |
jobs: | |
dispatch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Send dispatch to opm-simulators | |
env: | |
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
run: | | |
curl -X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: token ${{ secrets.PERSONAL_ACCESS_TOKEN }}" \ | |
https://api.github.com/repos/lisajulia/opm-simulators/dispatches \ | |
-d '{"event_type":"docstrings_common_updated"}' |