Skip to content

Commit 08c799f

Browse files
authored
Create dependabot.yml to automatically update github actions (#251)
* Create dependabot.yml * Configure CI for merge groups
1 parent d62211b commit 08c799f

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"

.github/workflows/python-app.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ on:
88
branches: [ master ]
99
pull_request:
1010
branches: [ master ]
11-
11+
merge_group:
12+
branches: [ master ]
1213
jobs:
1314
linting:
1415
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)