-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
32 lines (30 loc) · 1.07 KB
/
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
name: Get changed workspaces
description: A github action that gets changed workspaces
author: Aleksandras Sukelovic <[email protected]>
inputs:
workspaces:
description: Paths where to get changed workspaces
required: false
working-directory:
description: Path to the directory that contains root package.json of monorepo
required: false
filter:
description: Regex pattern to filter changed packages by name
required: false
base-ref:
description: |
Git base reference (branch name or a commit hash). The change list will be compared to the base if
push event occurs. Will default to the last commit of the current branch
required: false
default: ${{ github.ref }}
outputs:
packages:
description: Array of changed packages, each containing its name and path
empty:
description: Boolean that indicates if there was any changed packages
runs:
using: node16
main: dist/index.js
branding:
icon: package
color: blue