GitHub Actions 允許作業跳過「if」條件,該條件計算表達式並僅在結果為 true 時執行作業。這允許基於環境變數、文件存在或其他條件執行作業
在GitHub Actions,您可以將 if
條件設為 false
來跳過作業。例如:
<code class="yaml">jobs: build: runs-on: ubuntu-latest steps: - name: Check if job should be skipped run: | if [[ $SKIP_JOB == "true" ]]; then echo "Skipping job" exit 0 fi - name: Build the project run: ./build.sh</code>
在此範例中,Check if job should be skipped
步驟檢查環境變數 SKIP_JOB
是否設定為「true」。如果是,則將跳過該作業,並且 Build the project
步驟將不會運行。
您可以有條件地跳過 GitHub 中的作業使用 if
條件執行的操作。 if
條件可以是任何計算結果為 true 或 false 的表達式。例如,如果存在特定文件或設定了特定環境變量,您可以跳過作業。
以下是如何有條件跳過作業的範例:
<code class="yaml">jobs: build: runs-on: ubuntu-latest steps: - name: Check if file exists run: | if [[ -f /tmp/skip_job ]]; then echo "Skipping job" exit 0 fi - name: Build the project run: ./build.sh</code>
在此範例中,Check if file exists
步驟檢查檔案 /tmp/skip_job
是否存在。如果是,該作業將被跳過,並且 Build the project
步驟將不會運行。
是的,您可以排除特定作業使用 needs
關鍵字在 GitHub Actions 中執行作業。 needs
關鍵字指定哪些作業必須成功完成才能執行目前作業。
例如,如果上一個作業失敗,您可以排除某個作業運行:
<code class="yaml">jobs: build: runs-on: ubuntu-latest needs: test steps: - name: Build the project run: ./build.sh test: runs-on: ubuntu-latest steps: - name: Test the project run: ./test.sh</code>
在此範例中,如果build
作業失敗,test
作業將不會運行。
以上是如何在 github actions 中跳過作業的詳細內容。更多資訊請關注PHP中文網其他相關文章!