Skip to content

Commit

Permalink
Merge pull request #151 from freespek/igor/auto-update
Browse files Browse the repository at this point in the history
add a workflow to auto-update PRs
  • Loading branch information
konnov authored Dec 5, 2024
2 parents 6d2ea45 + e5c5f7c commit 0aac717
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/auto-update.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 0aac717

Please sign in to comment.