-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdependency-review-enhanced-caller.yml
More file actions
37 lines (31 loc) · 984 Bytes
/
Copy pathdependency-review-enhanced-caller.yml
File metadata and controls
37 lines (31 loc) · 984 Bytes
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
# yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json
name: "Dependency Review"
run-name: >-
${{
github.event_name == 'pull_request' &&
format('Dependency Review #{0}', github.event.pull_request.number) ||
github.event_name == 'merge_group' &&
format('Dependency Review merge group {0}', github.sha || github.ref_name || github.run_id) ||
format('Dependency Review {0}', github.ref_name || github.run_id)
}}
concurrency:
group: >-
dependency-review-${{ github.workflow }}-${{
github.event.pull_request.number ||
github.sha ||
github.ref ||
github.run_id
}}
cancel-in-progress: true
on:
pull_request:
merge_group:
types:
- "checks_requested"
permissions: {}
jobs:
dependency-review:
name: "Dependency Review"
permissions:
contents: "read"
uses: "Nick2bad4u/workflow-templates/.github/workflows/reusable-dependency-review-enhanced.yml@main"