chore: update latestVersion
for package glasskube-autoupdater
#1053
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: Auto-merge package updates | |
on: pull_request | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
automerge: | |
runs-on: ubuntu-latest | |
if: "github.actor == 'glasskube-bot' && startsWith(github.event.pull_request.title, 'chore: update package ')" | |
steps: | |
- name: Enable Pull Request Automerge | |
run: gh pr merge --squash --auto "$PR_URL" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |