ci: add github action that approves pull requests from renovate automatically (#566)

This commit is contained in:
Meier Lukas
2024-05-28 21:39:15 +02:00
committed by GitHub
parent c20f7a64a0
commit bcbc2d1c56

View File

@@ -0,0 +1,23 @@
name: Approve Renovate PRs
on:
pull_request:
types: [opened, synchronize]
jobs:
approve-renovate-prs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install GitHub CLI
run: sudo apt-get install -y gh
- name: Approve Renovate PRs
env:
GITHUB_TOKEN: ${{ secrets.RENOVATE_APPROVE_TOKEN }}
run: |
for pr in $(gh pr list --author homarr-renovate[bot] --json number --jq .[].number); do
gh pr review $pr --approve --body "Automatically approved by GitHub Action"
done