Skip to content

Commit

Permalink
remove @dev
Browse files Browse the repository at this point in the history
  • Loading branch information
michalziolkowski committed Mar 27, 2024
1 parent 3eb8668 commit 7f6a60d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_sherlo_async.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
android_preview_build:
name: Prepare Android Preview Build
needs: [run_sherlo_async]
uses: sherlo-io/sherlo/.github/workflows/android_build.yml@dev
uses: sherlo-io/sherlo/.github/workflows/android_build.yml
with:
skip_build: ${{ github.event.inputs.skip_build || inputs.skip_build || github.event.label.name == 'sherlo:async:skip_build' }}
profile: 'preview'
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
ios_preview_build:
name: Prepare iOS Preview Build
needs: [run_sherlo_async]
uses: sherlo-io/sherlo/.github/workflows/ios_build.yml@dev
uses: sherlo-io/sherlo/.github/workflows/ios_build.yml
with:
skip_build: ${{ github.event.inputs.skip_build || inputs.skip_build || github.event.label.name == 'sherlo:async:skip_build' }}
profile: 'preview'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_sherlo_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
if: >
(github.event_name == 'pull_request' && github.event.action == 'labeled' && startsWith(github.event.label.name, 'sherlo:sync')) ||
(github.event_name != 'pull_request')
uses: sherlo-io/sherlo/.github/workflows/android_build.yml@dev
uses: sherlo-io/sherlo/.github/workflows/android_build.yml
with:
skip_build: ${{ github.event.inputs.skip_build || inputs.skip_build || github.event.label.name == 'sherlo:sync:skip_build' }}
profile: 'preview'
Expand All @@ -37,7 +37,7 @@ jobs:
if: >
(github.event_name == 'pull_request' && github.event.action == 'labeled' && startsWith(github.event.label.name, 'sherlo:sync')) ||
(github.event_name != 'pull_request')
uses: sherlo-io/sherlo/.github/workflows/ios_build.yml@dev
uses: sherlo-io/sherlo/.github/workflows/ios_build.yml
with:
skip_build: ${{ github.event.inputs.skip_build || inputs.skip_build || github.event.label.name == 'sherlo:sync:skip_build' }}
profile: 'preview'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,28 +27,28 @@ on:
jobs:
update_builds:
if: ${{ !github.event.inputs.skip_build || github.event_name == 'push' }}
uses: sherlo-io/sherlo/.github/workflows/update_builds.yml@dev
uses: sherlo-io/sherlo/.github/workflows/update_builds.yml
secrets: inherit
with:
profile: 'preview'

run_sherlo_sync_tests:
if: ${{ github.event.inputs.run_sherlo_sync_tests || github.event_name == 'push' }}
needs: [update_builds]
uses: sherlo-io/sherlo/.github/workflows/run_sherlo_sync.yml@dev
uses: sherlo-io/sherlo/.github/workflows/run_sherlo_sync.yml
secrets: inherit
with:
skip_build: true

run_sherlo_async_tests:
if: ${{ github.event.inputs.run_sherlo_async_tests || github.event_name == 'push' }}
needs: [update_builds]
uses: sherlo-io/sherlo/.github/workflows/run_sherlo_async.yml@dev
uses: sherlo-io/sherlo/.github/workflows/run_sherlo_async.yml
secrets: inherit
with:
skip_build: true

run_sherlo_eas_hooks_tests:
if: ${{ github.event.inputs.run_sherlo_eas_hooks_tests || github.event_name == 'push' }}
uses: sherlo-io/sherlo/.github/workflows/run_sherlo_eas_hooks.yml@dev
uses: sherlo-io/sherlo/.github/workflows/run_sherlo_eas_hooks.yml
secrets: inherit
4 changes: 2 additions & 2 deletions .github/workflows/update_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ on:

jobs:
android_build:
uses: ./.github/workflows/android_build.yml@dev
uses: ./.github/workflows/android_build.yml
secrets: inherit
with:
profile: ${{ github.event.inputs.profile || inputs.profile }}

ios_build:
uses: ./.github/workflows/ios_build.yml@dev
uses: ./.github/workflows/ios_build.yml
secrets: inherit
with:
profile: ${{ github.event.inputs.profile || inputs.profile }}
Expand Down

0 comments on commit 7f6a60d

Please sign in to comment.