Skip to content

Update GitHub runners to Ubuntu 24 #39

Update GitHub runners to Ubuntu 24

Update GitHub runners to Ubuntu 24 #39

Workflow file for this run

---
name: Auto-approve PR
on:
pull_request:
jobs:
approve:
name: Approve
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-24.04
steps:
- name: Wait for status checks
id: waitforstatuschecks
uses: WyriHaximus/[email protected]
with:
ignoreActions: Approve
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Approve Pull Request
uses: hmarr/[email protected]
if: steps.waitforstatuschecks.outputs.status == 'success'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}