Skip to content

Commit aa99972

Browse files
committed
fix: testing release flow
1 parent 179cd34 commit aa99972

7 files changed

+148
-148
lines changed

.github/workflows/create-expo-app-with-gluestack-ui.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name: Create Expo App with Gluestack UI
33
on:
44
push:
55
branches:
6-
# - main
7-
# - development
6+
- main
7+
- development
88
pull_request:
99
branches:
10-
# - main
11-
# - development
10+
- main
11+
- development
1212

1313
jobs:
1414
test:
@@ -30,21 +30,21 @@ jobs:
3030
- name: Testing
3131
working-directory: ${{ env.working-directory }}
3232
run: yarn test
33-
- name: Notify Success
34-
if: success()
35-
env:
36-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37-
uses: voxmedia/github-action-slack-notify-build@v1
38-
with:
39-
channel_id: C05HK6WEE56
40-
status: SUCCESS by @${{ github.actor}}
41-
color: good
42-
- name: Notify Failure
43-
if: failure()
44-
env:
45-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46-
uses: voxmedia/github-action-slack-notify-build@v1
47-
with:
48-
channel_id: C05HK6WEE56
49-
status: FAILED by @${{ github.actor}}
50-
color: danger
33+
# - name: Notify Success
34+
# if: success()
35+
# env:
36+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37+
# uses: voxmedia/github-action-slack-notify-build@v1
38+
# with:
39+
# channel_id: C05HK6WEE56
40+
# status: SUCCESS by @${{ github.actor}}
41+
# color: good
42+
# - name: Notify Failure
43+
# if: failure()
44+
# env:
45+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46+
# uses: voxmedia/github-action-slack-notify-build@v1
47+
# with:
48+
# channel_id: C05HK6WEE56
49+
# status: FAILED by @${{ github.actor}}
50+
# color: danger

.github/workflows/create-gluestack-v2-app.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name: Create Gluestack V2 App
33
on:
44
push:
55
branches:
6-
# - main
7-
# - development
6+
- main
7+
- development
88
pull_request:
99
branches:
10-
# - main
11-
# - development
10+
- main
11+
- development
1212

1313
jobs:
1414
test:
@@ -30,21 +30,21 @@ jobs:
3030
- name: Testing
3131
working-directory: ${{ env.working-directory }}
3232
run: yarn test
33-
- name: Notify Success
34-
if: success()
35-
env:
36-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37-
uses: voxmedia/github-action-slack-notify-build@v1
38-
with:
39-
channel_id: C05HK6WEE56
40-
status: SUCCESS by @${{ github.actor}}
41-
color: good
42-
- name: Notify Failure
43-
if: failure()
44-
env:
45-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46-
uses: voxmedia/github-action-slack-notify-build@v1
47-
with:
48-
channel_id: C05HK6WEE56
49-
status: FAILED by @${{ github.actor}}
50-
color: danger
33+
# - name: Notify Success
34+
# if: success()
35+
# env:
36+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37+
# uses: voxmedia/github-action-slack-notify-build@v1
38+
# with:
39+
# channel_id: C05HK6WEE56
40+
# status: SUCCESS by @${{ github.actor}}
41+
# color: good
42+
# - name: Notify Failure
43+
# if: failure()
44+
# env:
45+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46+
# uses: voxmedia/github-action-slack-notify-build@v1
47+
# with:
48+
# channel_id: C05HK6WEE56
49+
# status: FAILED by @${{ github.actor}}
50+
# color: danger

