From f6aa7e741412370e3d60c059f42f4361e6bb0979 Mon Sep 17 00:00:00 2001 From: Oliver Jones Date: Fri, 25 Mar 2022 17:02:30 +1100 Subject: [PATCH] Add dependabot config - Also remove building the docker image on PR branches. --- .github/dependabot.yml | 7 +++++++ .github/workflows/release.yml | 2 -- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..2c7d170 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2cca3dc..f2f764c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,8 +1,6 @@ name: Create and publish Docker image on: - pull_request: - branches: [main] release: types: [published]