Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/android-instrumented-data-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ permissions:
on:
pull_request:

# Cancels other executions in the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
instrumented-tests:
name: Run Android Instrumented Data Tests
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/android-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ permissions:
on:
pull_request:

# Cancels other executions in the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
unit-tests:
name: Run Android Unit Tests
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
branches:
- "*"

# Cancels other executions in the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
- technical/*
- 'dependabot/**'

# Cancels other executions in the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: write
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ ownCloud admins and users.
* Enhancement - Update space image: [#4691](https://github.com/owncloud/android/issues/4691)
* Enhancement - Show space quota: [#4693](https://github.com/owncloud/android/issues/4693)
* Enhancement - Add user role to spaces: [#4698](https://github.com/owncloud/android/pull/4698)
* Enhancement - Cancellation policy for CI workflows: [#4712](https://github.com/owncloud/android/pull/4712)

## Details

Expand Down Expand Up @@ -159,6 +160,13 @@ ownCloud admins and users.

https://github.com/owncloud/android/pull/4698

* Enhancement - Cancellation policy for CI workflows: [#4712](https://github.com/owncloud/android/pull/4712)

A new cancellation policy has been set to CI workflows. Only one concurrent
execution of every workflow in every branch.

https://github.com/owncloud/android/pull/4712

# Changelog for ownCloud Android Client [4.6.2] (2025-08-13)

The following sections list the changes in ownCloud Android Client 4.6.2 relevant to
Expand Down
5 changes: 5 additions & 0 deletions changelog/unreleased/4712
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Enhancement: Cancellation policy for CI workflows

A new cancellation policy has been set to CI workflows. Only one concurrent execution of every workflow in every branch.

https://github.com/owncloud/android/pull/4712
Loading