Skip to content

Commit c5a84a5

Browse files
committed
chore: remove workflow changes
1 parent 0daf719 commit c5a84a5

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

.github/workflows/check-pr.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
- develop
77
- main
88
- 'v[0-9]+.[0-9]+.[0-9]+*beta*'
9-
- V7
109
types: [opened, synchronize]
1110

1211
jobs:

.github/workflows/lint-pr-title.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches:
66
- develop
77
- 'v[0-9]+.[0-9]+.[0-9]+'
8-
- V7
98
types: [opened, edited, synchronize]
109

1110
jobs:

.github/workflows/next-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- develop
7-
- V7
87

98
jobs:
109
publish-next:

.github/workflows/sample-distribution.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
build_and_deploy_ios_testflight_qa:
16-
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/V7' }}
16+
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/develop' }}
1717
runs-on: [macos-15]
1818
steps:
1919
- name: Connect Bot
@@ -38,14 +38,14 @@ jobs:
3838
bundle exec pod install
3939
- name: Build and release Testflight QA
4040
working-directory: examples/SampleApp
41-
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/V7' }};
41+
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/develop' }};
4242
env:
4343
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
4444
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
4545
APPSTORE_API_KEY: ${{ secrets.APPSTORE_API_KEY }}
4646

4747
build_and_deploy_android_s3:
48-
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/V7' }}
48+
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/develop' }}
4949
runs-on: ubuntu-latest
5050
steps:
5151
- uses: actions/checkout@v2
@@ -66,13 +66,13 @@ jobs:
6666
rm -rf $HOME/.gradle/caches/ && ./gradlew assembleRelease
6767
- name: Configure AWS credentials
6868
uses: aws-actions/configure-aws-credentials@v1
69-
if: ${{ github.ref == 'refs/heads/V7' }}
69+
if: ${{ github.ref == 'refs/heads/develop' }}
7070
with:
7171
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
7272
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
7373
aws-region: us-east-1
7474
- name: Upload APK
75-
if: ${{ github.ref == 'refs/heads/V7' }}
75+
if: ${{ github.ref == 'refs/heads/develop' }}
7676
# https://getstream.io/downloads/rn-sample-app.apk
7777
run: |
7878
cp examples/SampleApp/android/app/build/outputs/apk/release/app-release.apk rn-sample-app.apk

.github/workflows/sdk-size-metrics.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99
branches:
1010
- develop
1111
- main
12-
- V7
1312

1413
env:
1514
HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI

0 commit comments

Comments
 (0)