Merge pull request #2894 from informalsystems/gabriela/remove-cronjob #670
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
# Help automate PR updates | |
# See https://github.com/tibdex/auto-update/blob/main/.github/workflows/auto-update.yml | |
name: Auto-update | |
# Auto-update only listens to `push` events. | |
# If a pull request is already outdated when enabling auto-merge, manually click on the "Update branch" button a first time to avoid having to wait for another commit to land on the base branch for the pull request to be updated. | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
Auto: | |
name: Auto-update | |
runs-on: ubuntu-latest | |
steps: | |
- uses: tibdex/auto-update@v2 | |
with: | |
github_token: ${{ secrets.APALACHE_BOT_TOKEN }} |