Skip to content

Commit d271cfe

Browse files
refactor: make lock pr title configurable (#73)
1 parent 8364145 commit d271cfe

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

raise-lock-pr/action.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ inputs:
77
lock-settings:
88
description: 'shell command to run after updating lock files. Can be used to cleanup locks'
99
default: 'false'
10+
pr-title:
11+
description: 'Title for the generated PR'
12+
default: 'Update gradle locks (Automated)'
1013
runs:
1114
using: composite
1215
steps:
@@ -21,7 +24,7 @@ runs:
2124
- name: Create Pull Request
2225
uses: peter-evans/create-pull-request@v5
2326
with:
24-
title: Update gradle locks (Automated)
27+
title: ${{ inputs.pr-title }}
2528
body: |
2629
# Autogenerated gradle lock updates
2730
commit-message: Update gradle locks

0 commit comments

Comments
 (0)