Skip to content

feat: make Help tests runnable standalone via build.ps1 #33

feat: make Help tests runnable standalone via build.ps1

feat: make Help tests runnable standalone via build.ps1 #33

Workflow file for this run

name: Auto-merge Bot PRs
on:
pull_request_target:
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: dependabot/fetch-metadata@v3
id: meta
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Auto-merge minor and patch updates
if: steps.meta.outputs.update-type != 'version-update:semver-major'
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pre-commit-ci:
if: github.actor == 'pre-commit-ci[bot]'
runs-on: ubuntu-latest
steps:
- name: Auto-merge pre-commit.ci updates
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}