Fix sphinx 8 warnings #27
Workflow file for this run
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: Comment with Binder link | |
| on: pull_request_target | |
| jobs: | |
| binder_link_comment: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Comment PR | |
| uses: thollander/actions-comment-pull-request@v1 | |
| with: | |
| message: | | |
| Beep boop! Here is a Binder link where you can try out this change. [](https://mybinder.org/v2/gh/${{ (github.event.pull_request_target || github.event.pull_request).head.repo.full_name }}/${{ (github.event.pull_request_target || github.event.pull_request).head.sha }}) | |
| comment_includes: "Binder link" | |
| GITHUB_TOKEN: ${{ secrets.DASK_BOT_TOKEN }} |