Check M_intrinsics for updates #177
This file contains hidden or 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
| on: | |
| # fire at 00:00 every 7th day of the month | |
| schedule: | |
| - cron: "0 0 */7 * *" | |
| workflow_dispatch: | |
| name: Check M_intrinsics for updates | |
| jobs: | |
| update-intrinsics: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip install .[dev] | |
| - name: Download M_intrinsics | |
| run: | | |
| git clone https://github.com/urbanjost/M_intrinsics | |
| - name: Update Markdown intrinsics | |
| run: | | |
| python3 scripts/update_m_intrinsics.py | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| commit-message: "docs: update M_intrinsics" | |
| title: Update M_intrinsics | |
| body: | | |
| Auto-generated Pull Request to update M_intrinsics JSON definitions. | |
| branch: docs/update-intrinsics | |
| delete-branch: true | |
| reviewers: gnikit |