「Git/github/actions」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==github_actionとは== pull_requestやpushしたときに、実行する処理 ==利用できるプラン== 利用時間(分) <pre> GitHub Free 500 MB 2,000 GitHub Pro...」) |
(→利用できるプラン) |
||
行12: | 行12: | ||
</pre> | </pre> | ||
公式:https://docs.github.com/ja/github/setting-up-and-managing-billing-and-payments-on-github/about-billing-for-github-actions# | 公式:https://docs.github.com/ja/github/setting-up-and-managing-billing-and-payments-on-github/about-billing-for-github-actions# | ||
+ | |||
+ | ==タイムアウト設定== | ||
+ | timeout-minutesで設定できる。 | ||
+ | <pre> | ||
+ | jobs: | ||
+ | my-job: | ||
+ | runs-on: ubuntu-latest | ||
+ | timeout-minutes: 120 # 全体 | ||
+ | steps: | ||
+ | - run: sleep 500 | ||
+ | timeout-minutes: 80 # 個別 | ||
+ | </pre> | ||
+ | |||
+ | 参考:https://dev.classmethod.jp/articles/must-set-timeout-on-actions-for-save-cost/ |
2021年3月5日 (金) 16:47時点における版
github_actionとは
pull_requestやpushしたときに、実行する処理
利用できるプラン
利用時間(分)
GitHub Free 500 MB 2,000 GitHub Pro 1 GB 3,000 Organization の GitHub Free 500 MB 2,000 GitHub Team 2 GB 3,000 GitHub Enterprise Cloud 50 GB 50,000
タイムアウト設定
timeout-minutesで設定できる。
jobs: my-job: runs-on: ubuntu-latest timeout-minutes: 120 # 全体 steps: - run: sleep 500 timeout-minutes: 80 # 個別
参考:https://dev.classmethod.jp/articles/must-set-timeout-on-actions-for-save-cost/