-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
41 lines (40 loc) · 1.31 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
name: 'cake-dependabot'
description: 'Dependency updater for cake build files'
author: 'nils-a'
inputs:
directory:
description: >
Where to look for cake files to check for dependency upgrades.
The directory is relative to the repository's root.
Multiple paths can be provided by splitting them with a new line.
Example:
directory: |
/path/to/first/module
/path/to/second/module
default: "/"
required: false
target_branch:
description: >
Branch to create pull requests against.
By default your repository's default branch is used.
required: false
token:
description: >
Auth token used to push the changes back to github and create the pull request with.
[Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
default: ${{ github.token }}
required: false
ignore:
description: >
List of dependencies that will not be updated
Example:
ignore: |
Cake.7zip
Cake.asciidoctorj
required: false
runs:
using: 'docker'
image: 'docker://ghcr.io/nils-org/dependabot-cake-action:1.1.0'
branding:
icon: 'package'
color: 'orange'