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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-FileCopyrightText: 2023-2025 Jankari Tech Pvt. Ltd.
# SPDX-License-Identifier: AGPL-3.0-or-later
name: Nightly CI (Release branch)
name: Nightly CI (Release 2.11 branch)

# workflow can be scheduled ONLY from DEFAULT branch
# > This event will only trigger a workflow run if the workflow file is on the default branch.
Expand All @@ -15,4 +15,4 @@ jobs:
secrets: inherit
with:
branch: release/2.11
nextcloud_versions: "31 32"
nextcloud_versions: "31 32"
18 changes: 18 additions & 0 deletions .github/workflows/nighty-ci-release-3-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# SPDX-FileCopyrightText: 2023-2025 Jankari Tech Pvt. Ltd.
# SPDX-License-Identifier: AGPL-3.0-or-later
name: Nightly CI (Release 3.0 branch)

# workflow can be scheduled ONLY from DEFAULT branch
# > This event will only trigger a workflow run if the workflow file is on the default branch.
# See: https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#schedule
on:
schedule:
- cron: '0 23 * * *' # run at 11 PM UTC

jobs:
builds:
uses: ./.github/workflows/shared_workflow.yml
secrets: inherit
with:
branch: release/3.0
nextcloud_versions: "33"
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
sudo apt install make openssl -y
echo "###### installing nextcloud"
mkdir ~/html
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b stable32 ~/html/nextcloud
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b stable33 ~/html/nextcloud
cp -r $GITHUB_WORKSPACE ~/html/nextcloud/apps/${APP_ID}
php ~/html/nextcloud/occ maintenance:install --database "sqlite" --admin-user "admin" --admin-pass "password"
php ~/html/nextcloud/occ app:enable ${APP_ID}
Expand Down
3 changes: 2 additions & 1 deletion .tx/backport
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ release/2.7
release/2.8
release/2.9
release/2.10
release/2.11
release/2.11
release/3.0
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Removed

## 2.11.1 - 2026-01-28
## 2.11.1 - 2026-02-06

### Fixed
- Talk room guest access broken due to integration_openproject app [#959](https://github.com/nextcloud/integration_openproject/pull/959)

- Fix: Talk room guest access broken due to integration_openproject app [#959](https://github.com/nextcloud/integration_openproject/pull/959)

## 2.11.0 - 2026-01-22

Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ On the OpenProject end, users are able to:
For more information on how to set up and use the OpenProject application, please refer to [integration setup guide](https://www.openproject.org/docs/system-admin-guide/integrations/nextcloud/) for administrators and [the user guide](https://www.openproject.org/docs/user-guide/nextcloud-integration/).
]]>
</description>
<version>3.0.0-alpha.1</version>
<version>3.0.0</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<namespace>OpenProject</namespace>
Expand Down
Loading