mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-20 11:48:25 -06:00
26 lines
712 B
YAML
26 lines
712 B
YAML
|
name: Dispatch to opm-python-documentation
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: master
|
||
|
paths:
|
||
|
- 'python/docstrings_simulators.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/${{ github.repository_owner }}/opm-python-documentation/dispatches \
|
||
|
-d '{"event_type":"docstrings_simulators_updated"}'
|