Skip to content

Commit 75523ae

Browse files
authored
chore: update ci/cd pipeline
1 parent 1468b15 commit 75523ae

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
83
- package-ecosystem: "npm" # See documentation for possible values
94
directory: "/" # Location of package manifests
105
schedule:
116
interval: "weekly"
7+
open-pull-requests-limit: 5
128
ignore:
139
# For all packages, ignore all patch updates
1410
- dependency-name: "*"

.github/workflows/main.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,16 @@ jobs:
2020
node-version: ${{ matrix.node-version }}
2121
- run: npm install
2222
- run: npm test
23+
24+
automerge:
25+
name: Dependabot Auto-Merge
26+
needs: test
27+
runs-on: ubuntu-latest
28+
permissions:
29+
pull-requests: write
30+
contents: write
31+
steps:
32+
- uses: fastify/github-action-merge-dependabot@v3
33+
with:
34+
github-token: ${{ github.token }}
35+
target: minor

0 commit comments

Comments
 (0)