Bump jupyter-book from 2.0.0b3 to 2.1.0 #3
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
| # Respond to dependabot Pull Request updating environment.yml with /condalock command! | |
| name: Pull Request comment | |
| on: | |
| pull_request: | |
| types: [opened, reopened] | |
| paths: ["environment.yml"] | |
| permissions: {} | |
| jobs: | |
| CallCondaLock: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == github.event.pull_request.head.repo.full_name | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Add Condalock Comment | |
| uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0 | |
| with: | |
| issue-number: ${{github.event.number}} | |
| body: | | |
| /condalock | |
| Automatically locking new conda environment, building, and testing images... |