forked from jitterbit/get-changed-files
-
Notifications
You must be signed in to change notification settings - Fork 21
/
action.yml
51 lines (51 loc) · 1.32 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Get Changed Files
description: Get all files changed/modified in a pull request or push's commits. This project is a fork of https://github.com/jitterbit/get-changedfiles, which supports pull_request_target and allow to filter files using regular expressions
author: Jitterbit, Inc.
branding:
icon: file
color: purple
runs:
using: node20
main: dist/index.js
inputs:
token:
description: >
GitHub token for GitHub API requests.
Users shouldn't need to set this themselves.
required: true
default: ${{ github.token }}
format:
description: >
Format of the steps output context.
Can be 'space-delimited', 'csv', or 'json'.
required: true
default: space-delimited
filter:
required: true
default: '*'
outputs:
all:
description: >
Array of all changed files.
added:
description: >
Array of added files.
modified:
description: >
Array of modified files.
removed:
description: >
Array of removed files.
renamed:
description: >
Array of renamed files.
added_modified:
description: >
Array of all added and modified files.
added_modified_renamed:
description: >
Array of all added, modified and renamed files.
# For backwards-compatibility
deleted:
description: >
Array of deleted files.