diff --git a/.github/pipeline-version b/.github/pipeline-version index 1cac385..0eed1a2 100644 --- a/.github/pipeline-version +++ b/.github/pipeline-version @@ -1 +1 @@ -1.11.0 +1.12.0 diff --git a/.github/workflows/update-watchexec-cli.yml b/.github/workflows/update-watchexec-cli.yml index 4465d2e..a8c4163 100644 --- a/.github/workflows/update-watchexec-cli.yml +++ b/.github/workflows/update-watchexec-cli.yml @@ -51,7 +51,7 @@ jobs: token: ${{ secrets.JAVA_GITHUB_TOKEN }} - name: Update Buildpack Dependency id: buildpack - run: | + run: |- #!/usr/bin/env bash set -euo pipefail @@ -73,8 +73,17 @@ jobs: git add buildpack.toml git checkout -- . + if [ "$(echo "$OLD_VERSION" | awk -F '.' '{print $1}')" != "$(echo "$VERSION" | awk -F '.' '{print $1}')" ]; then + LABEL="semver:major" + elif [ "$(echo "$OLD_VERSION" | awk -F '.' '{print $2}')" != "$(echo "$VERSION" | awk -F '.' '{print $2}')" ]; then + LABEL="semver:minor" + else + LABEL="semver:patch" + fi + echo "::set-output name=old-version::${OLD_VERSION}" echo "::set-output name=new-version::${VERSION}" + echo "::set-output name=version-label::${LABEL}" env: ID: watchexec SHA256: ${{ steps.dependency.outputs.sha256 }} @@ -91,7 +100,7 @@ jobs: Bumps Watchexec CLI from ${{ steps.buildpack.outputs.old-version }} to ${{ steps.buildpack.outputs.new-version }}. delete-branch: true - labels: semver:minor, type:dependency-upgrade + labels: ${{ steps.buildpack.outputs.version-label }}, type:dependency-upgrade signoff: true title: Bump Watchexec CLI from ${{ steps.buildpack.outputs.old-version }} to ${{ steps.buildpack.outputs.new-version }} token: ${{ secrets.JAVA_GITHUB_TOKEN }}