-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
35 lines (32 loc) · 1004 Bytes
/
action.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
name: 'action-nx-affected'
description: 'Github action for outputting a list of affected nx projects (apps and libs)'
inputs:
base:
description: Base of the current branch (usually main)
required: false
head:
description: Latest commit of the current branch (usually HEAD)
required: false
exclude:
description: Exclude apps/libs from the list
required: false
outputs:
affectedApps:
description: array of affected app names
hasAffectedApps:
description: true/false if there are affected apps
affectedLibs:
description: array of affected lib names
hasAffectedLibs:
description: true/false if there are affected libs
affected:
description: array of affected projects (apps/libs) names
hasAffected:
description: true/false if there are affected projects (apps/libs)
author: '2coo'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
color: blue
icon: "filter"