Add manual action #2
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
name: Hello #ワークフロー名 | |
on: push #イベント(プシュ時に起動 | |
jobs: #ジョブ名 | |
hello: #ジョブID | |
runs-on: ubuntu-latest #実行マシン(ランナー | |
steps: #ステップの定義 | |
- run: echo "Hello,World" #シェルコマンドの実行 | |
- uses: actions/checkout@v4 #アクションの呼び出し |