diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml new file mode 100644 index 00000000..e702d71f --- /dev/null +++ b/.github/workflows/auto-update.yml @@ -0,0 +1,19 @@ +# Help automate PR updates +# See https://github.com/tibdex/auto-update/blob/main/.github/workflows/auto-update.yml +# The same workflow as in apalache-mc/apalache +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.SOLAKRAFT_BOT_TOKEN }} \ No newline at end of file