Github Actions
GithubのCI/CDサービス
GitHub hosts Linux and Windows runners on Standard_DS2_v2 virtual machines in Microsoft Azure with the GitHub Actions runner application installed. The GitHub-hosted runner application is a fork of the Azure Pipelines Agent. Inbound ICMP packets are blocked for all Azure virtual machines, so ping or traceroute commands might not work. For more information about the Standard_DS2_v2 machine resources, see "Dv2 and DSv2-series" in the Microsoft Azure documentation.
Azure上のVM上で実行。
GitHub Actions runnerは Azure Pipelines Agentからフォークしたもの。
Azureを使っているような感じか。
ワークフローsyntax
複雑なワークフローの管理
設定をyamlで記述
.github/workflows以下に複数の設定ファイル
ワークフロー
slack通知
イベント
ジョブ
runs-onブロック
実行仮想環境の設定
strategy
matrix
パラメーターを組み合わせて、繰り返し実行
複数のnodeバージョンで実行するなど
node-versionがパラメーター名であれば、matrix.node-versionで参照
stepsブロック
ランナー
アーティファクト
Storing workflow data as artifacts
90間保持できる
Log files and core dumps
Test results, failures, and screenshots
Binary or compressed files
Stress test performance output and code coverage results
labeler.yaml
stale.yaml
ワークフローの定期的実行
古くなったissueやプルリクエストを定期的に閉じるなど
-------------
環境ごとにワークフローを分ける。
キャッシュ
owasp-zap
設定
イベント
pull_request
デフォルトtypeは、opened, synchronize
push
typeの設定はない?
設定方針
pull_requestにはpushも入れる?
他参考