Skip to content
Open
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
31 changes: 26 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,34 +18,55 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
open-pull-requests-limit: 10
open-pull-requests-limit: 3
commit-message:
prefix: chore(deps)
groups:
flutter-dependencies:
patterns:
- "*"
- package-ecosystem: "pub"
directory: "/example" # Location of package manifests
schedule:
interval: "weekly"
open-pull-requests-limit: 10
open-pull-requests-limit: 3
commit-message:
prefix: chore(deps)
groups:
example-flutter-dependencies:
patterns:
- "*"
- package-ecosystem: "gradle"
directory: "/android" # Location of package manifests
schedule:
interval: "weekly"
open-pull-requests-limit: 10
open-pull-requests-limit: 3
commit-message:
prefix: chore(deps)
groups:
android-dependencies:
patterns:
- "*"
- package-ecosystem: "gradle"
directory: "/example/android" # Location of package manifests
schedule:
interval: "weekly"
open-pull-requests-limit: 10
open-pull-requests-limit: 3
commit-message:
prefix: chore(deps)
groups:
example-android-dependencies:
patterns:
- "*"
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
open-pull-requests-limit: 10
open-pull-requests-limit: 3
commit-message:
prefix: chore(deps)
groups:
actions-dependencies:
patterns:
- "*"

11 changes: 9 additions & 2 deletions .github/workflows/test-and-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@
name: Run tests and build
on:
pull_request:
paths-ignore:
- '**.md'
- 'LICENSE'
- '.github/workflows/analyze.yaml'
- '.github/workflows/licence-check.yaml'
- '.github/workflows/release-please.yml'
push:
branches:
- main
Expand Down Expand Up @@ -86,6 +92,7 @@ jobs:

test-ios:
name: Run iOS native unit tests
if: github.actor != 'dependabot[bot]'
timeout-minutes: 45
runs-on:
labels: macos-26-xlarge
Expand Down Expand Up @@ -172,7 +179,7 @@ jobs:
build-ios:
name: Build iOS
needs: [test-dart, test-ios]
if: contains(github.base_ref, 'main')
if: contains(github.base_ref, 'main') && github.actor != 'dependabot[bot]'
timeout-minutes: 90
runs-on:
labels: macos-26-xlarge
Expand Down Expand Up @@ -319,7 +326,7 @@ jobs:
integration-test-ios:
name: Run iOS Integration Tests
needs: [build-ios]
if: contains(github.base_ref, 'main')
if: contains(github.base_ref, 'main') && github.actor != 'dependabot[bot]'
timeout-minutes: 90
runs-on:
labels: macos-26-xlarge
Expand Down
Loading