forked from Checkmarx/kics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added branching process for major versions (Checkmarx#5479)
- Loading branch information
1 parent
ec3496e
commit 3ed1506
Showing
6 changed files
with
28 additions
and
6 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: go-ci | |
|
||
on: | ||
pull_request: | ||
branches: [master] | ||
branches: [master, release/1.6] | ||
|
||
jobs: | ||
lint: | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: go-e2e | |
|
||
on: | ||
pull_request: | ||
branches: [master] | ||
branches: [master, release/1.6] | ||
|
||
jobs: | ||
e2e-tests: | ||
|
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 |
---|---|---|
|
@@ -2,8 +2,7 @@ name: static-analysis | |
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
branches: [master, release/1.6] | ||
|
||
jobs: | ||
sonarcloud: | ||
|
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,23 @@ | ||
name: sync-branches-action | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
|
||
jobs: | ||
sync-major-release-branch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Sync Pull Request | ||
uses: repo-sync/pull-request@v2 | ||
with: | ||
source_branch: "master" | ||
destination_branch: "release/1.6" | ||
pr_title: "update(branch): sync master to release/1.6" | ||
pr_body: | | ||
**Automated Changes** | ||
- :magic_wand: Syncing master to release/1.6 | ||
Triggered by SHA: _${{ github.sha }}_ | ||
github_token: ${{ secrets.KICS_BOT_PAT }} |