generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
30 lines (30 loc) · 1.03 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
name: 'Create Pull Request from local files'
description: 'Create branch and Pull Request from local files'
inputs:
token:
description: 'The GitHub token to use for making API requests'
required: true
owner:
description: 'The owner of the GitHub repository you want to create Pull Request'
repo:
description: 'The name of the GitHub repository you want to create Pull Request'
branch:
description: 'The name of the branch you want to create Pull Request head to'
storagePath:
description: 'Local path to storage base files'
required: true
default: 'tmp'
prefixBranch:
description: 'Prefix to be added to branch that will be created'
required: true
default: 'automation'
encodedRemovedFilenames:
description: 'Encoded Base64 string that contains the name of the removed files'
prefixPathForRemovedFiles:
description: 'Prefix path to be append to removed files'
outputs:
prUrl:
description: 'The url for the created Pull Request.'
runs:
using: 'node12'
main: 'dist/index.js'