|
1 | | -name: "changesets-detect-add" |
2 | | -description: "changeset을 이용한 패키지 배포 플로우를 사용할 때, 해당 PR의 변경점을 파악하여 `.changeset` 하위에 변경된 파일을 기재할 수 있도록 유도하는 action 입니다." |
| 1 | +name: 'changesets-detect-add' |
| 2 | +description: 'Detect changes in the PR and add them to the changeset' |
3 | 3 | runs: |
4 | | - using: "node16" |
5 | | - main: "dist/index.js" |
| 4 | + using: 'node20' |
| 5 | + main: 'dist/index.js' |
6 | 6 | inputs: |
7 | 7 | github_token: |
8 | | - description: "get github token (필요하면 user의 PAT을 넣어주세요.)" |
| 8 | + description: 'github token to use for the action' |
9 | 9 | required: true |
10 | 10 | skip_branches: |
11 | | - description: "skip할 브랜치들을 적어주세요." |
| 11 | + description: 'branches to skip the action' |
12 | 12 | required: false |
13 | | - default: "master,main,develop" |
| 13 | + default: 'master,main,develop' |
14 | 14 | skip_label: |
15 | | - description: "해당 액션을 skip할 label의 이름을 적어주세요." |
| 15 | + description: 'add a label to skip the action' |
16 | 16 | required: false |
17 | | - default: "skip-detect-change" |
| 17 | + default: 'skip-detect-change' |
18 | 18 | packages_dir: |
19 | | - description: "변경을 탐지할 패키지들의 폴더명을 추가해주세요." |
| 19 | + description: 'add folder name to detect changes' |
20 | 20 | required: false |
21 | | - default: "packages,share" |
| 21 | + default: 'packages,share' |
22 | 22 | formatting_script: |
23 | | - description: ".changeset/*.md 파일 포매팅이 필요하다면 script 명령어를 추가해주세요" |
| 23 | + description: 'add a formatting script when needing to format the .changeset/*.md files' |
24 | 24 | required: false |
25 | 25 | excludes: |
26 | | - description: "제외할 경로" |
| 26 | + description: 'path to exclude when detecting changes' |
27 | 27 | required: false |
28 | | - default: ".github,.changeset" |
| 28 | + default: '.github,.changeset' |
29 | 29 | language: |
30 | | - description: "detect add comment의 언어 설정 (en, ko 중 하나를 설정해주세요.)" |
| 30 | + description: 'language to use for the changeset' |
31 | 31 | required: false |
32 | | - default: "en" |
| 32 | + default: 'en' |
0 commit comments