「Git/github/actions」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→タイムアウト設定) |
|||
行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# | ||
+ | |||
+ | ==有効無効== | ||
+ | githubのプロジェクトのsettingsからactionsを選択し、有効無効を選択。 | ||
+ | |||
+ | 公式参考:https://docs.github.com/ja/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository | ||
==設定ファイル== | ==設定ファイル== |
2021年3月10日 (水) 14:55時点における版
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
有効無効
githubのプロジェクトのsettingsからactionsを選択し、有効無効を選択。
設定ファイル
.github/workflows/hogehoge.yml
タイムアウト設定
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/