Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
erikhide authored Sep 23, 2024
2 parents ab5a6c6 + 5137f51 commit 74cccad
Show file tree
Hide file tree
Showing 833 changed files with 157,480 additions and 10,741 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/dispatch_opm_simulators.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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"}'
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,11 @@ build/
*.dSYM

# emacs directory setting:
.dir-locals.el
.dir-locals.el

# Python sphinx build
python/sphinx_docs/docs/_build/

# Python cache directories
**/__pycache__/

Loading

0 comments on commit 74cccad

Please sign in to comment.