Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

デバッグメッセージの出力方法を変更 #838

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading