Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 20 additions & 14 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
# 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 more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
- package-ecosystem: "gomod"
directory: "/"
- package-ecosystem: gomod
directory: /
schedule:
interval: weekly
day: monday
open-pull-requests-limit: 10
groups:
go-dependencies:
patterns: ['*']

Comment thread
CybotTM marked this conversation as resolved.
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
day: monday
open-pull-requests-limit: 5
groups:
github-actions:
patterns:
- "*"
patterns: ['*']

- package-ecosystem: docker
directory: /
schedule:
interval: weekly
day: monday
open-pull-requests-limit: 3
groups:
docker:
patterns: ['*']
12 changes: 12 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
documentation:
- changed-files:
- any-glob-to-any-file: ['**/*.md', 'docs/**/*']
ci:
- changed-files:
- any-glob-to-any-file: ['.github/**/*']
dependencies:
- changed-files:
- any-glob-to-any-file: ['go.mod', 'go.sum']
Comment thread
CybotTM marked this conversation as resolved.
tests:
- changed-files:
- any-glob-to-any-file: ['**/*_test.go', 'testdata/**/*']
8 changes: 8 additions & 0 deletions .github/template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Managed by netresearch/.github/templates/
# Drift from the template is blocking CI in this repo (check-template-drift.yml).
# Record explicit exceptions under intentional-drift[] to unblock.
template: go-app
intentional-drift:
- path: .github/workflows/container.yml
reason: "GHCR package name is 'ofelia' (short form), not 'netresearch/ofelia' \u2014\
\ pre-dates template; renaming would break existing image consumers."
17 changes: 17 additions & 0 deletions .github/workflows/check-template-drift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Template Drift

on:
pull_request:
branches: [main]
push:
branches: [main]

permissions: {}

jobs:
drift:
uses: netresearch/.github/.github/workflows/check-template-drift.yml@main
with:
template: go-app
permissions:
contents: read
Loading
Loading