-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
28 lines (26 loc) · 877 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
name: 'CodeTour Watch'
description: 'Flags file changes that may affect CodeTour content'
author: 'Philippe Ozil <@pozil> and contributors'
inputs:
repo-token:
description: 'The GITHUB_TOKEN, needed to comment the PR.'
required: false
default: ${{ github.token }}
silent:
description: 'Optional flag that turns off the comment on the PR.'
required: false
default: 'false'
tour-path:
description: 'Optional flag that specifies a custom `.tour` folder location.'
required: false
default: '.tours/'
fail-on-missing-tour-updates:
description: 'Optional flag that forces the action to fail when update tour files are missing from a PR.'
required: false
default: 'false'
runs:
using: 'node20'
main: 'src/index.js'
branding:
icon: 'book'
color: 'yellow'