Restore check for fixups pipeline stage

Changing it to run without the need to being in a merge request pipeline
This commit is contained in:
Marino Meneghel 2021-11-25 10:00:36 +01:00
parent c061377ecc
commit 74caff9395
1 changed files with 6 additions and 0 deletions

View File

@ -272,3 +272,9 @@ publish-github:
extends: .release-make-release
tags:
- small
check for fixups:
stage: analyze
script:
- git fetch origin $CI_COMMIT_BRANCH
- git fetch origin develop
- git log --pretty=%s "origin/develop..origin/$CI_COMMIT_BRANCH" | awk '$0 ~ /^fixup/ {find = 1}; END { exit find }'