forked from tony84727/changed-file-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
24 lines (24 loc) · 731 Bytes
/
action.yml
File metadata and controls
24 lines (24 loc) · 731 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
name: 'Changed File Filter'
description: 'Determine changed files between base and current(head) commits'
author: 'tony84727'
inputs:
filters:
description: 'Specify filter rules'
required: true
event:
description: 'Github event name. (github.event_name)'
default: ${{ github.event_name }}
base:
description: 'SHA of base commit to compare'
default: ${{ github.event.pull_request.base.sha }}
head:
description: 'SHA of head commit to compare'
default: ${{ github.event.pull_request.head.sha || github.sha }}
head-ref:
description: 'ref of the head commit to compare (mainly for testing the action)'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
color: blue
icon: filter