We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 12efb60 + da35742 commit 32d7bbaCopy full SHA for 32d7bba
1 file changed
.github/workflows/dev_deploy.yml
@@ -0,0 +1,11 @@
1
+name: UMC Dev CI/CD // 여러분들 맘대로 이름 지으세요
2
+
3
+on:
4
+ pull_request:
5
+ types: [closed]
6
+ workflow_dispatch: # (2).수동 실행도 가능하도록
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest # (3).OS환경
11
+ if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'develop'
0 commit comments