Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/block-unconventional-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: Block unconventional commits

on:
pull_request:
types: [opened, ready_for_review, reopened, synchronize]
types: [opened, reopened, synchronize, ready_for_review]

permissions:
contents: read
Expand All @@ -21,6 +21,7 @@ concurrency:

jobs:
block-unconventional-commits:
if: ${{ !github.event.pull_request.draft }}
name: Block unconventional commits

runs-on: ubuntu-latest-low
Expand All @@ -34,4 +35,3 @@ jobs:
- uses: webiny/action-conventional-commits@7f91b1595ca1951cdb671ddc9f07a49081ec5b69 # v1.4.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

4 changes: 3 additions & 1 deletion .github/workflows/check-translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ name: Check translations

on:
pull_request:
types: [opened, synchronize, reopened]
types: [opened, reopened, synchronize, ready_for_review]

# Declare default permissions as read only.
permissions: read-all

jobs:
checkGermanTranslations:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest

steps:
Expand All @@ -20,6 +21,7 @@ jobs:
[[ $(grep "Benötigt keine Übersetzung" translations/client_de.ts -c) -gt 0 ]] && exit 1 || exit 0

checkTranslations:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
container: ghcr.io/nextcloud/continuous-integration-translations-desktop:latest

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
name: Clang Format Checker
on:
pull_request:
types: [opened, synchronize, reopened]
types: [opened, reopened, synchronize, ready_for_review]
jobs:
build:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/clang-tidy-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ name: clang-tidy-review

on:
pull_request:
types: [opened, synchronize, reopened]
types: [opened, reopened, synchronize, ready_for_review]

jobs:
clang-tidy:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
container: ghcr.io/nextcloud/continuous-integration-client-qt6:client-sid-6.10.2-2
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fixup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: Block fixup and squash commits

on:
pull_request:
types: [opened, ready_for_review, reopened, synchronize]
types: [opened, reopened, synchronize, ready_for_review]

permissions:
contents: read
Expand All @@ -21,7 +21,7 @@ concurrency:

jobs:
commit-message-check:
if: github.event.pull_request.draft == false
if: ${{ !github.event.pull_request.draft }}

permissions:
pull-requests: write
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/linux-appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
name: Linux Appimage Package
on:
pull_request:
types: [opened, synchronize, reopened]
types: [opened, reopened, synchronize, ready_for_review]

jobs:
build:
if: ${{ !github.event.pull_request.draft }}
name: Linux Appimage Package
runs-on: ubuntu-latest
container: ghcr.io/nextcloud/continuous-integration-client-appimage-qt6:client-appimage-el8-6.10.2-4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/linux-clang-compile-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
name: Linux Clang compilation and tests
on:
pull_request:
types: [opened, synchronize, reopened]
types: [opened, reopened, synchronize, ready_for_review]
jobs:
build:
if: ${{ !github.event.pull_request.draft }}
name: Linux Clang compilation and tests
runs-on: ubuntu-latest
container: ghcr.io/nextcloud/continuous-integration-client-qt6:client-sid-6.10.2-2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/linux-gcc-compile-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
name: Linux GCC compilation and tests
on:
pull_request:
types: [opened, synchronize, reopened]
types: [opened, reopened, synchronize, ready_for_review]
jobs:
build:
if: ${{ !github.event.pull_request.draft }}
name: Linux GCC compilation and tests
runs-on: ubuntu-latest
container: ghcr.io/nextcloud/continuous-integration-client-qt6:client-sid-6.10.2-2
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/macos-craft-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ name: macOS CI

on:
pull_request:
types: [opened, synchronize, reopened]
types: [opened, reopened, synchronize, ready_for_review]

jobs:
setup_craft:
if: ${{ !github.event.pull_request.draft }}
name: Set up Craft and install dependencies
timeout-minutes: 60
runs-on: macos-15
Expand Down Expand Up @@ -91,6 +92,7 @@ jobs:


build:
if: ${{ !github.event.pull_request.draft }}
name: Build and test ${{ matrix.buildFileProviderModule == 'True' && 'File Provider' || 'classic' }} client
needs: setup_craft
strategy:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/nextcloudfileproviderkit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ on:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
types: [opened, reopened, synchronize, ready_for_review]

jobs:
Lint:
if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.draft }}
runs-on: macos-26

defaults:
Expand All @@ -25,6 +27,7 @@ jobs:
run: swiftformat --lint . --reporter github-actions-log

Tests:
if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.draft }}
runs-on: macos-26

defaults:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/qml-label-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
name: QML Label component check
on:
pull_request:
types: [opened, synchronize, reopened]
types: [opened, reopened, synchronize, ready_for_review]
jobs:
build:
if: ${{ !github.event.pull_request.draft }}
name: QML Label component check
runs-on: ubuntu-latest
steps:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/reuse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@

name: REUSE Compliance Check

on: [pull_request]
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]

permissions:
contents: read

jobs:
reuse-compliance-check:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest-low
steps:
- name: Checkout
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
name: SonarCloud analysis
on:
pull_request:
types: [opened, synchronize, reopened]
types: [opened, reopened, synchronize, ready_for_review]
jobs:
build:
if: ${{ !github.event.pull_request.draft }}
name: SonarCloud analysis
runs-on: [ubuntu-latest, self-hosted]
container: ghcr.io/nextcloud/continuous-integration-client-qt6:client-sid-6.10.2-2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/windows-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
name: Windows Build and Test
on:
pull_request:
types: [opened, synchronize, reopened]
types: [opened, reopened, synchronize, ready_for_review]
jobs:
build:
if: ${{ !github.event.pull_request.draft }}
name: Windows Build and Test
runs-on: windows-2022
env:
Expand Down
Loading