Skip to content

Commit

Permalink
Merge PR mumble-voip#6589: CI(backport): Add debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzmbrzl authored Oct 2, 2024
2 parents a59e9b8 + 136d43c commit 54eba99
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
state: ${{ steps.check.label_check.success }}
state2: ${{ steps.check.success }}
steps:
- id: check
uses: docker://agilepathway/pull-request-label-checker:latest
Expand All @@ -19,6 +20,14 @@ jobs:
repo_token: ${{ secrets.GITHUB_TOKEN }}
allow_failure: true

print_status:
needs: [ label_checker ]
runs-on: ubuntu-latest
steps:
- shell: bash
run: echo Output is >${{ needs.label_checker.outputs.state }}< (${{ needs.label_checker.outputs.state2 }})


backport:
needs: [ label_checker ]
name: Backport PR
Expand Down

0 comments on commit 54eba99

Please sign in to comment.