-
Notifications
You must be signed in to change notification settings - Fork 804
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Implement workflows status check functions
- Loading branch information
Showing
5 changed files
with
69 additions
and
9 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 |
---|---|---|
|
@@ -30,6 +30,10 @@ jobs: | |
tag: true | ||
commit: true | ||
|
||
- name: Check Release Status | ||
if: ${{ success() }} | ||
run: echo "Release was successfull." | ||
|
||
- name: Open PR for release branch | ||
id: pr-step | ||
uses: peter-evans/[email protected] | ||
|
@@ -40,6 +44,10 @@ jobs: | |
body: "This PR contains the latest release changes." | ||
draft: false | ||
base: main | ||
|
||
- name: Check PR Creation Status | ||
if: ${{ success() }} | ||
run: echo "Pull request created successfully" | ||
|
||
- uses: peter-evans/enable-pull-request-automerge@v3 | ||
with: | ||
|
@@ -56,3 +64,7 @@ jobs: | |
--title="v${{ steps.release-step.outputs.version }}" \ | ||
--target="release/${{ steps.release-step.outputs.version }}" \ | ||
--generate-notes | ||
- name: Check Release Creation Status | ||
if: ${{ success() }} | ||
run: echo "Release created successfully with tag" |
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
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