From a37c48c6145f18526d14bfd31f720f07adb5c75f Mon Sep 17 00:00:00 2001 From: cl-o-lc Date: Fri, 25 Jul 2025 02:52:04 +0900 Subject: [PATCH 1/4] =?UTF-8?q?chore:=20PR=20=ED=85=9C=ED=94=8C=EB=A6=BF?= =?UTF-8?q?=20=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/pull_request_template.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/pull_request_template.md b/.github/ISSUE_TEMPLATE/pull_request_template.md new file mode 100644 index 0000000..42177e5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/pull_request_template.md @@ -0,0 +1,11 @@ +## ๐Ÿ“Œ ์ž‘์—… ๋‚ด์šฉ + +- ์–ด๋–ค ์ž‘์—…์„ ํ–ˆ๋Š”์ง€ ์„ค๋ช…ํ•ด ์ฃผ์„ธ์š” +- PR ์ œ๋ชฉ ์–‘์‹: [feature/#์ด์Šˆ๋ฒˆํ˜ธ] '๊ธฐ๋Šฅ ๋‚ด์šฉ ์ƒ์„ธ' +- PR Label์„ ๋ถ™์—ฌ์ฃผ์„ธ์š”. + +## ๐Ÿ“ธ ์Šคํฌ๋ฆฐ์ƒท + +## ๐Ÿ“ ๊ธฐํƒ€ + +- ๋ฆฌ๋ทฐ ์‹œ ์ฐธ๊ณ ํ•  ๋งŒํ•œ ์ถ”๊ฐ€ ๋‚ด์šฉ From 08cf57a504296000d8be58c363aad8f7c0e61732 Mon Sep 17 00:00:00 2001 From: cl-o-lc Date: Fri, 25 Jul 2025 02:58:16 +0900 Subject: [PATCH 2/4] =?UTF-8?q?chore:=20PR=EC=9D=84=20=EC=9E=91=EC=84=B1?= =?UTF-8?q?=EC=9E=90=EC=97=90=EA=B2=8C=20=EC=9E=90=EB=8F=99=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=ED=95=A0=EB=8B=B9=ED=95=98=EB=8A=94=20=EC=9B=8C?= =?UTF-8?q?=ED=81=AC=ED=94=8C=EB=A1=9C=EC=9A=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pull_request_template.md | 0 .github/workflows/assign-pr.yml | 24 +++++++++++++++++++ 2 files changed, 24 insertions(+) rename .github/{ISSUE_TEMPLATE => }/pull_request_template.md (100%) create mode 100644 .github/workflows/assign-pr.yml diff --git a/.github/ISSUE_TEMPLATE/pull_request_template.md b/.github/pull_request_template.md similarity index 100% rename from .github/ISSUE_TEMPLATE/pull_request_template.md rename to .github/pull_request_template.md diff --git a/.github/workflows/assign-pr.yml b/.github/workflows/assign-pr.yml new file mode 100644 index 0000000..0559829 --- /dev/null +++ b/.github/workflows/assign-pr.yml @@ -0,0 +1,24 @@ +name: 'Auto Assign Pull Request' + +on: + pull_request: + types: [opened] + +jobs: + auto-assign: + runs-on: ubuntu-latest + steps: + - name: 'Assign author to PR' + uses: actions/github-script@v7 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + script: | + const prAuthor = context.payload.pull_request.user.login; + const prNumber = context.payload.pull_request.number; + + await github.rest.issues.addAssignees({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: prNumber, + assignees: [prAuthor] + }); From 38879317e84bcfdf2765fc8cf06aafefa44b9ce6 Mon Sep 17 00:00:00 2001 From: cl-o-lc Date: Fri, 25 Jul 2025 03:13:13 +0900 Subject: [PATCH 3/4] =?UTF-8?q?chore:=20PR=20=ED=85=9C=ED=94=8C=EB=A6=BF?= =?UTF-8?q?=20=EC=A3=BC=EC=84=9D=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/pull_request_template.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 42177e5..a8202f3 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,11 +1,13 @@ ## ๐Ÿ“Œ ์ž‘์—… ๋‚ด์šฉ + + + - ์–ด๋–ค ์ž‘์—…์„ ํ–ˆ๋Š”์ง€ ์„ค๋ช…ํ•ด ์ฃผ์„ธ์š” -- PR ์ œ๋ชฉ ์–‘์‹: [feature/#์ด์Šˆ๋ฒˆํ˜ธ] '๊ธฐ๋Šฅ ๋‚ด์šฉ ์ƒ์„ธ' -- PR Label์„ ๋ถ™์—ฌ์ฃผ์„ธ์š”. ## ๐Ÿ“ธ ์Šคํฌ๋ฆฐ์ƒท ## ๐Ÿ“ ๊ธฐํƒ€ -- ๋ฆฌ๋ทฐ ์‹œ ์ฐธ๊ณ ํ•  ๋งŒํ•œ ์ถ”๊ฐ€ ๋‚ด์šฉ + + From 88e1a4aa20ec5816491d934246ba7cb70ef0bc96 Mon Sep 17 00:00:00 2001 From: cl-o-lc Date: Fri, 25 Jul 2025 03:23:33 +0900 Subject: [PATCH 4/4] =?UTF-8?q?chore:=20PR=EC=97=90=20=EB=8C=80=ED=95=9C?= =?UTF-8?q?=20=EA=B6=8C=ED=95=9C=20=EC=84=A4=EC=A0=95=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - PR ์ž‘์„ฑ ๊ถŒํ•œ์„ write๋กœ ์„ค์ • --- .github/workflows/assign-pr.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/assign-pr.yml b/.github/workflows/assign-pr.yml index 0559829..e4b0988 100644 --- a/.github/workflows/assign-pr.yml +++ b/.github/workflows/assign-pr.yml @@ -4,6 +4,9 @@ on: pull_request: types: [opened] +permissions: + pull-requests: write + jobs: auto-assign: runs-on: ubuntu-latest