Skip to content

Commit 7522f01

Browse files
authored
Fix CI runs being cancelled on main branch (#241)
Revert #160 For some reason, #221 fails to address the cancellation on CI runs against main branch. Our docker images being pushed to the GitHub registry relies on the CI runs against the main branch, so we need to ensure that the CI runs on main branch is always running without any hiccups.
1 parent f1bcf0e commit 7522f01

File tree

6 files changed

+0
-18
lines changed

6 files changed

+0
-18
lines changed

.github/workflows/build-image.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
tags:
88
- v*
99
pull_request:
10-
concurrency:
11-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12-
cancel-in-progress: ${{ !contains(github.ref, 'main/')}}
1310
env:
1411
IMAGE_NAME: netbox-operator
1512
DOCKER_METADATA_PR_HEAD_SHA: true

.github/workflows/e2e-tests.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
tags:
88
- v*
99
pull_request:
10-
concurrency:
11-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12-
cancel-in-progress: ${{ !contains(github.ref, 'main/')}}
1310
env:
1411
NETBOX_HOST: demo.netbox.dev
1512
AUTH_TOKEN: 0123456789abcdef0123456789abcdef01234567

.github/workflows/govuln.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
tags:
88
- v*
99
pull_request:
10-
concurrency:
11-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12-
cancel-in-progress: ${{ !contains(github.ref, 'main/')}}
1310
permissions: read-all
1411
jobs:
1512
test:

.github/workflows/integration-test.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
tags:
88
- v*
99
pull_request:
10-
concurrency:
11-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12-
cancel-in-progress: ${{ !contains(github.ref, 'main/')}}
1310
permissions:
1411
contents: read
1512
jobs:

.github/workflows/lint.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
tags:
88
- v*
99
pull_request:
10-
concurrency:
11-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12-
cancel-in-progress: ${{ !contains(github.ref, 'main/')}}
1310
permissions: read-all
1411
jobs:
1512
run:

.github/workflows/unit-test.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
tags:
88
- v*
99
pull_request:
10-
concurrency:
11-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12-
cancel-in-progress: ${{ !contains(github.ref, 'main/')}}
1310
permissions:
1411
contents: read
1512
jobs:

0 commit comments

Comments
 (0)