-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathaction.yaml
46 lines (43 loc) · 1.37 KB
/
action.yaml
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
41
42
43
44
45
46
name: update-generated-files-action
description: Push the current changes to pull request for auto-fix
inputs:
commit-message:
description: commit message
required: true
default: Generated by GitHub Actions (${{ github.workflow }} / ${{ github.job }})
commit-message-footer:
description: footer of commit message
required: true
default: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
title:
description: title of pull request
required: true
default: Generated by GitHub Actions (${{ github.workflow }} / ${{ github.job }})
body:
description: body of pull request
required: true
default: |
Hi @${{ github.actor }},
Please merge this to fix the branch ${{ github.ref_name }} (commit ${{ github.sha }}).
draft:
description: If true, create a draft pull request
required: false
default: 'false'
reviewers:
description: reviewers of pull request (multiline)
required: false
labels:
description: labels of pull request (multiline)
required: false
token:
description: GitHub token to create a pull request
required: true
default: ${{ github.token }}
outputs:
pull-request-url:
description: URL of pull request, if created
pull-request-number:
description: Number of pull request, if created
runs:
using: 'node20'
main: 'dist/index.js'