Skip to content

Commit f065537

Browse files
committed
Do not run lintcheck summary on feature-freezed PRs
Correct label name
1 parent 6f2567d commit f065537

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/lintcheck_summary.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ permissions:
2424
jobs:
2525
download:
2626
runs-on: ubuntu-latest
27-
if: ${{ github.event.workflow_run.conclusion == 'success' }}
27+
# FIXME(feature freeze): Make sure to remove that last part after the feature freeze is over
28+
if: ${{ github.event.workflow_run.conclusion == 'success' && ! contains(github.event.pull_request.labels.*.name, 'A-lint') }}
2829
steps:
2930
- name: Download artifact
3031
uses: actions/download-artifact@v4
@@ -68,7 +69,7 @@ jobs:
6869
}
6970
7071
let summary = `Lintcheck changes for ${context.payload.workflow_run.head_sha}
71-
72+
7273
| Lint | Added | Removed | Changed |
7374
| ---- | ----: | ------: | ------: |
7475
`;

0 commit comments

Comments
 (0)