Skip to content

Commit

Permalink
don't prepend title to pr
Browse files Browse the repository at this point in the history
This was causing issues with renovate and violinist. I'm only commenting
it out since we might want to use it again when we start using it again
in the config workflows.
  • Loading branch information
Alexander-Cairns committed Nov 4, 2024
1 parent 67c6738 commit 70cde9a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,15 +177,15 @@ runs:
issue: ${{ steps.ticket.outputs.issue }}
transition: ${{ inputs.transition }}

- name: Prepend Ticket ID to Pull Request
if: ${{ steps.automerge.outputs.mergable == 'false' }}
run: 'gh pr edit $PULL --title "$TICKET: $OLD_TITLE"'
env:
PULL: ${{ inputs.pull-url }}
TICKET: ${{ steps.ticket.outputs.issue }}
OLD_TITLE: ${{ steps.pr-info.outputs.title }}
GITHUB_TOKEN: ${{ inputs.github-token }}
shell: bash
# - name: Prepend Ticket ID to Pull Request
# if: ${{ steps.automerge.outputs.mergable == 'false' }}
# run: 'gh pr edit $PULL --title "$TICKET: $OLD_TITLE"'
# env:
# PULL: ${{ inputs.pull-url }}
# TICKET: ${{ steps.ticket.outputs.issue }}
# OLD_TITLE: ${{ steps.pr-info.outputs.title }}
# GITHUB_TOKEN: ${{ inputs.github-token }}
# shell: bash

- name: Comment On Pull Request
if: ${{ steps.automerge.outputs.mergable == 'false' }}
Expand Down

0 comments on commit 70cde9a

Please sign in to comment.