-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
34 lines (28 loc) · 865 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
29
30
31
32
33
name: 'dependabot-lein-runner'
description: 'Run dependabot for Leiningen (Clojure)'
inputs:
token:
description: 'GitHub Token for access to GitHub Maven repositories and PR creation'
required: true
repository:
descriptions: 'The GitHub repository to run against, the token must have access to open PRs'
required: true
registries:
description: 'GitHub Packages Maven registry URLs (comma separated)'
required: false
default: ''
directory:
description: 'Base directory to search for dependency files (project.clj)'
required: false
default: '/'
branding:
icon: 'arrow-up-circle'
color: 'blue'
runs:
using: 'docker'
image: 'docker://ghcr.io/cga1123/dependabot-lein-runner:latest'
args:
- ${{ inputs.token }}
- ${{ inputs.registries }}
- ${{ inputs.directory }}
- ${{ inputs.repository }}