mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-10 17:32:13 -04:00
Merge pull request #9059 from ThomasWaldmann/backport-action-debugging
debug backport action
This commit is contained in:
commit
cb8f6ad775
1 changed files with 7 additions and 0 deletions
7
.github/workflows/backport.yml
vendored
7
.github/workflows/backport.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue