From cb51deb0fdc6b6d4080185c09baa39eee66a63b6 Mon Sep 17 00:00:00 2001 From: Daniel Pawlik Date: Wed, 12 Nov 2025 15:59:08 +0100 Subject: [PATCH] Remove tasks from Github workflows responsible for commenting The commenting does not work in ci-framework project from unknown reason. Until we will not figure out why it does not work, we should remove the problematic tasks, that might be confusing for community members. Signed-off-by: Daniel Pawlik --- .github/workflows/commit-message-validator.yml | 14 +------------- .github/workflows/verify-pr-prefix.yml | 14 +------------- 2 files changed, 2 insertions(+), 26 deletions(-) diff --git a/.github/workflows/commit-message-validator.yml b/.github/workflows/commit-message-validator.yml index 075a47e58..b9697579d 100644 --- a/.github/workflows/commit-message-validator.yml +++ b/.github/workflows/commit-message-validator.yml @@ -29,16 +29,4 @@ jobs: - name: Run commit message check id: bodylength run: | - set +e - ./scripts/git-check-commit-body-length.sh commit-message-file > result.log 2>&1 - EXIT_CODE=$? - echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT - cat result.log - - - name: Comment on PR if body length check failed - if: steps.bodylength.outputs.exit_code != '0' - uses: peter-evans/create-or-update-comment@v5 - with: - issue-number: ${{ github.event.pull_request.number }} - body-path: ./result.log - reactions: confused + ./scripts/git-check-commit-body-length.sh commit-message-file diff --git a/.github/workflows/verify-pr-prefix.yml b/.github/workflows/verify-pr-prefix.yml index 9a338ae89..d446b1ddb 100644 --- a/.github/workflows/verify-pr-prefix.yml +++ b/.github/workflows/verify-pr-prefix.yml @@ -23,16 +23,4 @@ jobs: - name: Run commit message check id: prefixcheck run: | - set +e - ./scripts/check-role-prefix.sh > result.log 2>&1 - EXIT_CODE=$? - echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT - cat result.log - - - name: Comment on PR if prefix check failed - if: steps.prefixcheck.outputs.exit_code != '0' - uses: peter-evans/create-or-update-comment@v5 - with: - issue-number: ${{ github.event.pull_request.number }} - body-path: ./result.log - reactions: confused + ./scripts/check-role-prefix.sh