Skip to content

Fix prettier issues in linting workflow #38

Fix prettier issues in linting workflow

Fix prettier issues in linting workflow #38

Workflow file for this run

---
name: Auto-approve PR
on:
pull_request:
jobs:
approve:
name: Approve
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-22.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 }}