.github/workflows/create-next-app-with-gluestack-ui.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Use Node.js v18.x
2121
uses: actions/setup-node@v3
2222
with:
23-
node-version: "18.x"
23+
node-version: '18.x'
2424
- name: Install dependencies (prevent updates to lock file)
2525
working-directory: ${{ env.working-directory }}
2626
run: yarn
@@ -30,21 +30,21 @@ jobs:
3030
- name: Testing
3131
working-directory: ${{ env.working-directory }}
3232
run: yarn test
33-
- name: Notify Success
34-
if: success()
35-
env:
36-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37-
uses: voxmedia/github-action-slack-notify-build@v1
38-
with:
39-
channel_id: C05HK6WEE56
40-
status: SUCCESS by @${{ github.actor}}
41-
color: good
42-
- name: Notify Failure
43-
if: failure()
44-
env:
45-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46-
uses: voxmedia/github-action-slack-notify-build@v1
47-
with:
48-
channel_id: C05HK6WEE56
49-
status: FAILED by @${{ github.actor}}
50-
color: danger
33+
# - name: Notify Success
34+
# if: success()
35+
# env:
36+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37+
# uses: voxmedia/github-action-slack-notify-build@v1
38+
# with:
39+
# channel_id: C05HK6WEE56
40+
# status: SUCCESS by @${{ github.actor}}
41+
# color: good
42+
# - name: Notify Failure
43+
# if: failure()
44+
# env:
45+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46+
# uses: voxmedia/github-action-slack-notify-build@v1
47+
# with:
48+
# channel_id: C05HK6WEE56
49+
# status: FAILED by @${{ github.actor}}
50+
# color: danger

.github/workflows/create-react-native-app-with-gluestack-ui.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name: Create React Native App with Gluestack UI
33
on:
44
push:
55
branches:
6-
# - main
7-
# - development
6+
- main
7+
- development
88
pull_request:
99
branches:
10-
# - main
11-
# - development
10+
- main
11+
- development
1212

1313
jobs:
1414
test:
@@ -30,21 +30,21 @@ jobs:
3030
- name: Testing
3131
working-directory: ${{ env.working-directory }}
3232
run: yarn test
33-
- name: Notify Success
34-
if: success()
35-
env:
36-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37-
uses: voxmedia/github-action-slack-notify-build@v1
38-
with:
39-
channel_id: C05HK6WEE56
40-
status: SUCCESS by @${{ github.actor}}
41-
color: good
42-
- name: Notify Failure
43-
if: failure()
44-
env:
45-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46-
uses: voxmedia/github-action-slack-notify-build@v1
47-
with:
48-
channel_id: C05HK6WEE56
49-
status: FAILED by @${{ github.actor}}
50-
color: danger
33+
# - name: Notify Success
34+
# if: success()
35+
# env:
36+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37+
# uses: voxmedia/github-action-slack-notify-build@v1
38+
# with:
39+
# channel_id: C05HK6WEE56
40+
# status: SUCCESS by @${{ github.actor}}
41+
# color: good
42+
# - name: Notify Failure
43+
# if: failure()
44+
# env:
45+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46+
# uses: voxmedia/github-action-slack-notify-build@v1
47+
# with:
48+
# channel_id: C05HK6WEE56
49+
# status: FAILED by @${{ github.actor}}
50+
# color: danger

.github/workflows/create-ui-library-with-gluestack-ui.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name: Create UI Library with Gluestack UI
33
on:
44
push:
55
branches:
6-
# - main
7-
# - development
6+
- main
7+
- development
88
pull_request:
99
branches:
10-
# - main
11-
# - development
10+
- main
11+
- development
1212

1313
jobs:
1414
test:
@@ -30,21 +30,21 @@ jobs:
3030
- name: Testing
3131
working-directory: ${{ env.working-directory }}
3232
run: yarn test
33-
- name: Notify Success
34-
if: success()
35-
env:
36-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37-
uses: voxmedia/github-action-slack-notify-build@v1
38-
with:
39-
channel_id: C05HK6WEE56
40-
status: SUCCESS by @${{ github.actor}}
41-
color: good
42-
- name: Notify Failure
43-
if: failure()
44-
env:
45-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46-
uses: voxmedia/github-action-slack-notify-build@v1
47-
with:
48-
channel_id: C05HK6WEE56
49-
status: FAILED by @${{ github.actor}}
50-
color: danger
33+
# - name: Notify Success
34+
# if: success()
35+
# env:
36+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37+
# uses: voxmedia/github-action-slack-notify-build@v1
38+
# with:
39+
# channel_id: C05HK6WEE56
40+
# status: SUCCESS by @${{ github.actor}}
41+
# color: good
42+
# - name: Notify Failure
43+
# if: failure()
44+
# env:
45+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46+
# uses: voxmedia/github-action-slack-notify-build@v1
47+
# with:
48+
# channel_id: C05HK6WEE56
49+
# status: FAILED by @${{ github.actor}}
50+
# color: danger

