From 126dc4974a67dd12011849167c58ff176799ae86 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 12 Oct 2025 16:06:25 +0200 Subject: [PATCH] debug backport action --- .github/workflows/backport.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index cdf4ccecb..cda5206f5 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -11,6 +11,13 @@ permissions: pull-requests: write # so it can create pull requests jobs: + debug: + name: Debug + runs-on: ubuntu-24.04 + if: github.event_name == 'issue_comment' && startsWith(github.event.comment.body, '/backport') + steps: + - name: Dump event + run: echo '${{ toJSON(github.event) }}' backport: name: Backport pull request runs-on: ubuntu-24.04