From 726c07a30e12276ea2900b192f2d7dc24a104beb Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Wed, 20 Nov 2024 13:25:29 +0100 Subject: [PATCH 01/14] migrate labels --- .github/ISSUE_TEMPLATE/enhancement_request.md | 2 +- .github/ISSUE_TEMPLATE/user_story.md | 2 +- .github/config/labeler.yml | 10 +++--- .github/dependabot.yml | 8 +++++ .github/release-drafter.yml | 33 +++++++++++-------- .github/workflows/flake_vendorhash.yaml | 2 +- .github/workflows/pull-request.yaml | 2 +- 7 files changed, 36 insertions(+), 23 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/enhancement_request.md b/.github/ISSUE_TEMPLATE/enhancement_request.md index 84a7d6c8f0..4bbaa79c0b 100644 --- a/.github/ISSUE_TEMPLATE/enhancement_request.md +++ b/.github/ISSUE_TEMPLATE/enhancement_request.md @@ -1,7 +1,7 @@ --- name: Enhancement Request about: Suggest an enhancement -labels: kind/enhancement +labels: kind/feature --- diff --git a/.github/ISSUE_TEMPLATE/user_story.md b/.github/ISSUE_TEMPLATE/user_story.md index 645631eefa..7778433c9d 100644 --- a/.github/ISSUE_TEMPLATE/user_story.md +++ b/.github/ISSUE_TEMPLATE/user_story.md @@ -1,7 +1,7 @@ --- name: User Story about: User Story -labels: +labels: kind/feature title: - Title --- diff --git a/.github/config/labeler.yml b/.github/config/labeler.yml index 27fd2a2f19..828e7b650f 100644 --- a/.github/config/labeler.yml +++ b/.github/config/labeler.yml @@ -1,14 +1,14 @@ -feature: +kind/feature: - head-branch: 'feature/*' -fix: +kind/fix: - head-branch: 'fix/*' -chore: +kind/chore: - head-branch: 'chore/*' -dependencies: +kind/dependency: - any: - head-branch: 'dependencies/*' - head-branch: 'dependabot/*' -github-actions: +component/github-actions: - any: - changed-files: - '.github/**' \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f689040921..073b795316 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,6 +11,11 @@ updates: schedule: interval: "weekly" day: "sunday" + labels: + - kind/dependency + - kind/chore + - kind/skip-release-notes + - component/github-actions - package-ecosystem: "gomod" directory: "/" groups: @@ -19,3 +24,6 @@ updates: schedule: interval: "weekly" day: "sunday" + labels: + - kind/dependency + - kind/chore diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 6827c023ff..ba7067a9f5 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -9,30 +9,35 @@ template: | $CHANGES exclude-labels: - 'kind/skip-release-notes' - - 'wontfix' - - 'triage/wont-fix' - - 'triage/invalid' + - 'dev/wont-fix' + - 'component/github-actions' categories: - - title: '‼️ Breaking Changes' + - title: '☠ Breaking Changes ☠' labels: - - 'breaking-change' + - 'BREAKING CHANGE!!!' - title: '🚀 Features' labels: - - 'kind/enhancement' - - 'feature' - - 'enhancement' + - 'kind/epic' + - 'kind/feature' + - 'kind/poc' - title: '🐛 Bug Fixes' collapse-after: 5 labels: - - 'kind/bug' - - 'fix' - - 'bugfix' - - 'bug' + - 'kind/fix' + - title: '📄 Documentation' + collapse-after: 5 + labels: + - 'kind/documentation' + - title: '🥺 Deprecation' + collapse-after: 3 + labels: + - 'kind/deprecation' - title: '🧰 Maintenance' collapse-after: 3 labels: - - 'chore' + - 'kind/chore' + - 'kind/refactor' - title: '⬆️ Dependencies' collapse-after: 3 labels: - - 'dependencies' + - 'kind/dependency' diff --git a/.github/workflows/flake_vendorhash.yaml b/.github/workflows/flake_vendorhash.yaml index 4e4c390cb8..b1d20d21ee 100644 --- a/.github/workflows/flake_vendorhash.yaml +++ b/.github/workflows/flake_vendorhash.yaml @@ -59,6 +59,6 @@ jobs: sign-commits: true labels: | kind/skip-release-notes - chore + kind/chore body: | Update OCM CLI vendor hash (see: .github/workflows/flake_vendorhash.yaml) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 0f08ba17be..27e956de8f 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -61,7 +61,7 @@ jobs: - name: PRs should have at least one qualifying label uses: docker://agilepathway/pull-request-label-checker:latest with: - one_of: chore,fix,bugfix,bug,kind/bug,feature,enhancement,kind/enhancement,dependencies + one_of: kind/chore,kind/fix,kind/feature,kind/dependency,kind/documentation,kind/refactor,kind/skip-release-notes,kind/epic,kind/poc repo_token: ${{ secrets.GITHUB_TOKEN }} semantic-pr-title: name: ensure pr conforms to semantic commit style From 49caf291ac48d021bb03e1c9e65656cd5a432d85 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Wed, 20 Nov 2024 14:59:29 +0100 Subject: [PATCH 02/14] !BREAKING-CHANGE! --- .github/release-drafter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index ba7067a9f5..d58b45d1ee 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -14,7 +14,7 @@ exclude-labels: categories: - title: '☠ Breaking Changes ☠' labels: - - 'BREAKING CHANGE!!!' + - '!BREAKING-CHANGE!' - title: '🚀 Features' labels: - 'kind/epic' From 26592ee38911d3b69b00b3f15657e7c77292ab96 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Thu, 21 Nov 2024 09:49:08 +0100 Subject: [PATCH 03/14] PRs should have at least one qualifying label removed: ,kind/epic,kind/poc --- .github/workflows/pull-request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 27e956de8f..44c59740cc 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -61,7 +61,7 @@ jobs: - name: PRs should have at least one qualifying label uses: docker://agilepathway/pull-request-label-checker:latest with: - one_of: kind/chore,kind/fix,kind/feature,kind/dependency,kind/documentation,kind/refactor,kind/skip-release-notes,kind/epic,kind/poc + one_of: kind/chore,kind/fix,kind/feature,kind/dependency,kind/documentation,kind/refactor,kind/skip-release-notes repo_token: ${{ secrets.GITHUB_TOKEN }} semantic-pr-title: name: ensure pr conforms to semantic commit style From 731e4210305da979e58cfde59b705ff39d33581c Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Thu, 21 Nov 2024 12:09:23 +0100 Subject: [PATCH 04/14] =?UTF-8?q?title:=20'=E2=9A=A0=EF=B8=8F=20Breaking?= =?UTF-8?q?=20Changes'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/release-drafter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index d58b45d1ee..9264a4b801 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -12,7 +12,7 @@ exclude-labels: - 'dev/wont-fix' - 'component/github-actions' categories: - - title: '☠ Breaking Changes ☠' + - title: '⚠️ Breaking Changes' labels: - '!BREAKING-CHANGE!' - title: '🚀 Features' From 4bf85479592d0639462016c5d8b345b769da63c7 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Fri, 22 Nov 2024 09:37:23 +0100 Subject: [PATCH 05/14] doesn't belong to this PR --- RELEASE_PROCESS.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md index 181dcbbc50..6f718faa62 100644 --- a/RELEASE_PROCESS.md +++ b/RELEASE_PROCESS.md @@ -222,6 +222,23 @@ them through all release candidates manually. (TODO: this needs improvement by allowing us to do "append-only" style release notes, see [this issue](https://github.com/open-component-model/ocm/issues/1097) for details) +When a release is created, the release notes are copied to +the [./docs/releasenotes](./docs/releasenotes) folder in that branch +with a dedicated commit. If the release notes for that branch already exist in +the folder, the release notes are taken from the file +instead of the draft notes from GitHub. This means that you can also create a +Pull Request to the branch with the corresponding release notes +and it will be used for the release. +(TODO: Currently we have not decided if we want to permanently keep the notes +and thus need a PR to main to append them, or if we want to drop them in the +future. That's because they are currently needed to correctly manage notes +over multiple release candidates, see +[this issue](https://github.com/open-component-model/ocm/issues/1097) +for details.) + +By default, this file is generated from the +appropriate draft release with the basic release name (e.g. `v0.1.0-rc.1.md`). + ## What is part of a release? During the build of a release, an OCM CTF (Common Transport Format Archive) is From 4f674fa994ee6cdd660d23819f6509c547af5ebb Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Fri, 22 Nov 2024 09:41:09 +0100 Subject: [PATCH 06/14] release-drafter --- .github/release-drafter.yml | 64 ++++++++++++++++++------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 9264a4b801..a7e3fac8d5 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -8,36 +8,36 @@ template: | $CHANGES exclude-labels: - - 'kind/skip-release-notes' - - 'dev/wont-fix' - - 'component/github-actions' +- 'kind/skip-release-notes' +- 'dev/wont-fix' +- 'component/github-actions' categories: - - title: '⚠️ Breaking Changes' - labels: - - '!BREAKING-CHANGE!' - - title: '🚀 Features' - labels: - - 'kind/epic' - - 'kind/feature' - - 'kind/poc' - - title: '🐛 Bug Fixes' - collapse-after: 5 - labels: - - 'kind/fix' - - title: '📄 Documentation' - collapse-after: 5 - labels: - - 'kind/documentation' - - title: '🥺 Deprecation' - collapse-after: 3 - labels: - - 'kind/deprecation' - - title: '🧰 Maintenance' - collapse-after: 3 - labels: - - 'kind/chore' - - 'kind/refactor' - - title: '⬆️ Dependencies' - collapse-after: 3 - labels: - - 'kind/dependency' +- title: '⚠️ Breaking Changes' + labels: + - '!BREAKING-CHANGE!' +- title: '🚀 Features' + labels: + - 'kind/epic' + - 'kind/feature' + - 'kind/poc' +- title: '🐛 Bug Fixes' + collapse-after: 5 + labels: + - 'kind/bugfix' +- title: '📄 Documentation' + collapse-after: 5 + labels: + - 'area/documentation' +- title: '🥺 Deprecation' + collapse-after: 3 + labels: + - 'kind/deprecation' +- title: '🧰 Maintenance' + collapse-after: 3 + labels: + - 'kind/chore' + - 'kind/refactor' +- title: '⬆️ Dependencies' + collapse-after: 3 + labels: + - 'kind/dependency' From eeb70dd170fe4989e82b5220b9ebad3f5b52c3c8 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Fri, 22 Nov 2024 09:45:58 +0100 Subject: [PATCH 07/14] merge main --- .github/workflows/pull-request.yaml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 9755d46b17..0da654c123 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -160,14 +160,3 @@ jobs: with: one_of: kind/chore,kind/fix,kind/feature,kind/dependency,area/documentation,kind/refactor,kind/skip-release-notes repo_token: ${{ secrets.GITHUB_TOKEN }} - semantic-pr-title: - name: ensure pr conforms to semantic commit style - runs-on: ubuntu-latest - steps: - # This enforces Semantic Pull Request titles: - # see https://github.com/amannn/action-semantic-pull-request?tab=readme-ov-file#examples for examples - # see https://www.conventionalcommits.org/en/v1.0.0/#specification for the full specification - # We want this because we use squashing so all squashed commits should conform to our commit style - - uses: amannn/action-semantic-pull-request@v5 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 913da627f76c492a04b72199ec6ca7201864d804 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Fri, 22 Nov 2024 09:48:14 +0100 Subject: [PATCH 08/14] kind/bugfix --- .github/workflows/pull-request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 0da654c123..666e60068e 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -158,5 +158,5 @@ jobs: - name: PRs should have at least one qualifying label uses: docker://agilepathway/pull-request-label-checker:latest with: - one_of: kind/chore,kind/fix,kind/feature,kind/dependency,area/documentation,kind/refactor,kind/skip-release-notes + one_of: kind/chore,kind/bugfix,kind/feature,kind/dependency,area/documentation,kind/refactor,kind/skip-release-notes repo_token: ${{ secrets.GITHUB_TOKEN }} From 6a0f52931746813b72e0b859e29b4ec31913ac27 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Fri, 22 Nov 2024 10:47:16 +0100 Subject: [PATCH 09/14] adjust conventional-commit-labeler --- .github/workflows/pull-request.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 666e60068e..cecdebd72d 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -24,18 +24,18 @@ jobs: env: TYPE_TO_LABEL: | { - "feat":"kind/enhancement", - "fix":"fix", - "chore":"chore", - "docs":"kind/documentation", - "test":"kind/test", - "perf":"kind/performance" + "feat":"kind/feature", + "fix":"kind/bugfix", + "chore":"kind/chore", + "docs":"area/documentation", + "test":"area/testing", + "perf":"area/performance" } SCOPE_TO_LABEL: | { - "deps":"dependencies" + "deps":"kind/dependency" } - BREAKING_CHANGE_LABEL: "breaking" + BREAKING_CHANGE_LABEL: "!BREAKING-CHANGE!" with: script: | console.log("Verify that the PR title follows the Conventional Commit format"); From 0f1b13cca7b182b9a6c830463456cdc62b2b17e2 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Fri, 22 Nov 2024 11:33:21 +0100 Subject: [PATCH 10/14] blocked by: https://github.com/open-component-model/.github/pull/14 --- .github/CODEOWNERS | 4 ++++ .github/release-drafter.yml | 45 ++----------------------------------- .github/settings.yml | 8 +++++++ 3 files changed, 14 insertions(+), 43 deletions(-) create mode 100644 .github/settings.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index ce831abcda..1b1d6f773c 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -3,6 +3,10 @@ # 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/ @/ #/src/ @/ diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index a7e3fac8d5..a3aea7541d 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,43 +1,2 @@ -name-template: 'v$RESOLVED_VERSION' -tag-template: 'v$RESOLVED_VERSION' -version-template: '$COMPLETE' -change-template: '- $TITLE (#$NUMBER)' -change-title-escapes: '\<*_&#@`' -template: | - # Release v$RESOLVED_VERSION - - $CHANGES -exclude-labels: -- 'kind/skip-release-notes' -- 'dev/wont-fix' -- 'component/github-actions' -categories: -- title: '⚠️ Breaking Changes' - labels: - - '!BREAKING-CHANGE!' -- title: '🚀 Features' - labels: - - 'kind/epic' - - 'kind/feature' - - 'kind/poc' -- title: '🐛 Bug Fixes' - collapse-after: 5 - labels: - - 'kind/bugfix' -- title: '📄 Documentation' - collapse-after: 5 - labels: - - 'area/documentation' -- title: '🥺 Deprecation' - collapse-after: 3 - labels: - - 'kind/deprecation' -- title: '🧰 Maintenance' - collapse-after: 3 - labels: - - 'kind/chore' - - 'kind/refactor' -- title: '⬆️ Dependencies' - collapse-after: 3 - labels: - - 'kind/dependency' +# see: https://github.com/open-component-model/.github/blob/main/.github/release-drafter.yml +_extends: .github diff --git a/.github/settings.yml b/.github/settings.yml new file mode 100644 index 0000000000..53861cbcc7 --- /dev/null +++ b/.github/settings.yml @@ -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 + color: bfd4f2 From 7546490e7da8fbd91b0ce7546901c48cfcf84f63 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Fri, 22 Nov 2024 11:36:51 +0100 Subject: [PATCH 11/14] keep release-drafter --- .github/release-drafter.yml | 45 +++++++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index a3aea7541d..a7e3fac8d5 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,2 +1,43 @@ -# see: https://github.com/open-component-model/.github/blob/main/.github/release-drafter.yml -_extends: .github +name-template: 'v$RESOLVED_VERSION' +tag-template: 'v$RESOLVED_VERSION' +version-template: '$COMPLETE' +change-template: '- $TITLE (#$NUMBER)' +change-title-escapes: '\<*_&#@`' +template: | + # Release v$RESOLVED_VERSION + + $CHANGES +exclude-labels: +- 'kind/skip-release-notes' +- 'dev/wont-fix' +- 'component/github-actions' +categories: +- title: '⚠️ Breaking Changes' + labels: + - '!BREAKING-CHANGE!' +- title: '🚀 Features' + labels: + - 'kind/epic' + - 'kind/feature' + - 'kind/poc' +- title: '🐛 Bug Fixes' + collapse-after: 5 + labels: + - 'kind/bugfix' +- title: '📄 Documentation' + collapse-after: 5 + labels: + - 'area/documentation' +- title: '🥺 Deprecation' + collapse-after: 3 + labels: + - 'kind/deprecation' +- title: '🧰 Maintenance' + collapse-after: 3 + labels: + - 'kind/chore' + - 'kind/refactor' +- title: '⬆️ Dependencies' + collapse-after: 3 + labels: + - 'kind/dependency' From 4c5db16ff4651ec15205e926d371165532c9a752 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Wed, 27 Nov 2024 16:10:02 +0100 Subject: [PATCH 12/14] release notes --- .github/config/release.yml | 45 +++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 23 deletions(-) diff --git a/.github/config/release.yml b/.github/config/release.yml index cf08521604..80e6440e85 100644 --- a/.github/config/release.yml +++ b/.github/config/release.yml @@ -2,27 +2,26 @@ changelog: exclude: labels: - 'kind/skip-release-notes' - - 'wontfix' - - 'triage/wont-fix' - - 'triage/invalid' + - 'dev/wont-fix' + - 'dev/cant-reproduce' + - 'component/github-actions' categories: - - title: '‼️ Breaking Changes' - labels: - - 'breaking-change' - - title: '🚀 Features' - labels: - - 'kind/enhancement' - - 'feature' - - 'enhancement' - - title: '🐛 Bug Fixes' - labels: - - 'kind/bug' - - 'fix' - - 'bugfix' - - 'bug' - - title: '🧰 Maintenance' - labels: - - 'chore' - - title: '⬆️ Dependencies' - labels: - - 'dependencies' \ No newline at end of file + - title: '‼️ Breaking Changes' + labels: + - '!BREAKING-CHANGE!' + - title: '🚀 Features' + labels: + - 'kind/feature' + - 'kind/task' + - 'kind/epic' + - title: '🐛 Bug Fixes' + labels: + - 'kind/bugfix' + - title: '🧰 Maintenance' + labels: + - 'kind/chore' + - 'kind/refactor' + - 'kind/deprecation' + - title: '⬆️ Dependencies' + labels: + - 'kind/dependency' From 05f4135071531279804f70839c19a0114eaa3df8 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Wed, 27 Nov 2024 16:34:03 +0100 Subject: [PATCH 13/14] verify-labels --- .github/config/release.yml | 5 +---- .github/workflows/pull-request.yaml | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/config/release.yml b/.github/config/release.yml index 80e6440e85..dcbcbc531f 100644 --- a/.github/config/release.yml +++ b/.github/config/release.yml @@ -1,10 +1,10 @@ changelog: + # ../workflows/pull_request.yaml#verify-labels one_of: kind/chore,kind/bugfix,kind/feature,kind/dependency,kind/refactor exclude: labels: - 'kind/skip-release-notes' - 'dev/wont-fix' - 'dev/cant-reproduce' - - 'component/github-actions' categories: - title: '‼️ Breaking Changes' labels: @@ -12,8 +12,6 @@ changelog: - title: '🚀 Features' labels: - 'kind/feature' - - 'kind/task' - - 'kind/epic' - title: '🐛 Bug Fixes' labels: - 'kind/bugfix' @@ -21,7 +19,6 @@ changelog: labels: - 'kind/chore' - 'kind/refactor' - - 'kind/deprecation' - title: '⬆️ Dependencies' labels: - 'kind/dependency' diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index cecdebd72d..cc2ad2bf8d 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -158,5 +158,5 @@ jobs: - name: PRs should have at least one qualifying label uses: docker://agilepathway/pull-request-label-checker:latest with: - one_of: kind/chore,kind/bugfix,kind/feature,kind/dependency,area/documentation,kind/refactor,kind/skip-release-notes + one_of: kind/chore,kind/bugfix,kind/feature,kind/dependency,kind/refactor repo_token: ${{ secrets.GITHUB_TOKEN }} From 261147aee336ed4b5b6c2b6d80bcf474182624c5 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Wed, 27 Nov 2024 16:34:49 +0100 Subject: [PATCH 14/14] rm settings --- .github/settings.yml | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .github/settings.yml diff --git a/.github/settings.yml b/.github/settings.yml deleted file mode 100644 index 53861cbcc7..0000000000 --- a/.github/settings.yml +++ /dev/null @@ -1,8 +0,0 @@ -# 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 - color: bfd4f2