diff --git a/.github/workflows/check-translations.yml b/.github/workflows/check-translations.yml index 168312deeea99..4d1b03303925d 100644 --- a/.github/workflows/check-translations.yml +++ b/.github/workflows/check-translations.yml @@ -1,8 +1,8 @@ -name: "Check translations" +name: Check translations on: pull_request: - branches: [ master, stable-* ] + types: [opened, synchronize, reopened] # Declare default permissions as read only. permissions: read-all diff --git a/.github/workflows/clang-tidy-review.yml b/.github/workflows/clang-tidy-review.yml index 7a727059ca198..8fae80042c1e0 100644 --- a/.github/workflows/clang-tidy-review.yml +++ b/.github/workflows/clang-tidy-review.yml @@ -1,7 +1,8 @@ name: clang-tidy-review -# You can be more specific, but it currently only works on pull requests -on: [pull_request] +on: + pull_request: + types: [opened, synchronize, reopened] jobs: clang-tidy: diff --git a/.github/workflows/fixup.yml b/.github/workflows/fixup.yml index 9548d19f2d5cd..8348f897d0148 100644 --- a/.github/workflows/fixup.yml +++ b/.github/workflows/fixup.yml @@ -7,7 +7,7 @@ name: Block fixup and squash commits on: pull_request: - types: [opened, ready_for_review, reopened, synchronize] + types: [opened, synchronize, reopened] permissions: contents: read diff --git a/.github/workflows/generates_locales.yml b/.github/workflows/generates_locales.yml deleted file mode 100644 index 2c31b2ef5a312..0000000000000 --- a/.github/workflows/generates_locales.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: L10n -on: - push: - branches: - - master - paths: - - 'doc/**' - - '!doc/locale/**' -jobs: - generates_locales: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: ammaraskar/sphinx-action@master - with: - docs-folder: "doc/" - pre-build-command: pip install -r requirements.txt - build-command: make gettext - - uses: actions/checkout@v2 - - name: Commit report - run: | - git config --global user.name 'Nextcloud Bot' - git config --global user.email 'bot@nextcloud.com' - git commit -am "Updates catalog templates (POT files fetched automatically by transifex)" - git push \ No newline at end of file diff --git a/.github/workflows/macos-build-and-test.yml b/.github/workflows/macos-build-and-test.yml index a1bbe8d25b882..13c9b797e5d4b 100644 --- a/.github/workflows/macos-build-and-test.yml +++ b/.github/workflows/macos-build-and-test.yml @@ -1,13 +1,10 @@ name: macOS Build and Test on: - push: - branches: - - master pull_request: types: [opened, synchronize, reopened] jobs: build: - name: Build + name: macOS Build and Test runs-on: macos-latest env: CRAFT_TARGET: macos-64-clang diff --git a/.github/workflows/qml-label-check.yml b/.github/workflows/qml-label-check.yml index 2dae22c5c3066..e1ed3645445a9 100644 --- a/.github/workflows/qml-label-check.yml +++ b/.github/workflows/qml-label-check.yml @@ -1,13 +1,10 @@ name: QML Label component check on: - push: - branches: - - master pull_request: types: [opened, synchronize, reopened] jobs: build: - name: Build + name: QML Label component check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index 49af691d0d84d..af45730c636be 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -1,13 +1,10 @@ name: SonarCloud analysis on: - push: - branches: - - master pull_request: types: [opened, synchronize, reopened] jobs: build: - name: Build + name: SonarCloud analysis runs-on: ubuntu-22.04 container: ghcr.io/nextcloud/continuous-integration-client:client-5.15-14 env: diff --git a/.github/workflows/windows-build-and-test.yml b/.github/workflows/windows-build-and-test.yml index 7ba4ae864a743..706f3c0d533c4 100644 --- a/.github/workflows/windows-build-and-test.yml +++ b/.github/workflows/windows-build-and-test.yml @@ -1,13 +1,10 @@ name: Windows Build and Test on: - push: - branches: - - master pull_request: types: [opened, synchronize, reopened] jobs: build: - name: Build + name: Windows Build and Test runs-on: windows-2019 env: CRAFT_TARGET: windows-msvc2019_64-cl