File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ name : QuIC Organization Repolinter
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ repolinter :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout Repo
14+ uses : actions/checkout@v2
15+ - name : Verify repolinter config file is present
16+ id : check_files
17+ uses : andstor/file-existence-action@v1
18+ with :
19+ files : " repolint.json"
20+ - name : Run Repolinter with local repolint.json
21+ if : steps.check_files.outputs.files_exists == 'true'
22+ uses : newrelic/repolinter-action@v1
23+ - name : Run Repolinter with default ruleset
24+ if : steps.check_files.outputs.files_exists == 'false'
25+ uses : newrelic/repolinter-action@v1
26+ with :
27+ config_url : " https://raw.githubusercontent.com/quic/.github/main/repolint.json"
28+
You can’t perform that action at this time.
0 commit comments