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
56 changes: 54 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,59 @@

version: 2
updates:
# The root manifest is the yarn workspace root, so this covers example/ too.
- package-ecosystem: "npm"
directory: "/"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
interval: "weekly"
open-pull-requests-limit: 3
cooldown:
default-days: 7
commit-message:
prefix: chore(deps)
groups:
npm-dependencies:
patterns:
- "*"
- package-ecosystem: "gradle"
directory: "/android" # Location of package manifests
schedule:
interval: "weekly"
open-pull-requests-limit: 3
cooldown:
default-days: 7
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: 3
cooldown:
default-days: 7
commit-message:
prefix: chore(deps)
groups:
example-android-dependencies:
patterns:
- "*"
# Composite actions live outside .github/workflows and need their own directory.
- package-ecosystem: "github-actions"
directories: # Location of package manifests
- "/"
- "/.github/actions/*"
schedule:
interval: "weekly"
open-pull-requests-limit: 3
cooldown:
default-days: 7
commit-message:
prefix: chore(deps)
groups:
actions-dependencies:
patterns:
- "*"
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ on:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- 'LICENSE'
- '.github/workflows/license-check.yaml'
- '.github/workflows/release-please.yml'
workflow_call:

jobs:
Expand Down Expand Up @@ -188,6 +193,7 @@ jobs:
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"

build-ios:
if: github.actor != 'dependabot[bot]'
runs-on:
labels: macos-26-xlarge
timeout-minutes: 45
Expand Down
Loading