Skip to content

Commit

Permalink
Merge pull request #838 from shinya/feature/build-auto-merge
Browse files Browse the repository at this point in the history
デバッグメッセージの出力方法を変更
  • Loading branch information
ji-eunsoo authored Feb 14, 2024
2 parents 92bd6f9 + fffa6d9 commit da9d407
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ jobs:
github.event.workflow_run.conclusion == 'failure'
steps:
- name: failed
env:
WORKFLOW_RUN_CONTEXT: ${{ toJson(github.event.workflow_run) }}
# 失敗したときにデバッグ用に情報を出力しておく
run: |
echo 'Haven't met the conditions to merge yet'
echo '${{ toJSON(github.event.workflow_run) }}'
echo "Haven't met the conditions to merge yet"
echo "$WORKFLOW_RUN_CONTEXT"
exit 1

0 comments on commit da9d407

Please sign in to comment.