Skip to content

Commit

Permalink
Add dependabot config and mergeabot workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joris974 committed Jul 5, 2024
1 parent 57d0f24 commit 3aede5e
Show file tree
Hide file tree
Showing 2 changed files with 29 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: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
19 changes: 19 additions & 0 deletions .github/workflows/mergeabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Mergeabot

on:
schedule:
- cron: "0 0 * * *"

pull_request:

permissions:
contents: write
pull-requests: write

jobs:
mergeabot:
runs-on: ubuntu-latest
steps:
- uses: freckle/mergeabot-action@v1
with:
quarantine-days: -1

0 comments on commit 3aede5e

Please sign in to comment.