forked from alphagov/paas-docker-cloudfoundry-tools
-
Notifications
You must be signed in to change notification settings - Fork 3
46 lines (40 loc) · 1.37 KB
/
lint_on_pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
name: Lint codebase
permissions:
actions: write # so 'cancel-workflow-action' can function
statuses: write # so 'super-linter' can write individual check statuses to the pr / commit
on:
pull_request:
branches:
- main
jobs:
lint:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
# - name: Lint Code Base (Blocking) # Blow up on gitleaks / github actions errors (ie. things which may / will cause issues)
# uses: super-linter/super-linter/slim@v6
# env:
# VALIDATE_ALL_CODEBASE: false
# DEFAULT_BRANCH: main
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# DISABLE_ERRORS: true
# VALIDATE_GITLEAKS: true
# VALIDATE_GITHUB_ACTIONS: true
- name: Lint Code Base (Information only) # Run linter on everything else, but in 'information-only' mode.
uses: super-linter/super-linter/slim@v6
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DISABLE_ERRORS: true
VALIDATE_GITLEAKS: false
VALIDATE_GITHUB_ACTIONS: false