Skip to content

Commit

Permalink
ci: remove consecutiveness step (#4273)
Browse files Browse the repository at this point in the history
(cherry picked from commit 281fff0)

# Conflicts:
#	.github/workflows/docs-deploy.yml
#	.github/workflows/release-docker.yml
#	.github/workflows/release-nightly.yml
  • Loading branch information
julienrbrt authored and mergify[bot] committed Jul 22, 2024
1 parent 38d9977 commit df0cf9d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 21 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/release-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit df0cf9d

Please sign in to comment.