File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
actions/docker/prune-pull-requests-image-tags Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11{
22 "threshold" : 5 ,
3- "ignore" : [
4- " /workspace/actions/**/README.md"
5- ]
3+ "ignore" : [" /workspace/actions/**/README.md" ]
64}
Original file line number Diff line number Diff line change 2323 linter-env : |
2424 VALIDATE_KUBERNETES_KUBECONFORM=false
2525 VALIDATE_CHECKOV=false
26+ VALIDATE_JAVASCRIPT_PRETTIER=false
2627
2728 test-action-docker-build-image :
2829 needs : linter
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ lint: ## Execute linting
88
99lint-fix : # # Execute linting and fix
1010 $(call run_linter, \
11+ -e FIX_JSON_PRETTIER=true \
12+ -e FIX_JAVASCRIPT_PRETTIER=true \
13+ -e FIX_JAVASCRIPT_STANDARD=true \
1114 -e FIX_YAML_PRETTIER=true \
1215 -e FIX_MARKDOWN=true \
1316 -e FIX_MARKDOWN_PRETTIER=true \
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ module.exports = async ({
1111
1212 let currentPage = 1
1313 const allDeletedTags = [ ]
14- while ( true ) {
14+ for ( ; ; ) {
1515 const data = await getAllPackageVersions ( {
1616 github,
1717 context,
You can’t perform that action at this time.
0 commit comments