-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathaction.yaml
More file actions
33 lines (33 loc) · 1.1 KB
/
action.yaml
File metadata and controls
33 lines (33 loc) · 1.1 KB
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: GitHub Actions Version Updater
description: GitHub Actions Version Updater updates GitHub Action versions in a repository and creates a pull request with the changes.
author: Maksudul Haque
branding:
icon: 'upload-cloud'
color: 'green'
inputs:
committer_username:
description: 'Username of that user who will commit'
required: false
default: 'github-actions[bot]'
committer_email:
description: 'Email Address of that user who will commit'
required: false
default: 'github-actions[bot]@users.noreply.github.com'
commit_message:
description: 'Commit message for the commits by the action'
required: false
default: 'Update GitHub Action Versions'
pull_request_title:
description: 'Title for the pull requests generated by the action'
required: false
default: 'Update GitHub Action Versions'
ignore:
description: 'A JSON array which denotes the actions that should not be updated'
required: false
default: '[]'
token:
description: 'Personal Access token with workflow permission'
required: true
runs:
using: 'docker'
image: 'Dockerfile'