mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-16 00:42:35 +00:00
chore: add documentation and GA branding
This commit is contained in:
parent
ad7537a1d2
commit
34953d657b
4 changed files with 63 additions and 12 deletions
15
action.yml
15
action.yml
|
|
@ -1,19 +1,22 @@
|
|||
name: 'Self-Hosted Renovate'
|
||||
description: 'GitHub Action to run self-hosted Renovate.'
|
||||
author: 'Jeroen de Bruijn'
|
||||
branding:
|
||||
icon: tool
|
||||
color: blue
|
||||
inputs:
|
||||
configurationFile:
|
||||
description: 'Renovate configuration file'
|
||||
description: 'Configuration file to configure Renovate'
|
||||
required: false
|
||||
default: 'src/config.js'
|
||||
default: src/config.js
|
||||
token:
|
||||
description: |
|
||||
Personal access token that Renovate should use. This should be configured
|
||||
using a GitHub secret.
|
||||
GitHub personal access token that Renovate should use. This should be
|
||||
configured using a Secret.
|
||||
required: true
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'src/Dockerfile'
|
||||
using: docker
|
||||
image: src/Dockerfile
|
||||
args:
|
||||
- ${{ inputs.configurationFile }}
|
||||
- ${{ inputs.token }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue