-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
25 lines (20 loc) · 830 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
name: 'Generate Dependabot Glob'
branding:
icon: briefcase
color: orange
description: 'Creates a `dependabot.yml` dynamically based on glob patterns.'
inputs:
template-file:
description: 'Location of the file to use as template'
default: .github/dependabot.template.yml
follow-symbolic-links:
description: 'Indicates whether to follow symbolic links (If you want to put your template in a weird place)'
default: 'true'
file-header:
description: 'Header to add to the generated file. ${input-name} will be replaced with the value of the given input.'
default: |
# This file was generated by the "Generate Dependabot Glob" action. Do not edit it directly.
# Make changes to `${template-file}` and a PR will be automatically created.
runs:
using: 'node16'
main: 'dist/index.js'