Add List - Notification component #63
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ๊ธฐํธ์ ๋ง๊ฒ ๋ณ๊ฒฝํด์ฃผ์ธ์ | |
name: do not merge | |
on: | |
# Pull Request๊ฐ ์์ฑ๋์์๋, ์์ ๋์์๋, label์ด ๋ถ์ฐฉ/ํ์ฐฉ ๋์์๋ ์คํ๋ฉ๋๋ค. | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- labeled | |
- unlabeled | |
jobs: | |
pr_label_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: NaverPayDev/actions/pr/do-not-merge-action@main | |
with: | |
# github action ์คํ์ ์ํ ํ ํฐ์ ๋๋ค. | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# (optional) ๋ณํฉ ๋ฐฉ์ง ๋ผ๋ฒจ๋ช . ๊ธฐ๋ณธ ๊ฐ์ "๐ซ DO NOT MERGE" ์ ๋๋ค. | |
BLOCKER_LABEL_NAME: "๐ซ DO NOT MERGE" |