Skip to content

Commit

Permalink
chore: inherit from .github labels (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
hilmarf authored Nov 28, 2024
1 parent 940155c commit 51cf5d4
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 10 deletions.
19 changes: 19 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Default owners for everything in the repo.
# Unless a later match takes precedence, the Maintainers team
# will be requested for review when someone opens a pull request.
* @open-component-model/Maintainers

# Changes on repository settings require admin permissions
/.github/settings.yml @open-component-model/admins
/.github/CODEOWNERS @open-component-model/admins

# Owners for specific directories
#/docs/ @<org>/<team>
#/src/ @<org>/<team>

# Owners for specific file types
#*.md @<org>/<team>
#*.go @<org>/<team>

# Individual users as owners, e.g. a lead maintainer for a specific component:
# /src/critical-component/ @lead-maintainer-username
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Bug report
about: Report a bug
title: ""
labels: kind/bug, kind/task
labels: kind/bugfix
assignees: ''
---

Expand All @@ -14,4 +14,4 @@ assignees: ''

**Anything else we need to know**:

**Environment**:
**Environment**:
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/enhancement_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
name: Enhancement Request
about: Suggest an enhancement
title: ''
labels: kind/enhancement
labels: kind/feature
assignees: ''

---

**What would you like to be added**:

**Why is this needed**:
**Why is this needed**:
7 changes: 4 additions & 3 deletions .github/ISSUE_TEMPLATE/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ labels: kind/task
assignees: ''
---

**Description**
**Description**:

**Done Criteria**:

**Done Criteria**
- [ ] ...
- [ ] Code has been reviewed by other team members
- [ ] Internal technical Documentation created/updated
Expand All @@ -17,4 +18,4 @@ assignees: ''
- [ ] Unit Tests created for new code or existing Unit Tests updated
- [ ] Integration Test Suite updated (includes deletion of existing unnecessary Integration Test and/or creation of new ones if required)
- [ ] Enduser Documentation updated (if applicable)
- [ ] Successful demonstration in Review
- [ ] Successful demonstration in Review
10 changes: 8 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
labels: ["dependencies"]
groups:
# xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
ci:
Expand All @@ -12,12 +11,19 @@ updates:
schedule:
interval: "weekly"
day: "sunday"
labels:
- kind/dependency
- kind/chore
- kind/skip-release-notes
- component/github-actions
- package-ecosystem: "gomod"
directory: "/"
labels: ["dependencies","go"]
groups:
go:
update-types: ["minor","patch"]
schedule:
interval: "weekly"
day: "sunday"
labels:
- kind/dependency
- kind/chore
8 changes: 8 additions & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# These settings are synced to GitHub by https://probot.github.io/apps/settings/

# see: https://github.com/open-component-model/.github/blob/main/.github/settings.yml
_extends: .github

labels:
- name: repo/ocm-k8s-toolkit
color: bfd4f2
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ Dockerfile.cross

# goreleaser resources
dist/
output/
output/
/.project

0 comments on commit 51cf5d4

Please sign in to comment.