Skip to content

Commit

Permalink
ci: add dependabot with auto-merge action
Browse files Browse the repository at this point in the history
  • Loading branch information
borisdiakur committed Oct 31, 2023
1 parent 61520e3 commit a7da0c9
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
groups:
update-types:
- 'minor'
- 'patch'
20 changes: 20 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI/CD
on:
push:
branches:
- main
- rc
pull_request:

jobs:
dependabot:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
merge-method: 'rebase'
target: 'minor'
github-token: ${{ github.token }}

0 comments on commit a7da0c9

Please sign in to comment.