diff options
author | John Losito <lositojohnj@gmail.com> | 2020-10-23 21:06:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 21:06:13 (GMT) |
commit | 697109bbf3929402b415304dddc386edc54b1b69 (patch) | |
tree | 404d4ecb17365848303ca0c3d5fdb8236710dd45 /.github/dependabot.yml | |
parent | 8d3d7314d44d762a6fb42d079f57b6b5273473d6 (diff) | |
download | cpython-697109bbf3929402b415304dddc386edc54b1b69.zip cpython-697109bbf3929402b415304dddc386edc54b1b69.tar.gz cpython-697109bbf3929402b415304dddc386edc54b1b69.tar.bz2 |
Allow dependabot to check GitHub actions monthly (GH-22787)
Let Dependabot update GitHub Actions dependency once a month.
Here's reference to the dependabot configs.
https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot
Diffstat (limited to '.github/dependabot.yml')
-rw-r--r-- | .github/dependabot.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..8ac6b8c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" |