-
Notifications
You must be signed in to change notification settings - Fork 0
131 lines (127 loc) · 4.27 KB
/
dependabot.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
name: 'Dependency review'
on:
push:
branches:
- "main"
- "**/dev/**"
- "release/**"
pull_request:
branches:
- "main"
- "**/dev/**"
- "release/**"
types:
- opened
- synchronize
- reopened
- ready_for_review
workflow_dispatch:
inputs:
# Associated to `allow-licenses` or `deny-licenses` workflow options
license-selection:
description: 'Select the licenses to deny or allow'
required: true
type: string
default: 'GPL-1.0-or-later, LGPL-2.0-or-later'
# Describes what the previous selection will do
license-action:
description: 'Select the action to take on the selected licenses'
required: true
type: choice
default: deny
options:
- deny
- allow
# Associated to `fail-on-severity` workflow option
severity-selection:
description: 'Select the severity level to fail on'
required: true
type: choice
default: low
options:
- low
- moderate
- high
- critical
# Associated to `warn-only` workflow option
warn-only:
description: 'Only warn about the issues without failing the workflow'
required: true
type: boolean
default: false
# Associated to `fail-on-scopes` workflow option
scopes:
description: 'Select the scopes to run the action on'
required: true
type: choice
options:
- runtime
- development
- unknown
default: runtime
permissions:
contents: read
# Write permissions for pull-requests are required for using the `comment-summary-in-pr` option, comment out if you aren't using this option
pull-requests: write
env:
HEAD_REF: ${{ github.event.ref }}
BASE_REF: ${{ (github.event.base_ref != null) && github.event.base_ref || github.event.ref }}
IS_PR: ${{ contains(github.event_name, 'pull_request') }}
IS_PUSH: ${{ contains(github.event_name, 'push') }}
IS_MANUAL: ${{ contains(github.event_name, 'workflow_dispatch') }}
jobs:
dependency-review-on-pr:
runs-on: ubuntu-latest
if: ${{ contains(github.event_name, 'pull_request') }}
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v4
with:
comment-summary-in-pr: always
fail-on-severity: low
deny-licenses: GPL-1.0-or-later, LGPL-2.0-or-later
dependency-review-on-push:
runs-on: ubuntu-latest
if: ${{ contains(github.event_name, 'push') }}
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v4
with:
fail-on-severity: low
deny-licenses: GPL-1.0-or-later, LGPL-2.0-or-later
base-ref: ${{ env.BASE_REF }}
head-ref: ${{ env.HEAD_REF }}
dependency-review-manual-with-allow-licenses:
runs-on: ubuntu-latest
if: ${{ (contains(github.event_name, 'workflow_dispatch') && inputs['license-action'] == 'allow') }}
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v4
with:
fail-on-severity: ${{ inputs['severity-selection'] }}
allow-licenses: ${{ inputs['license-selection'] }}
warn-only: ${{ inputs['warn-only'] }}
fail-on-scopes: ${{ inputs['scopes'] }}
base-ref: ${{ env.BASE_REF }}
head-ref: ${{ env.HEAD_REF }}
dependency-review-manual-with-deny-licenses:
runs-on: ubuntu-latest
if: ${{ (contains(github.event_name, 'workflow_dispatch') && inputs['license-action'] == 'deny') }}
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v4
with:
fail-on-severity: ${{ inputs['severity-selection'] }}
deny-licenses: ${{ inputs['license-selection'] }}
warn-only: ${{ inputs['warn-only'] }}
fail-on-scopes: ${{ inputs['scopes'] }}
base-ref: ${{ env.BASE_REF }}
head-ref: ${{ env.HEAD_REF }}