Skip to content

Commit

Permalink
Merge pull request #67 from kichristensen/cleanup
Browse files Browse the repository at this point in the history
Add CODEOWNERS, run workflow on tag creation and enable Dependabot
  • Loading branch information
kichristensen authored Feb 3, 2025
2 parents d45384d + 42f30b6 commit f533b9e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +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

* @MChorfa @carolynvs @sgettys @bdegeeter
* @getporter/maintainers @MChorfa
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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 🤖"
6 changes: 5 additions & 1 deletion .github/workflows/kubernetes-mixin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
branches:
- main
- v*
tags:
- v*
- "!canary*"
- "!latest*"
pull_request:
branches:
- main
Expand All @@ -29,4 +33,4 @@ jobs:
if: success() && github.event_name != 'PullRequest'
env:
GITHUB_TOKEN: "${{ secrets.PUBLISH_TOKEN }}"
run: mage Publish
run: mage Publish

0 comments on commit f533b9e

Please sign in to comment.