Skip to content

Commit

Permalink
refactor: make lock pr title configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-steinfeld committed Jan 15, 2025
1 parent 8364145 commit d946716
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion raise-lock-pr/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ inputs:
lock-settings:
description: 'shell command to run after updating lock files. Can be used to cleanup locks'
default: 'false'
pr-title:
description: 'Title for the generated PR'
default: 'Update gradle locks (Automated)'
runs:
using: composite
steps:
Expand All @@ -21,7 +24,7 @@ runs:
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
title: Update gradle locks (Automated)
title: ${{ inputs.pr-title }}
body: |
# Autogenerated gradle lock updates
commit-message: Update gradle locks
Expand Down

0 comments on commit d946716

Please sign in to comment.