From 4fd991b110b18da2f740ed0cbfe9a0aafb958174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20Ro=C3=9Fner?= Date: Tue, 30 Sep 2025 09:30:24 +0200 Subject: [PATCH] docs(misc): [bmi/opendesk/documentation/handbooks#1] Fixes broken external links --- docs/debugging.md | 2 +- docs/developer/development.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/debugging.md b/docs/debugging.md index 16e8be86..d58c37ca 100644 --- a/docs/debugging.md +++ b/docs/debugging.md @@ -168,7 +168,7 @@ While you will find all the details for the CLI tool in the [MariaDB documentati ## Nextcloud -`occ` is the CLI for Nextcloud; all the details can be found in the [upstream documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/occ_command.html). +`occ` is the CLI for Nextcloud; all the details can be found in the [upstream documentation](https://docs.nextcloud.com/server/stable/admin_manual/occ_command.html). You can run occ commands in the `opendesk-nextcloud-aio` pod like this: `php /var/www/html/occ config:list` diff --git a/docs/developer/development.md b/docs/developer/development.md index 72b70ede..814bd607 100644 --- a/docs/developer/development.md +++ b/docs/developer/development.md @@ -108,9 +108,9 @@ If you follow the "push early, push often" paradigm to save your work to the cen existing documentation, you can avoid the CI and its linting being executed, as it might not offer additional value. GitLab offers two options to skip the CI on a commit/push: -- Add `[ci skip]` to your commit message ([details](https://docs.gitlab.com/ee/ci/pipelines/#skip-a-pipeline)). +1. Add `[ci skip]` to your commit message ([details](https://docs.gitlab.com/ee/ci/pipelines/#skip-a-pipeline)). **Note:** The string has to be removed before merging your feature branch into `develop`. -- Use the related git push option `git push -o ci.skip` ([details](https://docs.gitlab.com/ee/user/project/push_options.html#push-options-for-gitlab-cicd)). +2. Use the related git push option `git push -o ci.skip` ([details](https://docs.gitlab.com/topics/git/commit/#push-options)). ## Renovate