Skip to content

Commit

Permalink
fix: add concurency
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanLav committed Dec 3, 2024
1 parent 3b1dfd7 commit db75b74
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: E2E Test

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
push:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/android-app.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Build android app

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
push:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/android-release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Release android app

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
workflow_dispatch:
jobs:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Check links and Publish Docs

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
push:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/rust-cargo-deny.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Check cargo deny

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
push:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/rust-clippy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Rust clippy

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
push:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/rust-fmt.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Rustfmt

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
push:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/rust-test-android.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Rust backend test for android

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
push:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/rust-test-ios.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Rust backend test for ios

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
push:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/semantic.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Semantic PR

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
# pull_request_target:
# types:
Expand Down

0 comments on commit db75b74

Please sign in to comment.