We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f2567d commit f065537Copy full SHA for f065537
.github/workflows/lintcheck_summary.yml
@@ -24,7 +24,8 @@ permissions:
24
jobs:
25
download:
26
runs-on: ubuntu-latest
27
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
+ # 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') }}
29
steps:
30
- name: Download artifact
31
uses: actions/download-artifact@v4
@@ -68,7 +69,7 @@ jobs:
68
69
}
70
71
let summary = `Lintcheck changes for ${context.payload.workflow_run.head_sha}
-
72
+
73
| Lint | Added | Removed | Changed |
74
| ---- | ----: | ------: | ------: |
75
`;
0 commit comments