Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ inputs:
description: "The title of the PR that will be opened. by default 'Drop support for unsupported packages conform SPEC 0'. has no effect if `create_pr` is set to false"
required: false
default: "chore: Drop support for unsupported packages conform SPEC 0"
pr_body:
description: "The body of the PR that will be opened. Defaults to 'This automated PR updates the lower bounds of Python dependencies using the schedule defined in SPEC 0.'"
required: false
default: "This automated PR updates the lower bounds of Python dependencies using the schedule defined in SPEC 0."
schedule_path:
description: "Path to the schedule.json file relative to the project root. If not provided, the schedule bundled with the action is used."
required: false
Expand Down Expand Up @@ -95,7 +99,7 @@ runs:
token: ${{ inputs.token || github.token }}
commit-message: ${{ inputs.commit_msg }}
title: ${{ inputs.pr_title }}
body: "This PR was created automatically"
body: ${{ inputs.pr_body }}
base: ${{ inputs.target_branch }}
branch: update-spec0-dependencies-${{ github.run_id }}
add-paths: |
Expand Down