We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a5c0e4 commit 3a13a0dCopy full SHA for 3a13a0d
1 file changed
.github/workflows/drafter.yaml
@@ -9,8 +9,12 @@ on:
9
- release # release 브랜치에 푸시될 때 실행
10
jobs:
11
build:
12
- #
13
- if: ${{ github.event.workflow_run.conclusion == 'success'}} # 이전 워크플로우가 성공적으로 완료된 경우에만 실행
+ # release에 push 되거나 || ecs 운영 배포 워크플로우가 성공적으로 완료된 경우에만 실행
+ if: |
14
+ github.event_name == 'push' ||
15
+ (github.event_name == 'workflow_run' &&
16
+ github.event.workflow_run.conclusion == 'success' &&
17
+ github.event.workflow_run.head_branch == 'release')
18
permissions:
19
contents: write
20
pull-requests: write
0 commit comments