Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/pr-comments-guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ permissions:
jobs:
comment-only:
name: Ensure Only Comments Change (${{ matrix.mode }}) # Include active mode in job name for clearer logs.
if: contains(github.event.pull_request.labels.*.name, 'comments translation')
if: >-
contains(github.event.pull_request.labels.*.name, 'comments translation')
|| (github.event.action == 'labeled' && github.event.label.name == 'comments translation')
strategy: # Expand the job to cover both evaluation modes.
fail-fast: false # Make sure the relaxed run completes even if the strict mode fails first.
matrix:
Expand Down