.github/workflows/gluestack-ui.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name: Gluestack UI
33
on:
44
push:
55
branches:
6-
# - main
7-
# - development
6+
- main
7+
- development
88
pull_request:
99
branches:
10-
# - main
11-
# - development
10+
- main
11+
- development
1212

1313
jobs:
1414
test:
@@ -30,21 +30,21 @@ jobs:
3030
- name: Testing
3131
working-directory: ${{ env.working-directory }}
3232
run: yarn test
33-
- name: Notify Success
34-
if: success()
35-
env:
36-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37-
uses: voxmedia/github-action-slack-notify-build@v1
38-
with:
39-
channel_id: C05HK6WEE56
40-
status: SUCCESS by @${{ github.actor}}
41-
color: good
42-
- name: Notify Failure
43-
if: failure()
44-
env:
45-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46-
uses: voxmedia/github-action-slack-notify-build@v1
47-
with:
48-
channel_id: C05HK6WEE56
49-
status: FAILED by @${{ github.actor}}
50-
color: danger
33+
# - name: Notify Success
34+
# if: success()
35+
# env:
36+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37+
# uses: voxmedia/github-action-slack-notify-build@v1
38+
# with:
39+
# channel_id: C05HK6WEE56
40+
# status: SUCCESS by @${{ github.actor}}
41+
# color: good
42+
# - name: Notify Failure
43+
# if: failure()
44+
# env:
45+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46+
# uses: voxmedia/github-action-slack-notify-build@v1
47+
# with:
48+
# channel_id: C05HK6WEE56
49+
# status: FAILED by @${{ github.actor}}
50+
# color: danger

.github/workflows/utils.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Use Node.js v18.x
2121
uses: actions/setup-node@v3
2222
with:
23-
node-version: "18.x"
23+
node-version: '18.x'
2424
- name: Install dependencies (prevent updates to lock file)
2525
working-directory: ${{ env.working-directory }}
2626
run: yarn
@@ -30,21 +30,21 @@ jobs:
3030
- name: Testing
3131
working-directory: ${{ env.working-directory }}
3232
run: yarn test
33-
- name: Notify Success
34-
if: success()
35-
env:
36-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37-
uses: voxmedia/github-action-slack-notify-build@v1
38-
with:
39-
channel_id: C05HK6WEE56
40-
status: SUCCESS by @${{ github.actor}}
41-
color: good
42-
- name: Notify Failure
43-
if: failure()
44-
env:
45-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46-
uses: voxmedia/github-action-slack-notify-build@v1
47-
with:
48-
channel_id: C05HK6WEE56
49-
status: FAILED by @${{ github.actor}}
50-
color: danger
33+
# - name: Notify Success
34+
# if: success()
35+
# env:
36+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
37+
# uses: voxmedia/github-action-slack-notify-build@v1
38+
# with:
39+
# channel_id: C05HK6WEE56
40+
# status: SUCCESS by @${{ github.actor}}
41+
# color: good
42+
# - name: Notify Failure
43+
# if: failure()
44+
# env:
45+
# SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
46+
# uses: voxmedia/github-action-slack-notify-build@v1
47+
# with:
48+
# channel_id: C05HK6WEE56
49+
# status: FAILED by @${{ github.actor}}
50+
# color: danger

0 commit comments

Comments
 (0)