-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathaction.yml
More file actions
28 lines (28 loc) · 739 Bytes
/
action.yml
File metadata and controls
28 lines (28 loc) · 739 Bytes
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
name: pull request on bundle update
description: bundle update and pull request
branding:
icon: 'git-pull-request'
color: 'green'
inputs:
github_token:
description: github token
required: true
git_user_name:
description: user name who git push bundle update commit
required: true
git_email:
description: email of user who git push bundle update commit
required: true
reviewers:
description: assigned user as a revierer
required: false
bundler_version:
description: set bundler version
required: false
runs:
using: 'docker'
image: 'Dockerfile'
env:
GITHUB_TOKEN: ${{ inputs.github_token }}
GIT_USER_NAME: ${{ inputs.git_user_name }}
GIT_EMAIL: ${{ inputs.git_email }}