-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathaction.yml
40 lines (40 loc) · 1.36 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
name: bump-everywhere
description: Bump git tag to the next version, generate a changelog file, and create a release with auto-generated release notes
inputs:
repository:
description: Repository name with owner to bump & release. For example, undergroundwires/bump-everywhere
required: false
default: ${{ github.repository }}
user:
description: Name of the user who will do the bump commit
required: false
default: ${{ github.actor }}
commit-message:
description: Commit message that will be used in the bump commit
required: false
default: "⬆️ bump everywhere to {{version}}"
git-token:
description: Personal access token (PAT) used to clone & push to the repository.
required: false
default: ${{ github.token }}
release-type:
description: The type of the GitHub release
required: false
default: 'release'
release-token:
description: Personal access token (PAT) used to release to GitHub.
required: false
default: ${{ github.token }}
runs:
using: 'docker'
image: 'Dockerfile'
args:
- --repository ${{ inputs.repository }}
- --user ${{ inputs.user }}
- --git-token ${{ inputs.git-token }}
- --release-type ${{ inputs.release-type }}
- --release-token ${{ inputs.release-token }}
- --commit-message ${{ inputs.commit-message }}
branding:
icon: 'arrow-up'
color: 'yellow'