Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/auto-approve-and-merge-keyman-server-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#
# Automatically approves and queues for merge any pull requests with a branch
# name starting with auto/, that are opened by keyman-server.
#
name: Auto Approve and Merge PRs from keyman-server

on: pull_request_target

jobs:
auto-approve:
if: github.actor == 'keyman-server' && startsWith(github.head_ref, 'auto/')
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.AUTO_PR_APPROVAL_BY_KEYMAN_STATUS }}
permissions: write-all
steps:
- name: Checkout
uses: actions/checkout@v4.1.5
with:
sparse-checkout: |
README.md
sparse-checkout-cone-mode: false
- name: Approve pull request
run: |
gh pr review --approve ${{github.head_ref}}
- name: Enable auto-merge
run: |
gh pr merge --merge --auto ${{github.head_ref}}