Skip to content

docs: put all badges on a single line #6

docs: put all badges on a single line

docs: put all badges on a single line #6

Workflow file for this run

name: Auto-approve
on:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: auto-approve-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs:
auto-approve:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: write
pull-requests: write
if: >
github.event.pull_request.user.login == 'SebTardif' ||
github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Harden runner
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
with:
egress-policy: audit
- uses: hmarr/auto-approve-action@f0939ea97e9205ef24d872e76833fa908a770363 # v4.0.0
- name: Enable auto-merge
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh pr merge --auto --squash "${{ github.event.pull_request.number }}" --repo "${{ github.repository }}"