Skip to content

Commit

Permalink
ci: configure dependabot to monitor update for GitHub Actions
Browse files Browse the repository at this point in the history
Part of #38

[skip ci]
  • Loading branch information
php-coder committed Mar 19, 2024
1 parent 7532ffb commit d20dd42
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# See for details:
# - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates
# - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#allow
allow:
- dependency-name: "actions/checkout"
- dependency-name: "actions/setup-node"
- dependency-name: "actions/upload-artifact"
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#scheduleinterval
schedule:
interval: "daily"
time: "06:00"
timezone: "Asia/Novosibirsk"
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#commit-message
commit-message:
prefix: "ci"
assignees: [ "php-coder" ]
reviewers: [ "php-coder" ]
labels: [ "kind/dependency-update", "area/ci" ]
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#open-pull-requests-limit
open-pull-requests-limit: 1

0 comments on commit d20dd42

Please sign in to comment.