Compare commits

...

3 commits

Author SHA1 Message Date
7008c94aa5
Merge pull request 'fix: Fix release pipeline' (#3) from main into release
All checks were successful
Release / Release (push) Successful in 53s
Reviewed-on: #3
2025-04-09 14:58:13 +00:00
bc0bf00947
fix: Fix release pipeline 2025-04-09 16:57:55 +02:00
Gitea Actions
383d95c911 chore(release): [skip ci] 2025-04-09 14:54:12 +00:00
2 changed files with 9 additions and 3 deletions

View file

@ -60,15 +60,15 @@ jobs:
git push origin HEAD:${{ env.RELEASE_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
- 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 }}
- 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: |
git remote set-url origin git@${{ env.GITEA_DOMAIN }}:${{ github.repository }}.git
git push origin HEAD:${{ env.TARGET_BRANCH }}

6
docs/CHANGELOG.md Normal file
View 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))