Skip to content

Commit

Permalink
[refactor] #135 워크플로우 트리거 컨벤션 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ShapeKim98 committed Oct 5, 2024
1 parent 92e7ca7 commit 1f0d353
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/appstore_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ name: appstore-release

on:
pull_request:
branches: [ "main" ]
branches:
- main

jobs:
build:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ name: build-test

on:
pull_request:
branches: [ "develop" ]
branches:
- develop

workflow_dispatch:

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ name: release-update

on:
pull_request:
branches: [ "main" ]
types: [closed]
branches:
- main
types:
- closed

jobs:
release-update:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/testflight_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ name: testflight-release

on:
pull_request:
branches: [ "develop" ]
types: [closed]
branches:
- develop
types:
- closed

workflow_dispatch:

Expand Down

0 comments on commit 1f0d353

Please sign in to comment.