From f6bf54f60a9f31a633080ee71d9e3659b5fc0447 Mon Sep 17 00:00:00 2001 From: Kim Christensen Date: Sat, 28 Dec 2024 12:26:42 +0100 Subject: [PATCH 1/3] chore: Add Dependabot configuration Signed-off-by: Kim Christensen --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..251b5a1 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: +- package-ecosystem: gomod + directory: / + schedule: + interval: weekly + day: sunday + labels: + - "dependabot 🤖" From 3cd18cf99388b0eb25d839a73ed0b4b7b5a86792 Mon Sep 17 00:00:00 2001 From: Kim Christensen Date: Sat, 28 Dec 2024 12:26:44 +0100 Subject: [PATCH 2/3] chore: Add CODEOWNERS Signed-off-by: Kim Christensen --- .github/CODEOWNERS | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..e7acaf1 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,5 @@ +# https://help.github.com/en/articles/about-code-owners#codeowners-syntax +# Add your name to this file if you want to be automatically assign to pull requests +# See OWNERS.md for a list of all maintainers + +* @getporter/maintainers \ No newline at end of file From 3e4f8cb7f8f012f989a249d15939765910198273 Mon Sep 17 00:00:00 2001 From: Kim Christensen Date: Sat, 28 Dec 2024 12:27:07 +0100 Subject: [PATCH 3/3] ci: Run workflow on tag creation Signed-off-by: Kim Christensen --- .github/workflows/docker-mixin.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-mixin.yml b/.github/workflows/docker-mixin.yml index 91c4f46..b1f08e7 100644 --- a/.github/workflows/docker-mixin.yml +++ b/.github/workflows/docker-mixin.yml @@ -4,6 +4,10 @@ on: branches: - main - v* + tags: + - v* + - "!canary*" + - "!latest*" pull_request: branches: - main @@ -29,4 +33,4 @@ jobs: if: success() && github.event_name != 'PullRequest' env: GITHUB_TOKEN: "${{ secrets.PUBLISH_TOKEN }}" - run: mage Publish \ No newline at end of file + run: mage Publish