Skip to content

Commit

Permalink
[BE] 백엔드용 workflows와 프론트엔드용 workflow 분리하기 (#199) (#200)
Browse files Browse the repository at this point in the history
* refactor: pr_checker runs-on 속성 수정

* refactor: push_builder runs-on 속성 수정
  • Loading branch information
pjy1368 authored Jul 19, 2021
1 parent c10c99b commit ce59629
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr_checker.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Darass PR Checker
name: Darass PR Checker [BE]

on:
pull_request:
Expand All @@ -10,7 +10,7 @@ on:
jobs:
build:

runs-on: self-hosted
runs-on: [ self-hosted, backend ]

steps:
- name: Checkout code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push_builder.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Darass Push Builder
name: Darass Push Builder [BE]

on:
push:
Expand All @@ -10,7 +10,7 @@ on:
jobs:
deploy:

runs-on: self-hosted
runs-on: [ self-hosted, backend ]

steps:
- name: Checkout code
Expand Down

0 comments on commit ce59629

Please sign in to comment.