mirror of
https://github.com/garethflowers/docker-mediawiki-ldap.git
synced 2025-04-19 00:45:19 +00:00
27 lines
927 B
YAML
27 lines
927 B
YAML
name: Dependabot PR Approve and Merge
|
|
on: pull_request_target
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
jobs:
|
|
dependabot:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.actor == 'dependabot[bot]' }}
|
|
steps:
|
|
- name: Dependabot Metadata
|
|
id: dependabot-metadata
|
|
uses: dependabot/fetch-metadata@v2.2.0
|
|
with:
|
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
- name: Approve a PR
|
|
run: gh pr review --approve "$PR_URL"
|
|
env:
|
|
PR_URL: ${{ github.event.pull_request.html_url }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Enable auto-merge for Dependabot PRs
|
|
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }}
|
|
run: gh pr merge --auto --squash "$PR_URL"
|
|
env:
|
|
PR_URL: ${{ github.event.pull_request.html_url }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|