From 670804b0bcb28c469d85b7f84092b1efb7564499 Mon Sep 17 00:00:00 2001 From: ZachiNachshon Date: Fri, 29 Mar 2024 15:50:52 +0300 Subject: [PATCH] internal(CI): Set master as the default branch when fetching provisioner repo --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6a447a0..8eb33a3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,10 +4,9 @@ on: push: branches: - master - pull_request: branches: - - master + - '**' # Triggers the workflow on any pull request and on any branch env: # Semantic version range syntax (3.x) or exact version of a Python version @@ -22,10 +21,11 @@ jobs: python: [ '3.10' ] steps: - - name: Checkout repo code + - name: Checkout ZachiNachshon/provisioner uses: actions/checkout@v3 with: repository: 'ZachiNachshon/provisioner' + ref: master token: ${{ secrets.PROVISIONER_REPO_ACCESS_TOKEN }} - name: Checkout ZachiNachshon/provisioner-plugins