-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
id: plantuml | ||
uses: grassedge/[email protected] | ||
with: | ||
path: . | ||
path: example | ||
message: "Render PlantUML files" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
@startuml | ||
|
||
'test | ||
title 新生児ギャン泣きオンコール対応フローチャート | ||
start | ||
|
||
:泣く; | ||
|
||
repeat; | ||
if (オムツ/服/寝具等が汚れている?) then (はい) | ||
:オムツ/服/寝具等を替える; | ||
else (いいえ) | ||
if (前回の授乳/ミルクから2時間以上経過している、\nもしくは舌を出す、\n乳房を探して首を振るなど空腹のサインが出ている?) then (はい) | ||
:授乳/ミルクを与える; | ||
else (いいえ) | ||
if (いきみやうなりがある、太鼓腹になっている?\n顎を引き気道を確保しようとしている?) then (はい) | ||
:げっぷを出させてみる; | ||
if (便秘気味?) then (はい) | ||
:腹部マッサージや肛門刺激でうんちを促す; | ||
else (いいえ) | ||
endif | ||
else (いいえ) | ||
endif | ||
if (口をちゅぱちゅぱしている?) then (はい) | ||
:おしゃぶりを与える; | ||
else (いいえ) | ||
endif | ||
if (体温が38.0度以上/36.0度以下で衣服の枚数を変えても平熱に戻らない?\nor連続した嘔吐があったり呼吸が変?) then (はい) | ||
:小児科に連絡する; | ||
end | ||
else (いいえ) | ||
endif | ||
if (抱っこしてる?) then (いいえ) | ||
:抱っこしてみる; | ||
else (はい) | ||
:気温(冬20~23度、夏26~28度が適温)に応じて\n服を1枚脱がす/着せる。湿度を上げる; | ||
:服やオムツを窮屈でないように整える; | ||
:(まだ使用していなければ)布でくるむ; | ||
:トントンしたり揺らす。数分歩いてみたり、\n早足で足踏み・スクワット・反復横跳び等をしてみる; | ||
if (音を出せる環境に{居る/移動できる}?) then (はい) | ||
if (家に居る?) then (はい) | ||
:掃除機をかける; | ||
else (いいえ) | ||
endif | ||
:ホワイトノイズ、胎内音、雨音、心音、ドライヤー音、\n換気扇音、車のエンジン音等をyoutubeやアレクサで聞かせる; | ||
:子守唄を歌う(ことりのうた、ゆりかごのうた、\nシューベルトの子守唄など); | ||
:タケモトピアノのCM, 出前館のCM, ポイズン, カフカくん、狂言・詩吟、 \n トントントマトちゃん、7回攻撃前の野球応援音(風船音)などを\nyoutubeで聞かせる; | ||
else (いいえ) | ||
endif | ||
:ビニール袋をかしゃかしゃする; | ||
:顔に息をふきかける、うちわで扇ぐ; | ||
:手を握る; | ||
if (車を出せる?) then (はい) | ||
:ドライブする; | ||
endif | ||
:自分が深呼吸する; | ||
:300秒放置する; | ||
endif | ||
endif | ||
endif | ||
repeat while (泣き止んだ?) is (いいえ) not (はい) | ||
|
||
stop | ||
|
||
@enduml |