-
Notifications
You must be signed in to change notification settings - Fork 146
27 lines (27 loc) · 1.01 KB
/
auto-merge-dependabot.yml
File metadata and controls
27 lines (27 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright (c) Microsoft Corporation. Licensed under the MIT License.
name: Auto-merge Dependabot PRs
on: pull_request
permissions:
contents: read
jobs:
auto-merge:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
if: github.actor == 'dependabot[bot]'
steps:
- uses: dependabot/fetch-metadata@21025c705c08248db411dc16f3619e6b5f9ea21a # v2.5.0
id: metadata
- name: Auto-approve patch and minor updates
if: steps.metadata.outputs.update-type != 'version-update:semver-major'
run: gh pr review --approve "$PR_URL"
env:
PR_URL: "${{ github.event.pull_request.html_url }}"
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for patch and minor
if: steps.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 }}"
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"