-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from mikeheyns/hacktoberfest/infrastructure
Add auto-merge workflow for dependabot
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Dependabot and Pre-commit auto-merge | ||
|
||
# This workflow is triggered when a PR is opened or synchronized | ||
# by dependabot or pre-commit-ci. It will approve and merge the PR | ||
# automatically. | ||
|
||
# Source: auto-merge.yml from dalonsoa and alexdewar | ||
|
||
on: | ||
pull_request: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write # Needed if in a private repository | ||
|
||
jobs: | ||
auto-merge: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'pre-commit-ci[bot]' }} | ||
steps: | ||
- name: Enable auto-merge for dependabot and pre-commit-ci PRs | ||
run: | | ||
gh pr review --approve "$PR_URL" | ||
gh pr merge --auto --merge "$PR_URL" | ||
env: | ||
PR_URL: ${{ github.event.pull_request.html_url }} | ||
# GitHub provides this variable in the CI env. You don't | ||
# need to add anything to the secrets vault. | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |