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
6 changes: 6 additions & 0 deletions .github/workflows/android-cloud-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ on:
required: false
type: string
default: ""
FETCH_DEPTH:
description: "Number of commits to fetch. 0 indicates all history for all branches and tags. Set to 0 if Danger cannot find merge base."
required: false
type: number
default: 1

secrets:
GRADLE_CACHE_ENCRYPTION_KEY:
Expand All @@ -60,6 +65,7 @@ jobs:
uses: actions/checkout@v4
with:
lfs: ${{ inputs.USE_GIT_LFS }}
fetch-depth: ${{ inputs.FETCH_DEPTH }}
- name: Set up environment
uses: futuredapp/.github/.github/actions/android-setup-environment@main
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ios-kmp-selfhosted-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ on:
description: "Path to directory containing Fastfile. If not specified, uses iosApp. Example: iosApp/appA"
type: string
required: false
fetch_depth:
description: "Number of commits to fetch. 0 indicates all history for all branches and tags. Set to 0 if Danger cannot find merge base."
type: number
required: false
default: 1

secrets:
GRADLE_CACHE_ENCRYPTION_KEY:
Expand All @@ -65,6 +70,7 @@ jobs:
uses: actions/checkout@v4
with:
lfs: ${{ inputs.use_git_lfs }}
fetch-depth: ${{ inputs.fetch_depth }}
- name: Setup Java
uses: actions/setup-java@v4
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ios-selfhosted-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ on:
description: 'Job timeout in minutes'
type: number
default: 30
fetch_depth:
description: 'Number of commits to fetch. 0 indicates all history for all branches and tags. Set to 0 if Danger cannot find merge base.'
type: number
default: 1

secrets:
GITHUB_TOKEN_DANGER:
Expand All @@ -39,6 +43,7 @@ jobs:
uses: actions/checkout@v4
with:
lfs: ${{ inputs.use_git_lfs }}
fetch-depth: ${{ inputs.fetch_depth }}

- name: Fastlane Test
uses: futuredapp/.github/.github/actions/ios-fastlane-test@main
Expand Down