diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index 169a3e832a..49196c3c46 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -47,20 +47,20 @@ concurrency: jobs: check-label: runs-on: ubuntu-latest - # If the trigger is a label we want to check if it is a CoreChanges label, + # If the trigger is a label we want to check if it is a Core changes label, # if it is we want to run the job in the AWS_ACTIONS environment so its need to be approved environment: ${{ github.event_name == 'pull_request_target' && 'AWS_ACTIONS' || '' }} steps: - - name: Check for CoreChanges label - if: github.event_name == 'pull_request_target' && github.event.label.name != 'CoreChanges' + - name: Check for Core changes label + if: github.event_name == 'pull_request_target' && github.event.label.name != 'Core changes' run: | - echo "This workflow only runs for the CoreChanges label on pull requests" + echo "This workflow only runs for the Core changes label on pull requests" exit 1 load-engine-matrix: runs-on: ubuntu-latest # We want to run this job only if the previous job outputs should_run=true, - # Which means that if the trigger was a label we run this job just if the label was CoreChanges + # Which means that if the trigger was a label we run this job just if the label was Core changes needs: check-label outputs: matrix: ${{ steps.load-engine-matrix.outputs.matrix }} @@ -165,7 +165,7 @@ jobs: java/client/build/reports/spotbugs/** build-amazonlinux-latest: - if: github.repository_owner == 'valkey-io' && (github.event_name == 'schedule' || github.event.label.name == 'CoreChanges') + if: github.repository_owner == 'valkey-io' && (github.event_name == 'schedule' || github.event.label.name == 'Core changes') strategy: # Run all jobs fail-fast: false diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index d1a9f795f5..6567690c3b 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -56,20 +56,20 @@ env: jobs: check-label: runs-on: ubuntu-latest - # If the trigger is a label we want to check if it is a CoreChanges label, + # If the trigger is a label we want to check if it is a Core changes label, # if it is we want to run the job in the AWS_ACTIONS environment so its need to be approved environment: ${{ github.event_name == 'pull_request_target' && 'AWS_ACTIONS' || '' }} steps: - - name: Check for CoreChanges label - if: github.event_name == 'pull_request_target' && github.event.label.name != 'CoreChanges' + - name: Check for Core changes label + if: github.event_name == 'pull_request_target' && github.event.label.name != 'Core changes' run: | - echo "This workflow only runs for the CoreChanges label on pull requests" + echo "This workflow only runs for the Core changes label on pull requests" exit 1 load-engine-matrix: runs-on: ubuntu-latest # We want to run this job only if the previous job outputs should_run=true, - # Which means that if the trigger was a label we run this job just if the label was CoreChanges + # Which means that if the trigger was a label we run this job just if the label was Core changes needs: check-label outputs: matrix: ${{ steps.load-engine-matrix.outputs.matrix }} @@ -80,7 +80,7 @@ jobs: - name: Load the engine matrix id: load-engine-matrix shell: bash - # We want to run the full matrix only for scheduled runs and CoreChanges + # We want to run the full matrix only for scheduled runs and Core changes # For other events we want to run only the always matrix which is first and last version supported run: | if [[ "${{ github.event_name }}" == "pull_request" || "${{ github.event_name }}" == "push" ]]; then @@ -100,7 +100,7 @@ jobs: - name: Create version matrix id: create-version-matrix shell: bash - # We want to run the full matrix only for scheduled runs and CoreChanges + # We want to run the full matrix only for scheduled runs and Core changes # For other events we want to run only the always matrix which is first and last version supported run: | if [[ "${{ github.event_name }}" == "pull_request" || "${{ github.event_name }}" == "push" ]]; then @@ -113,7 +113,7 @@ jobs: test-ubuntu-latest: runs-on: ubuntu-latest needs: [load-engine-matrix, create-version-matrix] - timeout-minutes: 15 + timeout-minutes: 25 strategy: fail-fast: false matrix: @@ -175,7 +175,7 @@ jobs: name: lint node rust build-macos-latest: - if: github.event_name == 'schedule' || github.event.label.name == 'CoreChanges' + if: github.event_name == 'schedule' || github.event.label.name == 'Core changes' runs-on: macos-latest needs: check-label timeout-minutes: 25 @@ -211,7 +211,7 @@ jobs: working-directory: ./node build-amazonlinux-latest: - if: github.event_name == 'schedule' || github.event.label.name == 'CoreChanges' + if: github.event_name == 'schedule' || github.event.label.name == 'Core changes' runs-on: ubuntu-latest container: amazonlinux:latest needs: check-label @@ -249,7 +249,7 @@ jobs: working-directory: ./node build-and-test-linux-musl-on-x86: - if: github.event_name == 'schedule' || github.event.label.name == 'CoreChanges' + if: github.event_name == 'schedule' || github.event.label.name == 'Core changes' name: Build and test Node wrapper on Linux musl needs: check-label runs-on: ubuntu-latest diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 493cc2e211..d7b3ab14a0 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -57,20 +57,20 @@ permissions: jobs: check-label: runs-on: ubuntu-latest - # If the trigger is a label we want to check if it is a CoreChanges label, + # If the trigger is a label we want to check if it is a Core changes label, # if it is we want to run the job in the AWS_ACTIONS environment so its need to be approved environment: ${{ github.event_name == 'pull_request_target' && 'AWS_ACTIONS' || '' }} steps: - - name: Check for CoreChanges label - if: github.event_name == 'pull_request_target' && github.event.label.name != 'CoreChanges' + - name: Check for Core changes label + if: github.event_name == 'pull_request_target' && github.event.label.name != 'Core changes' run: | - echo "This workflow only runs for the CoreChanges label on pull requests" + echo "This workflow only runs for the Core changes label on pull requests" exit 1 load-engine-matrix: runs-on: ubuntu-latest # We want to run this job only if the previous job outputs should_run=true, - # Which means that if the trigger was a label we run this job just if the label was CoreChanges + # Which means that if the trigger was a label we run this job just if the label was Core changes needs: check-label outputs: matrix: ${{ steps.load-engine-matrix.outputs.matrix }} @@ -81,7 +81,7 @@ jobs: - name: Load the engine matrix id: load-engine-matrix shell: bash - # We want to run the full matrix only for scheduled runs and CoreChanges + # We want to run the full matrix only for scheduled runs and Core changes # For other events we want to run only the always matrix which is first and last version supported run: | if [[ "${{ github.event_name }}" == "pull_request" || "${{github.event_name }}" == "push" ]]; then @@ -102,7 +102,7 @@ jobs: id: create-version-matrix shell: bash - # We want to run the full matrix only for scheduled runs and CoreChanges + # We want to run the full matrix only for scheduled runs and Core changes # For other events we want to run only the always matrix which is first and last version supported run: | if [[ "${{ github.event_name }}" == "pull_request" || "${{github.event_name }}" == "push" ]]; then @@ -234,7 +234,7 @@ jobs: name: lint python-rust test-macos-latest: - if: github.event_name == 'schedule' || github.event.label.name == 'CoreChanges' + if: github.event_name == 'schedule' || github.event.label.name == 'Core changes' runs-on: macos-latest needs: load-engine-matrix timeout-minutes: 35 @@ -264,7 +264,7 @@ jobs: pytest --asyncio-mode=auto test-pubsub-macos-latest: - if: github.event_name == 'schedule' || github.event.label.name == 'CoreChanges' + if: github.event_name == 'schedule' || github.event.label.name == 'Core changes' runs-on: macos-latest needs: load-engine-matrix timeout-minutes: 35 @@ -295,7 +295,7 @@ jobs: pytest --asyncio-mode=auto -k test_pubsub build-amazonlinux-latest: - if: github.event_name == 'schedule' || github.event.label.name == 'CoreChanges' + if: github.event_name == 'schedule' || github.event.label.name == 'Core changes' runs-on: ubuntu-latest container: amazonlinux:latest needs: check-label