Skip to content

Commit

Permalink
Merge pull request #448 from kyum-q/refactor/change-cd
Browse files Browse the repository at this point in the history
CD가 아닌 다른 actions들은 ubuntu-latest 사용으로 변경
  • Loading branch information
jminkkk authored Aug 16, 2024
2 parents 207a054 + abf8f3d commit 295c7d8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: self-hosted
runs-on: ubuntu-latest

steps:
- name: 체크아웃
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd_fail_notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
notify:
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: 변수 추출
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build-with-test:
runs-on: self-hosted
runs-on: ubuntu-latest
env:
frontend-directory: ./frontend
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
types: [opened, reopened]
jobs:
notify_reviewers:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: 변수 추출
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/review_notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
notify_pr_author:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: 변수 추출
run: |
Expand Down

0 comments on commit 295c7d8

Please sign in to comment.