feat(cosmetic): Add Support for setting PR Labels
This commit is contained in:
parent
073d38a53e
commit
e8bb9f761a
|
@ -13,6 +13,10 @@ inputs:
|
||||||
description: 'The title of the Pull Request to be created'
|
description: 'The title of the Pull Request to be created'
|
||||||
required: false
|
required: false
|
||||||
default: "flake.lock: Update"
|
default: "flake.lock: Update"
|
||||||
|
pr-labels:
|
||||||
|
description: 'A comma or newline separated list of labels to set on the Pull Request to be created'
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
|
@ -47,6 +51,7 @@ runs:
|
||||||
delete-branch: true
|
delete-branch: true
|
||||||
title: ${{ inputs.pr-title }}
|
title: ${{ inputs.pr-title }}
|
||||||
token: ${{ inputs.token }}
|
token: ${{ inputs.token }}
|
||||||
|
labels: ${{ inputs.pr-labels }}
|
||||||
body: |
|
body: |
|
||||||
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
|
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue