-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from open-component-model/chore/labels
chore: inherit from .github labels
- Loading branch information
Showing
7 changed files
with
71 additions
and
112 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,7 @@ | ||
## Description | ||
<!-- markdownlint-disable MD041 --> | ||
#### What this PR does / why we need it | ||
|
||
<!-- | ||
Please do not leave this blank | ||
This PR [adds/removes/fixes/replaces] the [feature/bug/etc]. | ||
#### Which issue(s) this PR fixes | ||
<!-- | ||
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. | ||
--> | ||
|
||
Please include a summary of the changes and the related issue. Please also include relevant motivation and context. List any dependencies that are required for this change. | ||
|
||
|
||
## What type of PR is this? (check all applicable) | ||
|
||
- [ ] 🍕 Feature | ||
- [ ] 🐛 Bug Fix | ||
- [ ] 📝 Documentation Update | ||
- [ ] 🎨 Style | ||
- [ ] 🧑💻 Code Refactor | ||
- [ ] 🔥 Performance Improvements | ||
- [ ] ✅ Test | ||
- [ ] 🤖 Build | ||
- [ ] 🔁 CI | ||
- [ ] 📦 Chore (Release) | ||
- [ ] ⏩ Revert | ||
|
||
## Related Tickets & Documents | ||
|
||
<!-- | ||
Please use this format link issue numbers: Fixes #123 | ||
https://docs.github.com/en/free-pro-team@latest/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword | ||
--> | ||
- Related Issue # (issue) | ||
- Closes # (issue) | ||
- Fixes # (issue) | ||
> Remove if not applicable | ||
## Screenshots | ||
|
||
<!-- Visual changes require screenshots --> | ||
|
||
|
||
## Added tests? | ||
|
||
- [ ] 👍 yes | ||
- [ ] 🙅 no, because they aren't needed | ||
- [ ] 🙋 no, because I need help | ||
|
||
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration | ||
|
||
|
||
## Added to documentation? | ||
|
||
- [ ] 📜 README.md | ||
- [ ] 🙅 no documentation needed | ||
|
||
## Checklist: | ||
|
||
- [ ] My code follows the style guidelines of this project | ||
- [ ] I have performed a self-review of my code | ||
- [ ] I have commented my code, particularly in hard-to-understand areas | ||
- [ ] I have made corresponding changes to the documentation | ||
- [ ] My changes generate no new warnings | ||
- [ ] I have added tests that prove my fix is effective or that my feature works | ||
- [ ] New and existing unit tests pass locally with my changes | ||
- [ ] Any dependent changes have been merged and published in downstream modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,29 @@ | ||
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: | ||
patterns: | ||
- "*" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
labels: ["dependencies","go"] | ||
groups: | ||
go: | ||
update-types: ["minor","patch"] | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
groups: | ||
# xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups | ||
ci: | ||
patterns: | ||
- "*" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
labels: | ||
- kind/dependency | ||
- kind/chore | ||
- kind/skip-release-notes | ||
- component/github-actions | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
groups: | ||
go: | ||
update-types: [ "minor", "patch" ] | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
labels: | ||
- kind/dependency | ||
- kind/chore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-e2e-framework | ||
color: bfd4f2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ | |
.envrc | ||
*__debug_bin | ||
tilt | ||
kind | ||
kind | ||
/.project |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version = 1 | ||
SPDX-PackageName = "ocm-e2e-framework" | ||
SPDX-PackageSupplier = "[email protected]" | ||
SPDX-PackageDownloadLocation = "https://github.com/open-component-model/ocm-e2e-framework" | ||
SPDX-PackageComment = "The code in this project may include calls to APIs (\"API Calls\") of\n SAP or third-party products or services developed outside of this project\n (\"External Products\").\n \"APIs\" means application programming interfaces, as well as their respective\n specifications and implementing code that allows software to communicate with\n other software.\n API Calls to External Products are not licensed under the open source license\n that governs this project. The use of such API Calls and related External\n Products are subject to applicable additional agreements with the relevant\n provider of the External Products. In no event shall the open source license\n that governs this project grant any rights in or to any External Products, or\n alter, expand or supersede any terms of the applicable additional agreements.\n If you have a valid license agreement with SAP for the use of a particular SAP\n External Product, then you may make use of any API Calls included in this\n project's code for that SAP External Product, subject to the terms of such\n license agreement. If you do not have a valid license agreement for the use of\n a particular SAP External Product, then you may only make use of any API Calls\n in this project for that SAP External Product for your internal, non-productive\n and non-commercial test and evaluation of such API Calls. Nothing herein grants\n you any rights to use or access any SAP External Product, or provide any third\n parties the right to use of access any SAP External Product, through API Calls." | ||
|
||
[[annotations]] | ||
path = "**" | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = "2022 SAP SE or an SAP affiliate company and Open Component Model contributors" | ||
SPDX-License-Identifier = "Apache-2.0" |