-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d2f14c
commit 0b3e202
Showing
3 changed files
with
47 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,8 @@ jobs: | |
name: Create New Hotfix Branch | ||
runs-on: ubuntu-latest | ||
|
||
# Only allow these users to create new hotfix branch from 'master' | ||
if: github.ref == 'refs/heads/master' && (github.actor == 'ItsSudip' || github.actor == 'krishna2020' || github.actor == 'utsabc' || github.actor == 'shrouti1507') && (github.triggering_actor == 'ItsSudip' || github.triggering_actor == 'krishna2020' || github.triggering_actor == 'shrouti1507' || github.triggering_actor == 'utsabc') | ||
# Only allow these users to create new hotfix branch from 'testci-master' | ||
if: github.ref == 'refs/heads/testci-master' && (github.actor == 'ItsSudip' || github.actor == 'krishna2020' || github.actor == 'utsabc' || github.actor == 'shrouti1507') && (github.triggering_actor == 'ItsSudip' || github.triggering_actor == 'krishna2020' || github.triggering_actor == 'shrouti1507' || github.triggering_actor == 'utsabc') | ||
steps: | ||
- name: Create Branch | ||
uses: peterjgrainger/[email protected] | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
types: | ||
- closed | ||
branches: | ||
- master | ||
- testci-master | ||
|
||
jobs: | ||
release: | ||
|
@@ -64,8 +64,8 @@ jobs: | |
- name: Pull Changes Into develop Branch | ||
uses: repo-sync/[email protected] | ||
with: | ||
source_branch: 'master' | ||
destination_branch: 'develop' | ||
source_branch: 'testci-master' | ||
destination_branch: 'testci-develop' | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
pr_title: 'chore(release): pull main into develop post release v${{ steps.extract-version.outputs.release_version }}' | ||
pr_body: ':crown: *An automated PR*' | ||
|