blob: 41039d615d01d3cf03b981998060a9d0f2038eab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Set update schedule for GitHub Actions
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
# Prefix all commit messages with "CI" plus its scope, that is, a
# list of updated dependencies
commit-message:
prefix: "CI"
include: "scope"
|