[CI] test committed
This commit is contained in:
parent
4eb90b7bc7
commit
61f7f3115e
3 changed files with 29822 additions and 6635 deletions
16
action.yml
16
action.yml
|
@ -2,11 +2,11 @@ name: 'Create Pull Request'
|
|||
description: 'Creates a pull request for changes to your repository in the actions workspace'
|
||||
inputs:
|
||||
token:
|
||||
description: 'GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT)'
|
||||
description: 'The token that the action will use to create and update the pull request.'
|
||||
default: ${{ github.token }}
|
||||
git-token:
|
||||
branch-token:
|
||||
description: >
|
||||
The Personal Access Token (PAT) that the action will use for git operations.
|
||||
The token that the action will use to create and update the branch.
|
||||
Defaults to the value of `token`.
|
||||
path:
|
||||
description: >
|
||||
|
@ -51,6 +51,9 @@ inputs:
|
|||
A fork of the checked out parent repository to which the pull request branch will be pushed.
|
||||
e.g. `owner/repo-fork`.
|
||||
The pull request will be created to merge the fork's branch into the parent's base.
|
||||
sign-commits:
|
||||
description: 'Sign commits as `github-actions[bot]` when using `GITHUB_TOKEN`, or your own bot when using GitHub App tokens.'
|
||||
default: false
|
||||
title:
|
||||
description: 'The title of the pull request.'
|
||||
default: 'Changes by create-pull-request action'
|
||||
|
@ -72,8 +75,13 @@ inputs:
|
|||
milestone:
|
||||
description: 'The number of the milestone to associate the pull request with.'
|
||||
draft:
|
||||
description: 'Create a draft pull request. It is not possible to change draft status after creation except through the web interface'
|
||||
description: >
|
||||
Create a draft pull request.
|
||||
Valid values are `true` (only on create), `always-true` (on create and update), and `false`.
|
||||
default: false
|
||||
maintainer-can-modify:
|
||||
description: 'Indicates whether maintainers can modify the pull request.'
|
||||
default: true
|
||||
outputs:
|
||||
pull-request-number:
|
||||
description: 'The pull request number'
|
||||
|
|
36440
dist/index.js
vendored
36440
dist/index.js
vendored
File diff suppressed because one or more lines are too long
1
report.txt
Normal file
1
report.txt
Normal file
|
@ -0,0 +1 @@
|
|||
1724150333
|
Loading…
Reference in a new issue