Daily check for new Sphinx dockers to build against. #39
This file contains 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: Daily check for new Sphinx dockers to build against. | |
on: | |
schedule: | |
# Runs at midnight UTC every day. | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
run-shell-script: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run a shell script | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
./bin/tryrelease | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |