Skip to content

Commit 815fcbf

Browse files
committed
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 <[email protected]>
1 parent fbb79d3 commit 815fcbf

File tree

2 files changed

+2
-26
lines changed

2 files changed

+2
-26
lines changed

.github/workflows/commit-message-validator.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,4 @@ jobs:
2929
- name: Run commit message check
3030
id: bodylength
3131
run: |
32-
set +e
33-
./scripts/git-check-commit-body-length.sh commit-message-file > result.log 2>&1
34-
EXIT_CODE=$?
35-
echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT
36-
cat result.log
37-
38-
- name: Comment on PR if body length check failed
39-
if: steps.bodylength.outputs.exit_code != '0'
40-
uses: peter-evans/create-or-update-comment@v5
41-
with:
42-
issue-number: ${{ github.event.pull_request.number }}
43-
body-path: ./result.log
44-
reactions: confused
32+
./scripts/git-check-commit-body-length.sh commit-message-file

.github/workflows/verify-pr-prefix.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,4 @@ jobs:
2323
- name: Run commit message check
2424
id: prefixcheck
2525
run: |
26-
set +e
27-
./scripts/check-role-prefix.sh > result.log 2>&1
28-
EXIT_CODE=$?
29-
echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT
30-
cat result.log
31-
32-
- name: Comment on PR if prefix check failed
33-
if: steps.prefixcheck.outputs.exit_code != '0'
34-
uses: peter-evans/create-or-update-comment@v5
35-
with:
36-
issue-number: ${{ github.event.pull_request.number }}
37-
body-path: ./result.log
38-
reactions: confused
26+
./scripts/check-role-prefix.sh

0 commit comments

Comments
 (0)