We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56e8738 commit 25321beCopy full SHA for 25321be
.github/workflows/Backend-CI.yml
@@ -14,10 +14,7 @@ on:
14
# PR 생성 및 다시 오픈 시
15
opened, reopened,
16
# 최초 PR 제출 이후 작업 브랜치 push 발생 시
17
- synchronize,
18
- # pr 제목, 내용 수정 등 일체의 수정이 발생했을 때 트리거 되는데요.
19
- # 타켓 브랜치를 잘못 설정했을 때의 상황을 상정하여 설정입니다.
20
- edited
+ synchronize
21
]
22
23
# 대상 경로의 수정 사항이 있을 때 동작
@@ -32,7 +29,7 @@ on:
32
29
33
30
# 동일 브랜치에서 연속 실행 방지
34
31
concurrency:
35
- group: ${{ github.workflow}}-${{ github.ref }}-${{ github.event_name }}
+ group: backend-ci-${{ github.ref }}-${{ github.event.pull_request.number }}
36
cancel-in-progress: true
37
38
permissions:
@@ -43,7 +40,6 @@ permissions:
43
40
jobs:
44
41
backend-ci:
45
42
# 상단의 types 주석을 참고
46
- if: github.event.action != 'edited' || github.event.changes.base.ref
47
name: Backend CI
48
runs-on: ubuntu-latest
49
0 commit comments