From df0cf9dc65d7deec9069788ea27791c848b4343d Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Mon, 22 Jul 2024 19:19:05 +0200 Subject: [PATCH] ci: remove consecutiveness step (#4273) (cherry picked from commit 281fff026281c3f00c05e2582701df6a7c402fe1) # Conflicts: # .github/workflows/docs-deploy.yml # .github/workflows/release-docker.yml # .github/workflows/release-nightly.yml --- .github/workflows/docs-deploy.yml | 14 +++++++------- .github/workflows/release-docker.yml | 11 ++++------- .github/workflows/release-nightly.yml | 15 ++++++++------- 3 files changed, 19 insertions(+), 21 deletions(-) diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml index 46fca6ce9e..ec2956706d 100644 --- a/.github/workflows/docs-deploy.yml +++ b/.github/workflows/docs-deploy.yml @@ -5,17 +5,17 @@ on: branches: - main -jobs: - consecutiveness: - runs-on: ubuntu-latest - steps: - - uses: ignite/consecutive-workflow-action@main - with: - token: ${{ secrets.GITHUB_TOKEN }} +concurrency: + group: ci-${{ github.ref }}-docs-deploy + cancel-in-progress: true +jobs: build_and_deploy: runs-on: ubuntu-latest +<<<<<<< HEAD needs: [consecutiveness] +======= +>>>>>>> 281fff02 (ci: remove consecutiveness step (#4273)) steps: - name: Checkout diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml index 64c86edbf7..400ef9259f 100644 --- a/.github/workflows/release-docker.yml +++ b/.github/workflows/release-docker.yml @@ -11,13 +11,6 @@ concurrency: cancel-in-progress: true jobs: - consecutiveness: - runs-on: ubuntu-latest - steps: - - uses: ignite/consecutive-workflow-action@main - with: - token: ${{ secrets.GITHUB_TOKEN }} - check-latest-run: runs-on: "ubuntu-latest" steps: @@ -34,7 +27,11 @@ jobs: name: Push Docker image to Docker Hub if: needs.check-latest-run.outputs.last_sha != github.sha runs-on: ubuntu-latest +<<<<<<< HEAD needs: [consecutiveness, check-latest-run] +======= + needs: [check-latest-run] +>>>>>>> 281fff02 (ci: remove consecutiveness step (#4273)) steps: - name: Check out the repo diff --git a/.github/workflows/release-nightly.yml b/.github/workflows/release-nightly.yml index 14d2dc739f..e9613b834d 100644 --- a/.github/workflows/release-nightly.yml +++ b/.github/workflows/release-nightly.yml @@ -10,13 +10,6 @@ concurrency: cancel-in-progress: true jobs: - consecutiveness: - runs-on: ubuntu-latest - steps: - - uses: ignite/consecutive-workflow-action@main - with: - token: ${{ secrets.GITHUB_TOKEN }} - check-latest-run: runs-on: "ubuntu-latest" steps: @@ -32,7 +25,11 @@ jobs: release-nightly: if: needs.check-latest-run.outputs.last_sha != github.sha runs-on: ubuntu-latest +<<<<<<< HEAD needs: [consecutiveness, check-latest-run] +======= + needs: [check-latest-run] +>>>>>>> 281fff02 (ci: remove consecutiveness step (#4273)) env: working-directory: go/src/github.com/ignite/cli @@ -65,7 +62,11 @@ jobs: releases-binaries: if: needs.check-latest-run.outputs.last_sha != github.sha name: Release Go Binary +<<<<<<< HEAD needs: [consecutiveness, check-latest-run] +======= + needs: [check-latest-run] +>>>>>>> 281fff02 (ci: remove consecutiveness step (#4273)) runs-on: ubuntu-latest strategy: matrix: