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 e72c558 commit ed2bc73Copy full SHA for ed2bc73
.github/workflows/dev_deploy.yml
@@ -0,0 +1,11 @@
1
+name: RoomGenie 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 == 'dev'
0 commit comments