Skip to content

Commit

Permalink
fix(workflows): self-hosted로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
jminkkk committed Aug 5, 2024
1 parent 99e778e commit 92d6759
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
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: ubuntu-latest
runs-on: self-hosted
steps:
- name: Send Slack notification
env:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/pr_notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ on:
types: [opened, reopened]
jobs:
notify_reviewers:
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Slack 알람 보내기
env:
Expand Down Expand Up @@ -47,3 +45,4 @@ jobs:
else
echo "No reviewers to notify"
fi
4 changes: 1 addition & 3 deletions .github/workflows/review_notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ on:

jobs:
notify_pr_author:
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Send Slack notification
env:
Expand Down

0 comments on commit 92d6759

Please sign in to comment.