Skip to content

Commit

Permalink
hehee
Browse files Browse the repository at this point in the history
  • Loading branch information
Junjiequan committed Apr 10, 2024
1 parent 321e9b7 commit 78d903f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 20 deletions.
24 changes: 12 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,28 @@ updates:
groups:
angular:
patterns:
- "@angular*"
- "@angular*"
update-types:
- "minor"
- "patch"
- "minor"
- "patch"
eslint:
patterns:
- "*eslint*"
- "*eslint*"
update-types:
- "minor"
- "patch"
- "minor"
- "patch"
ngrx:
patterns:
- "@ngrx/*"
- "@ngrx/*"
update-types:
- "minor"
- "patch"
- "minor"
- "patch"
types:
patterns:
- "types/*"
- "types/*"
update-types:
- "minor"
- "patch"
- "minor"
- "patch"
ignore:
- dependency-name: "@angular*"
update-types: ["version-update:semver-major"]
Expand Down
30 changes: 22 additions & 8 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,33 @@
name: Dependabot auto-merge
name: Dependabot approve and merge

on: pull_request_target
permissions:
pull-requests: write
contents: write

jobs:
dependabot:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
## Extract information about the dependencies being updated by a Dependabot-generated PR
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v1
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

- name: Checkout repository
uses: actions/checkout@v4

## NOTE: This step is only required if the repository has been configured to Require approval
## Checks if update-type is patch or minor, then approve if the PR status is not approved yet.
- name: Auto approve patch and minor updates
uses: hmarr/auto-approve-action@v4
if: ${{steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch' || steps.dependabot-metadata.outputs.update-type == 'version-update:semver-minor'}}

## NOTE: Requirements for merge has to be configured in the Branch protection rule page.
## To do so, go to repository > Settings > Branches > Edit.
- name: Enable auto-merge for Dependabot PRs
if: steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch'
if: ${{ contains(github.event.pull_request.title, 'bump')}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 78d903f

Please sign in to comment.