forked from ZupIT/horusec-operator
-
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.
Signed-off-by: Nathan Martins <[email protected]>
- Loading branch information
1 parent
546c430
commit 23e0526
Showing
2 changed files
with
16 additions
and
3 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 |
---|---|---|
|
@@ -129,6 +129,20 @@ jobs: | |
git branch ${{ steps.updated-version.outputs.releaseBranchName }} | ||
git push origin ${{ steps.updated-version.outputs.releaseBranchName }} | ||
- name: Push tag | ||
- name: Push tag and changes | ||
run: | | ||
git push origin ${{ steps.updated-version.outputs.version }} | ||
git push origin ${{ steps.updated-version.outputs.version }} | ||
git push origin ${GITHUB_REF##*/} | ||
- name: Create PR to main | ||
if: github.ref != 'refs/heads/main' | ||
uses: gorillio/github-action-cherry-pick@master | ||
with: | ||
pr_branch: main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITBOT_EMAIL: [email protected] | ||
DRY_RUN: false | ||
|
||
|
||
|
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