-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
29 lines (29 loc) · 875 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
name: "action-release-branch"
author: "smockle"
description: "Removes source files, then pushes a commit to the release branch."
inputs:
email:
description: "Email address to associate with the release commit."
required: true
username:
description: "GitHub username to associate with the release commit."
required: true
token:
description: "A GitHub token with the `repo` scope, or with the `contents: write` fine-grained permission. Defaults to 'github.token'."
required: false
default: ${{ github.token }}
release_branch:
description: "Release branch name. Defaults to 'dist'."
required: false
default: "dist"
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.email }}
- ${{ inputs.username }}
- ${{ inputs.token }}
- ${{ inputs.release_branch }}
branding:
icon: "package"
color: "green"