Compare commits

..

No commits in common. "v0.2.1" and "v0.2.0" have entirely different histories.

2 changed files with 3 additions and 9 deletions

View file

@ -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 == true) }} if: ${{ steps.semantic.outputs.new_release_published && !env.SKIP_MERGE }}
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 == true) }} if: ${{ steps.semantic.outputs.new_release_published && !env.SKIP_MERGE }}
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 == true) }} if: ${{ steps.semantic.outputs.new_release_published && !env.SKIP_MERGE }}
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 }}

View file

@ -1,6 +0,0 @@
# [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))