Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
57e70751
Commit
57e70751
authored
Oct 03, 2023
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[skip ci] disable concurrency for gh pre-release workflows
parent
9d9926fd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
13 deletions
+14
-13
checks.yml
.github/workflows/checks.yml
+3
-3
e2e-tests.yml
.github/workflows/e2e-tests.yml
+3
-3
label-issues-in-release.yml
.github/workflows/label-issues-in-release.yml
+3
-3
pre-release.yml
.github/workflows/pre-release.yml
+5
-4
No files found.
.github/workflows/checks.yml
View file @
57e70751
...
@@ -13,9 +13,9 @@ on:
...
@@ -13,9 +13,9 @@ on:
-
'
public/**'
-
'
public/**'
-
'
stub/**'
-
'
stub/**'
concurrency
:
#
concurrency:
group
:
${{ github.workflow }}__${{ github.job }}__${{ github.ref }}
#
group: ${{ github.workflow }}__${{ github.job }}__${{ github.ref }}
cancel-in-progress
:
true
#
cancel-in-progress: true
jobs
:
jobs
:
code_quality
:
code_quality
:
...
...
.github/workflows/e2e-tests.yml
View file @
57e70751
...
@@ -4,9 +4,9 @@ on:
...
@@ -4,9 +4,9 @@ on:
workflow_dispatch
:
workflow_dispatch
:
workflow_call
:
workflow_call
:
concurrency
:
#
concurrency:
group
:
${{ github.workflow }}__${{ github.job }}__${{ github.ref }}
#
group: ${{ github.workflow }}__${{ github.job }}__${{ github.ref }}
cancel-in-progress
:
true
#
cancel-in-progress: true
jobs
:
jobs
:
publish_image
:
publish_image
:
...
...
.github/workflows/label-issues-in-release.yml
View file @
57e70751
...
@@ -46,9 +46,9 @@ on:
...
@@ -46,9 +46,9 @@ on:
description
:
"
JSON
encoded
list
of
issues
linked
to
commits
in
the
release"
description
:
"
JSON
encoded
list
of
issues
linked
to
commits
in
the
release"
value
:
${{ jobs.run.outputs.issues }}
value
:
${{ jobs.run.outputs.issues }}
concurrency
:
#
concurrency:
group
:
${{ github.workflow }}__${{ github.job }}__${{ github.ref }}
#
group: ${{ github.workflow }}__${{ github.job }}__${{ github.ref }}
cancel-in-progress
:
true
#
cancel-in-progress: true
jobs
:
jobs
:
run
:
run
:
...
...
.github/workflows/pre-release.yml
View file @
57e70751
...
@@ -12,10 +12,11 @@ jobs:
...
@@ -12,10 +12,11 @@ jobs:
uses
:
"
./.github/workflows/checks.yml"
uses
:
"
./.github/workflows/checks.yml"
secrets
:
inherit
secrets
:
inherit
publish_image
:
# publish_image:
name
:
Publish Docker image
# image will be published in e2e-tests.yml workflow
uses
:
'
./.github/workflows/publish-image.yml'
# name: Publish Docker image
secrets
:
inherit
# uses: './.github/workflows/publish-image.yml'
# secrets: inherit
e2e_tests
:
e2e_tests
:
name
:
Run e2e tests
name
:
Run e2e tests
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment