Skip to content

Commit 00fdbdd

Browse files
authored
Merge pull request #31 from palashmon/feat/update-ci
chore: update ci/cd pipeline
2 parents e2503aa + 65c9f31 commit 00fdbdd

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

.github/dependabot.yml

+1-5
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

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

0 commit comments

Comments
 (0)