-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: always create a new release branch and delete all old ones dur…
…ing new release action (#894) #### What this PR does / why we need it When we create a new release, then let's always be prepared for a potential hotfix and create the release branch. On the other hand, this will create a lot of unused branches over the time, so the PR will delete all older release branches. In case of serious situation, where we really need to fix older versions, we still have the tags in place and would need to create manually a patched old release. #### Which issue(s) this PR fixes releates open-component-model/ocm-project#240
- Loading branch information
Showing
4 changed files
with
17 additions
and
23 deletions.
There are no files selected for viewing
File renamed without changes.
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
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 |
---|---|---|
|
@@ -67,7 +67,6 @@ jobs: | |
- name: Setup lint | ||
run: | | ||
make -f hack/Makefile golangci-lint | ||
#curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2 | ||
- name: Lint | ||
run: | | ||
PATH=$PATH:$(go env GOPATH)/bin make check | ||
|
@@ -78,7 +77,7 @@ jobs: | |
steps: | ||
- name: Self Hosted Runner Post Job Cleanup Action | ||
uses: TooMuch4U/[email protected] | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
|
@@ -103,4 +102,3 @@ jobs: | |
- name: Check for diff | ||
run: | | ||
git diff --exit-code --shortstat | ||
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