generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (29 loc) · 915 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
name: '@i40mc/nx-get-affected-action'
description: 'This action returns the apps that got affected since the last build'
author: 'scomans'
inputs:
all:
required: false
description: 'Ignores all changes and prints the names of all apps'
default: "false"
tags:
required: false
description: 'Comma seperated list of tags. Filter the resulting apps by the provided tags. App must have all specified tags to be included.'
github_token:
required: false
description: 'GitHub token to talk to the API with'
workflow_id:
required: false
description: 'ID of the workflow to check for'
branch:
required: false
description: 'Branch to check against'
default: 'main'
outputs:
affected:
description: 'An array of all affected apps'
affectedString:
description: 'A comma seperated string of all affected apps'
runs:
using: 'node20'
main: 'dist/index.js'