From 2dcbb6550afa2e565a1b19a5f40b0418ef968c97 Mon Sep 17 00:00:00 2001 From: Gabriel Martinez Date: Wed, 15 Jun 2022 17:50:49 +0100 Subject: [PATCH] Update label check descriptions --- .github/workflows/label-checks.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/label-checks.yaml b/.github/workflows/label-checks.yaml index 30b94a8..e03c5f7 100644 --- a/.github/workflows/label-checks.yaml +++ b/.github/workflows/label-checks.yaml @@ -12,8 +12,8 @@ jobs: steps: - name: Check for label run: | - echo "Pull request is labeled as 'do not merge'" - echo "This workflow fails so that the pull request cannot be merged" + echo "Pull request is labeled as 'do not merge'!" + echo "This workflow fails so that the pull request cannot be merged!" exit 1 require-semver: if: | @@ -26,7 +26,7 @@ jobs: steps: - name: Check for label run: | - echo "Pull request is missing semver label!" + echo "Pull request is missing semver label! (patch/minor/major/skip-semver)!" echo "This workflow fails so that the pull request cannot be merged!" exit 1 require-category: @@ -41,6 +41,6 @@ jobs: steps: - name: Check for label run: | - echo "Pull request is missing category label (feature/fix/chore)!" + echo "Pull request is missing category label (feature/fix/chore/docs/dependencies)!" echo "This workflow fails so that the pull request cannot be merged!" exit 1