From 12181c8c1c7589e800499b1d9ec14a95db8bcadf Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 14:48:32 +0200 Subject: [PATCH 01/20] Added CodeQL check (manual run) --- .github/workflows/codeql.yml | 54 ++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..e6474db --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,54 @@ +name: "CodeQL" + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + # schedule: + # # einmal wöchentlich, unabhängig von Pushes/PRs (findet neue Advisories + # # für bereits vorhandene Codepfade, ohne dass sich der Code ändert) + # - cron: "23 4 * * 1" + workflow_dispatch: {} + # ermöglicht manuellen Start über Actions-Tab -> "Run workflow", + # unabhängig davon ob schedule/cron aktiv ist oder auskommentiert wurde + +jobs: + analyze: + name: Analyze (cpp) + runs-on: ubuntu-latest + permissions: + # Für das Hochladen der Ergebnisse in den "Security" Tab benötigt + security-events: write + packages: read + actions: read + contents: read + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Install build dependencies + run: | + sudo apt update + sudo apt -y install git g++ cmake make qt6-base-dev qt6-multimedia-dev libgl1-mesa-dev + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: cpp + # manueller Build-Mode: CodeQL beobachtet passiv den Build-Prozess + # unten (Tracing), statt selbst zu raten, wie CMake+Qt6 zu bauen ist + build-mode: manual + # queries: security-extended # optional: mehr Checks, mehr False Positives + + - name: Build (CMake, Debian/Ubuntu path) + run: | + mkdir build && cd build + cmake .. + make -j"$(nproc)" + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:cpp" From 6f7021d209a4202a99c2e0cbc8216de57016ee69 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 15:47:44 +0200 Subject: [PATCH 02/20] Disable push triggers in build workflow Comment out push triggers for main and master branches. --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f357139..418a1dd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,10 +1,10 @@ name: Build Rclone Browser on: - push: - branches: - - main - - master +# push: +# branches: +# - main +# - master workflow_dispatch: From e4a4012a7a3d89681db61a2e773bb8d107a70d92 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 15:48:12 +0200 Subject: [PATCH 03/20] Enable security-extended queries in CodeQL workflow Enable security-extended queries for CodeQL analysis. --- .github/workflows/codeql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e6474db..7f3c198 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -40,7 +40,7 @@ jobs: # manueller Build-Mode: CodeQL beobachtet passiv den Build-Prozess # unten (Tracing), statt selbst zu raten, wie CMake+Qt6 zu bauen ist build-mode: manual - # queries: security-extended # optional: mehr Checks, mehr False Positives + queries: security-extended # optional: mehr Checks, mehr False Positives - name: Build (CMake, Debian/Ubuntu path) run: | From 5105cd1ce6fdf607f5fe8a93efc1148e2c46a159 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 16:22:59 +0200 Subject: [PATCH 04/20] Update CodeQL queries for security and quality checks --- .github/workflows/codeql.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 7f3c198..f786520 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -40,7 +40,8 @@ jobs: # manueller Build-Mode: CodeQL beobachtet passiv den Build-Prozess # unten (Tracing), statt selbst zu raten, wie CMake+Qt6 zu bauen ist build-mode: manual - queries: security-extended # optional: mehr Checks, mehr False Positives + # queries: security-extended # optional: mehr Checks, mehr False Positives + queries: security-and-quality # optional: noch mehr Checks, mehr False Positives - name: Build (CMake, Debian/Ubuntu path) run: | From 92b27ee824ddae1c2ffd6ed1e1245b0822e4c841 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 16:29:04 +0200 Subject: [PATCH 05/20] Disable push and pull_request triggers in CodeQL workflow Commented out the push and pull_request triggers for the CodeQL workflow. --- .github/workflows/codeql.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f786520..c4161f5 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,10 +1,10 @@ name: "CodeQL" on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] + # push: + # branches: [ "master" ] + # pull_request: + # branches: [ "master" ] # schedule: # # einmal wöchentlich, unabhängig von Pushes/PRs (findet neue Advisories # # für bereits vorhandene Codepfade, ohne dass sich der Code ändert) From 49aa243ca7bafe994b0029d8a55c55450160768b Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 16:51:29 +0200 Subject: [PATCH 06/20] Update codeql.yml --- .github/workflows/codeql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index c4161f5..1ab4bff 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -41,7 +41,7 @@ jobs: # unten (Tracing), statt selbst zu raten, wie CMake+Qt6 zu bauen ist build-mode: manual # queries: security-extended # optional: mehr Checks, mehr False Positives - queries: security-and-quality # optional: noch mehr Checks, mehr False Positives + # queries: security-and-quality # optional: noch mehr Checks, mehr False Positives - name: Build (CMake, Debian/Ubuntu path) run: | From a0e09b2a3ae4260ad88b2b011a947804fb26c7fc Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:12:38 +0200 Subject: [PATCH 07/20] added dependabot for test --- .github/workflows/dependabot.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/dependabot.yml diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml new file mode 100644 index 0000000..eb4f2c9 --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,25 @@ +version: 2 +updates: + # GitHub Actions (checkout, codeql-action, upload-artifact, etc.) + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + commit-message: + prefix: "ci" + include: "scope" + + # Falls du Git Submodules nutzt (z. B. für rclone-Sources) + - package-ecosystem: "gitsubmodule" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 3 + + # Optional: CMake FetchContent (experimentell, aber harmlose Prüfung) + - package-ecosystem: "cmake" + directory: "/" + schedule: + interval: "monthly" + \ No newline at end of file From 6c62105d4036f009e8ab5001c38c38b0828dd4d6 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:17:09 +0200 Subject: [PATCH 08/20] Delete .github/workflows/dependabot.yml --- .github/workflows/dependabot.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/dependabot.yml diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml deleted file mode 100644 index eb4f2c9..0000000 --- a/.github/workflows/dependabot.yml +++ /dev/null @@ -1,25 +0,0 @@ -version: 2 -updates: - # GitHub Actions (checkout, codeql-action, upload-artifact, etc.) - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - open-pull-requests-limit: 5 - commit-message: - prefix: "ci" - include: "scope" - - # Falls du Git Submodules nutzt (z. B. für rclone-Sources) - - package-ecosystem: "gitsubmodule" - directory: "/" - schedule: - interval: "weekly" - open-pull-requests-limit: 3 - - # Optional: CMake FetchContent (experimentell, aber harmlose Prüfung) - - package-ecosystem: "cmake" - directory: "/" - schedule: - interval: "monthly" - \ No newline at end of file From 7fa24cb04d0b26233a32f521e2b15ffe25644ec1 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:17:35 +0200 Subject: [PATCH 09/20] Add files via upload --- .github/dependabot.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..eb4f2c9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,25 @@ +version: 2 +updates: + # GitHub Actions (checkout, codeql-action, upload-artifact, etc.) + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + commit-message: + prefix: "ci" + include: "scope" + + # Falls du Git Submodules nutzt (z. B. für rclone-Sources) + - package-ecosystem: "gitsubmodule" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 3 + + # Optional: CMake FetchContent (experimentell, aber harmlose Prüfung) + - package-ecosystem: "cmake" + directory: "/" + schedule: + interval: "monthly" + \ No newline at end of file From 67d8f742892a4c2c3cc61cff1fe02ccf5765fe82 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:18:22 +0200 Subject: [PATCH 10/20] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index eb4f2c9..841b504 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -22,4 +22,4 @@ updates: directory: "/" schedule: interval: "monthly" - \ No newline at end of file + From 1eeb4108a6d95d7aaf7c7ea381aba562ad866ebe Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:19:11 +0200 Subject: [PATCH 11/20] Fix formatting in dependabot.yml From 1617224ec892c6e72902863bdd2982c8b80a9819 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:21:49 +0200 Subject: [PATCH 12/20] Fix formatting in dependabot.yml --- .github/dependabot.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 841b504..0b84df9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -22,4 +22,3 @@ updates: directory: "/" schedule: interval: "monthly" - From 53b1dad95aaeff509809f1f9bb8a4fe926034cd6 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:24:25 +0200 Subject: [PATCH 13/20] Change Dependabot schedule to monthly --- .github/dependabot.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0b84df9..a26d0c4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,21 +4,19 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" + interval: "monthly" + day: "monday" + time: "04:00" open-pull-requests-limit: 5 commit-message: prefix: "ci" include: "scope" - # Falls du Git Submodules nutzt (z. B. für rclone-Sources) + # Git Submodules (falls du rclone oder andere Libs als Submodule hast) - package-ecosystem: "gitsubmodule" - directory: "/" - schedule: - interval: "weekly" - open-pull-requests-limit: 3 - - # Optional: CMake FetchContent (experimentell, aber harmlose Prüfung) - - package-ecosystem: "cmake" directory: "/" schedule: interval: "monthly" + day: "monday" + time: "04:00" + open-pull-requests-limit: 3 From 328f771d3078f0307df56d664ea1215d18c9af98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 15:26:08 +0000 Subject: [PATCH 14/20] ci(deps): bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 12 ++++++------ .github/workflows/codeql.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 418a1dd..b2c1b1f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Install Qt uses: jurplel/install-qt-action@v4 with: @@ -48,7 +48,7 @@ jobs: runs-on: windows-11-arm steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Install Qt (ARM64) uses: jurplel/install-qt-action@v4 with: @@ -80,7 +80,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Install Qt uses: jurplel/install-qt-action@v4 @@ -151,7 +151,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Install Qt uses: jurplel/install-qt-action@v4 with: @@ -180,7 +180,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Install Development Tools and Build Rclone Browser uses: vmactions/freebsd-vm@v1 with: @@ -206,7 +206,7 @@ jobs: needs: [build_windows, build_windows_arm64, build_linux, build_macos, build_freebsd] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Create artifact directory run: rm -rf /tmp/artifacts && mkdir /tmp/artifacts - uses: actions/download-artifact@v4 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1ab4bff..85234c4 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Install build dependencies run: | From 8d2888077be400101bc191649d58eb019420756f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 15:26:08 +0000 Subject: [PATCH 15/20] ci(deps): bump github/codeql-action from 3 to 4 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3 to 4. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1ab4bff..beb0151 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -34,7 +34,7 @@ jobs: sudo apt -y install git g++ cmake make qt6-base-dev qt6-multimedia-dev libgl1-mesa-dev - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: cpp # manueller Build-Mode: CodeQL beobachtet passiv den Build-Prozess @@ -50,6 +50,6 @@ jobs: make -j"$(nproc)" - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:cpp" From 4b391608762cf70e9d5b153a39d4b922867629c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 15:26:17 +0000 Subject: [PATCH 16/20] ci(deps): bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 418a1dd..630f8ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,7 +35,7 @@ jobs: cmake -A x64 -DCMAKE_CONFIGURATION_TYPES="Release" -DCMAKE_PREFIX_PATH="$env:QT_ROOT_DIR" .. cmake --build . --config Release & "$env:QT_ROOT_DIR\bin\windeployqt.exe" --no-translations --no-compiler-runtime --no-svg ".\build\Release\RcloneBrowser.exe" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: windows path: build\build\Release\* @@ -66,7 +66,7 @@ jobs: cmake -A ARM64 -DCMAKE_CONFIGURATION_TYPES="Release" -DCMAKE_PREFIX_PATH="$env:QT_ROOT_DIR" .. cmake --build . --config Release & "$env:QT_ROOT_DIR\bin\windeployqt.exe" --no-translations --no-compiler-runtime --no-svg ".\build\Release\RcloneBrowser.exe" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: windows-arm64 path: build\build\Release\* @@ -141,7 +141,7 @@ jobs: mkdir -p build/build mv ./*.AppImage "build/build/rclone-browser-${VERSION}-linux-x86_64.AppImage" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: linux path: build/build/*.AppImage @@ -170,7 +170,7 @@ jobs: cd build "$QT_ROOT_DIR/bin/macdeployqt" rclone-browser.app -executable="rclone-browser.app/Contents/MacOS/rclone-browser" mv rclone-browser.app Rclone\ Browser.app - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: macos path: build/build/* @@ -195,7 +195,7 @@ jobs: cmake .. make - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: freebsd path: build/build/* From 3f07f0b27c077abfb26476df3f4f797f87a81c7c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 15:26:25 +0000 Subject: [PATCH 17/20] ci(deps): bump actions/download-artifact from 4 to 8 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 418a1dd..87848e4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -209,7 +209,7 @@ jobs: - uses: actions/checkout@v4 - name: Create artifact directory run: rm -rf /tmp/artifacts && mkdir /tmp/artifacts - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: path: /tmp/artifacts - name: Compress artifacts From 292eafee06cec937b4cbf3f0fe53596735fbcf09 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:37:31 +0200 Subject: [PATCH 18/20] Remove Git Submodules configuration from dependabot.yml Removed Git Submodules configuration from Dependabot. --- .github/dependabot.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a26d0c4..ee47f6c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,12 +11,3 @@ updates: commit-message: prefix: "ci" include: "scope" - - # Git Submodules (falls du rclone oder andere Libs als Submodule hast) - - package-ecosystem: "gitsubmodule" - directory: "/" - schedule: - interval: "monthly" - day: "monday" - time: "04:00" - open-pull-requests-limit: 3 From 0790beb11910f8b0f29d22ff5eeb73cd0ffbbf76 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Sat, 15 Aug 2026 17:12:48 +0200 Subject: [PATCH 19/20] Enable push triggers for main and master branches --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 344f9e1..ab8b548 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,10 +1,10 @@ name: Build Rclone Browser on: -# push: -# branches: -# - main -# - master + push: + branches: + - main + - master workflow_dispatch: From 5493fd46f5b2220e445d5862fba2874614c2f997 Mon Sep 17 00:00:00 2001 From: hrpv <95209958+hrpv@users.noreply.github.com> Date: Sat, 15 Aug 2026 17:21:38 +0200 Subject: [PATCH 20/20] Format YAML for build workflow consistency --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab8b548..9a55c44 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,11 +1,11 @@ name: Build Rclone Browser on: - push: - branches: - - main - - master - + push: + branches: + - main + - master + workflow_dispatch: env: