Browse Source

Merge pull request #9059 from ThomasWaldmann/backport-action-debugging

debug backport action
TW 1 week ago
parent
commit
cb8f6ad775
1 changed files with 7 additions and 0 deletions
  1. 7 0
      .github/workflows/backport.yml

+ 7 - 0
.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