Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
7008c94aa5 | |||
bc0bf00947 | |||
|
383d95c911 |
2 changed files with 9 additions and 3 deletions
|
@ -60,15 +60,15 @@ jobs:
|
||||||
git push origin HEAD:${{ env.RELEASE_BRANCH }}
|
git push origin HEAD:${{ env.RELEASE_BRANCH }}
|
||||||
|
|
||||||
- name: Checkout target branch
|
- name: Checkout target branch
|
||||||
if: ${{ steps.semantic.outputs.new_release_published && !env.SKIP_MERGE }}
|
if: ${{ steps.semantic.outputs.new_release_published && !(env.SKIP_MERGE == true) }}
|
||||||
run: git reset --hard && git checkout ${{ env.TARGET_BRANCH }} && git pull
|
run: git reset --hard && git checkout ${{ env.TARGET_BRANCH }} && git pull
|
||||||
|
|
||||||
- name: Merge release
|
- name: Merge release
|
||||||
if: ${{ steps.semantic.outputs.new_release_published && !env.SKIP_MERGE }}
|
if: ${{ steps.semantic.outputs.new_release_published && !(env.SKIP_MERGE == true) }}
|
||||||
run: git merge ${{ env.RELEASE_BRANCH }}
|
run: git merge ${{ env.RELEASE_BRANCH }}
|
||||||
|
|
||||||
- name: Push changes to target branch
|
- name: Push changes to target branch
|
||||||
if: ${{ steps.semantic.outputs.new_release_published && !env.SKIP_MERGE }}
|
if: ${{ steps.semantic.outputs.new_release_published && !(env.SKIP_MERGE == true) }}
|
||||||
run: |
|
run: |
|
||||||
git remote set-url origin git@${{ env.GITEA_DOMAIN }}:${{ github.repository }}.git
|
git remote set-url origin git@${{ env.GITEA_DOMAIN }}:${{ github.repository }}.git
|
||||||
git push origin HEAD:${{ env.TARGET_BRANCH }}
|
git push origin HEAD:${{ env.TARGET_BRANCH }}
|
||||||
|
|
6
docs/CHANGELOG.md
Normal file
6
docs/CHANGELOG.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# [0.2.0](https://git.kjan.de/actions/pull-request-lint/compare/v0.1.0...v0.2.0) (2025-04-09)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **ci:** add release workflow and configuration files ([#1](https://git.kjan.de/actions/pull-request-lint/issues/1)) ([df800dd](https://git.kjan.de/actions/pull-request-lint/commit/df800dd50cbba1f466066c9ba42147e4ef8433be))
|
Loading…
Add table
Add a link
Reference in a new issue