We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
openapi-generatorのバージョンアップ確認ワークフローで、 issueの作成処理の終了ステータスが不正な場合も正常終了しているため、不正が正しく検知できない。 ステータスが不正な場合はワークフローを異常終了させる。
下記の箇所で、ステータスの値が不正の分岐に入った場合、exit 1する。
exit 1
STATUS: ${{ steps.create-issue.outputs.outputs && fromJson(steps.create-issue.outputs.outputs).status }} if [ $STATUS = 'created' ]; then echo "issue を新規作成しました。" >> $GITHUB_STEP_SUMMARY elif [ $STATUS = 'updated' ]; then echo "同名の issue が存在するため、更新のみ行いました。" >> $GITHUB_STEP_SUMMARY else echo "ステータスの値が不正です。" >> $GITHUB_STEP_SUMMARY fi
The text was updated successfully, but these errors were encountered:
KentaHizume
No branches or pull requests
概要
openapi-generatorのバージョンアップ確認ワークフローで、
issueの作成処理の終了ステータスが不正な場合も正常終了しているため、不正が正しく検知できない。
ステータスが不正な場合はワークフローを異常終了させる。
詳細 / 機能詳細(オプション)
下記の箇所で、ステータスの値が不正の分岐に入った場合、
exit 1
する。完了条件
The text was updated successfully, but these errors were encountered: