From 61473138051a6ee81d679ff57313bc343993a63a Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Tue, 22 Nov 2022 12:38:13 -0500 Subject: [PATCH] chore: add Dependabot for GitHub Actions --- .github/dependabot.yml | 7 +++++++ .github/workflows/push.yml | 6 +++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..81bae9acd --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 + +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index fa116a4e0..a55c35f59 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -1,5 +1,9 @@ name: Lint -on: [push, pull_request] +on: + push: + branches-ignore: + - "dependabot/*" + pull_request: jobs: Python: runs-on: ubuntu-20.04