chore(workflow): stop previous GH action pipeline on new changes and move back to public runners (#7659)

* chore(workflow): stop previous GH action pipeline on new changes

* skip previous code ql actions

* try running e2e on gh runner again
This commit is contained in:
Livio Spring 2024-03-28 08:15:03 +01:00 committed by GitHub
parent 217703395e
commit 4c945f8bdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View File

@ -4,6 +4,10 @@ on:
pull_request: pull_request:
workflow_dispatch: workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions: permissions:
contents: write contents: write
packages: write packages: write

View File

@ -13,6 +13,9 @@ on:
paths-ignore: paths-ignore:
- 'docs/**' - 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
CodeQL-Build: CodeQL-Build:

View File

@ -9,8 +9,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
browser: [firefox, chrome] browser: [firefox, chrome]
runs-on: runs-on: ubuntu-latest
group: zitadel-public
steps: steps:
- -
name: Checkout Repository name: Checkout Repository