From 92c834999971950c0a28fc9a432c1fd8be48a506 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20Bary=C5=82a?= Date: Wed, 10 Jan 2024 22:47:19 +0100 Subject: [PATCH] more changes --- .github/workflows/semver_checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/semver_checks.yml b/.github/workflows/semver_checks.yml index c66797da23..5aac15d99c 100644 --- a/.github/workflows/semver_checks.yml +++ b/.github/workflows/semver_checks.yml @@ -32,13 +32,13 @@ jobs: run: cargo semver-checks --workspace --baseline-rev "$PR_BASE" continue-on-error: true - name: Remove breaking label on success - run: gh pr edit "$NUMBER" --remove-label semver-checks-breaking + run: gh pr edit "$PR_ID" --remove-label semver-checks-breaking if: steps.semver-pr-check.outcome != 'success' env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_REPO: ${{ github.repository }} - name: Add breaking label on failure - run: gh pr edit "$NUMBER" --add-label semver-checks-breaking + run: gh pr edit "$PR_ID" --add-label semver-checks-breaking if: steps.semver-pr-check.outcome == 'success' env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}