Skip to content

Patchback checker debug #4

Patchback checker debug

Patchback checker debug #4

---
name: Check Patchback Comment on Edit
on:
issue_comment:
types:
- edited
jobs:
dump_context:
runs-on: ubuntu-latest
steps:
- name: Dump context
env:
EVENT_CONTEXT: ${{ toJson(github.event) }}
run: |
echo "${EVENT_CONTEXT}"
check_patchback_comment:
if: ${{
github.event.issue.pull_request.merged_at &&
github.event.comment.user.login == 'patchback' &&
contains(github.event.comment.body, '💔 cherry-picking failed')
}}
runs-on: ubuntu-latest
steps:
- name: Add Label for Backport Failure
run: |
gh pr edit ${{ github.event.issue.number }} -R ${{ github.repository }} --add-label 'backport_failed'
env:
GH_TOKEN: ${{ github.token }}