updated paper #191
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
| name: Update meta.yaml files | |
| on: | |
| push: | |
| paths: | |
| - '**' | |
| workflow_dispatch: | |
| jobs: | |
| update-meta-yamls: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: pip install pyyaml | |
| - name: Run update_meta_yamls.py | |
| run: python tools/update_meta_yamls.py | |
| - name: Create Pull Request for meta.yaml update | |
| uses: peter-evans/create-pull-request@v6 | |
| with: | |
| commit-message: "Auto-update meta.yaml files" | |
| title: "Auto-update meta.yaml files" | |
| body: "This PR was automatically generated by a GitHub Action to update meta.yaml files." | |
| branch: auto/update-meta-yamls | |
| add-paths: '**/meta.yaml' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |