mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
Allow concurrent actions on the same branch. (#281)
Actions are free for public repos and we want to see every CI failure
This commit is contained in:
parent
f3d7ebb61f
commit
0f57f03846
5
.github/workflows/azure-snp-reporter.yml
vendored
5
.github/workflows/azure-snp-reporter.yml
vendored
@ -4,11 +4,6 @@ on:
|
||||
schedule:
|
||||
- cron: "0 14 * * 0"
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed that is not main.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
build-snp-reporter:
|
||||
name: "Build SNP-reporter container"
|
||||
|
5
.github/workflows/build-binaries.yml
vendored
5
.github/workflows/build-binaries.yml
vendored
@ -16,11 +16,6 @@ on:
|
||||
- "**/go.mod"
|
||||
- "**/go.sum"
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
build-bootstrapper:
|
||||
runs-on: ubuntu-latest
|
||||
|
5
.github/workflows/build-ccm-gcp.yml
vendored
5
.github/workflows/build-ccm-gcp.yml
vendored
@ -3,11 +3,6 @@ env:
|
||||
REGISTRY: ghcr.io
|
||||
on: [workflow_dispatch]
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build-ccm-gcp:
|
||||
runs-on: ubuntu-latest
|
||||
|
5
.github/workflows/build-gcp-guest-agent.yml
vendored
5
.github/workflows/build-gcp-guest-agent.yml
vendored
@ -3,11 +3,6 @@ env:
|
||||
REGISTRY: ghcr.io
|
||||
on: [workflow_dispatch]
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build-gcp-guest-agent:
|
||||
runs-on: ubuntu-latest
|
||||
|
5
.github/workflows/test-govulncheck.yml
vendored
5
.github/workflows/test-govulncheck.yml
vendored
@ -15,11 +15,6 @@ on:
|
||||
- "**/go.mod"
|
||||
- "**/go.sum"
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
govulncheck:
|
||||
name: govulncheck
|
||||
|
5
.github/workflows/test-integration.yml
vendored
5
.github/workflows/test-integration.yml
vendored
@ -15,11 +15,6 @@ on:
|
||||
- "**/go.mod"
|
||||
- "**/go.sum"
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
integration-test:
|
||||
runs-on: ubuntu-latest
|
||||
|
5
.github/workflows/test-lint.yml
vendored
5
.github/workflows/test-lint.yml
vendored
@ -20,11 +20,6 @@ permissions:
|
||||
# Allow read access to pull request. Use with `only-new-issues` option.
|
||||
pull-requests: read
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
golangci:
|
||||
name: lint
|
||||
|
5
.github/workflows/test-shellcheck.yml
vendored
5
.github/workflows/test-shellcheck.yml
vendored
@ -10,11 +10,6 @@ on:
|
||||
paths:
|
||||
- "**.sh"
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
name: Shellcheck
|
||||
|
5
.github/workflows/test-tf.yml
vendored
5
.github/workflows/test-tf.yml
vendored
@ -11,11 +11,6 @@ on:
|
||||
paths:
|
||||
- "**.tf"
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
tfsec:
|
||||
name: terraform
|
||||
|
5
.github/workflows/test-tfsec.yml
vendored
5
.github/workflows/test-tfsec.yml
vendored
@ -15,11 +15,6 @@ permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
tfsec:
|
||||
name: tfsec
|
||||
|
5
.github/workflows/test-tidy.yml
vendored
5
.github/workflows/test-tidy.yml
vendored
@ -15,11 +15,6 @@ on:
|
||||
- "**/go.mod"
|
||||
- "**/go.sum"
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
gotidycheck:
|
||||
name: Go mod tidy check
|
||||
|
5
.github/workflows/test-unittest.yml
vendored
5
.github/workflows/test-unittest.yml
vendored
@ -15,11 +15,6 @@ on:
|
||||
- "**/go.mod"
|
||||
- "**/go.sum"
|
||||
|
||||
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
test-linux:
|
||||
runs-on: ubuntu-latest
|
||||
|
Loading…
Reference in New Issue
Block a user