Skip to content

Commit

Permalink
chore: develop에 PR올릴 시 액션 돌아가도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Kjiw0n committed Jul 5, 2024
1 parent 7bca306 commit 1ed13f7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/gradle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ name: Front Deployment
on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop

jobs:
ci:
if: github.ref == 'refs/heads/develop'
if: github.event_name == 'pull_request' && github.ref == 'refs/heads/develop'
name: Build and Test for Develop
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 1ed13f7

Please sign in to comment.