Skip to content
Closed
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
10 changes: 10 additions & 0 deletions .github/workflows/cherryPick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,16 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }}

- name: Append 馃崚 to Cherry-picked PR title
if: ${{ inputs.PULL_REQUEST_URL != '' }}
run: |
PR_TITLE="$(gh pr view '${{ inputs.PULL_REQUEST_URL }}' --json title --jq .title)"
if [[ "$PR_TITLE" != 馃崚* ]]; then
gh pr edit '${{ inputs.PULL_REQUEST_URL }}' --title "馃崚 ${PR_TITLE}"
fi
env:
GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }}

- name: "Announces a CP failure in the #announce Slack room"
# v3
uses: 8398a7/action-slack@1750b5085f3ec60384090fb7c52965ef822e869e
Expand Down