From 70fd8201d5b666e3e8bfe8aa5cd7f7281bafc9da Mon Sep 17 00:00:00 2001 From: "Byungjin Park (Claud)" Date: Wed, 17 Dec 2025 15:11:09 +0900 Subject: [PATCH 1/3] Remove deprecated pull-request-labeler.yaml workflow --- .github/workflows/pull-request-labeler.yaml | 34 --------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/pull-request-labeler.yaml diff --git a/.github/workflows/pull-request-labeler.yaml b/.github/workflows/pull-request-labeler.yaml deleted file mode 100644 index e9ee45f..0000000 --- a/.github/workflows/pull-request-labeler.yaml +++ /dev/null @@ -1,34 +0,0 @@ -name: Label Pull Requests - -on: -- pull_request - -jobs: - label-pr: - runs-on: ubuntu-latest - - steps: - - name: Add Labels for PR - uses: actions/labeler@v4 - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" - configuration-path: .github/labeler.yaml - sync-labels: true - - - name: Add PR Size Labels for PR - uses: codelytv/pr-size-labeler@v1 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - xs_label: 'size/XS' - xs_max_size: '20' - s_label: 'size/S' - s_max_size: '50' - m_label: 'size/M' - m_max_size: '150' - l_label: 'size/L' - l_max_size: '300' - xl_label: 'size/XL' - fail_if_xl: 'false' - message_if_xl: > - 'This PR has too many changes. - Please make sure you are NOT addressing multiple issues with one PR.' From 366a06d0643ed72b7050abf46917610905a3a0f8 Mon Sep 17 00:00:00 2001 From: "Byungjin Park (Claud)" Date: Wed, 17 Dec 2025 15:11:11 +0900 Subject: [PATCH 2/3] Remove deprecated welcome.yaml workflow --- .github/workflows/welcome.yaml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/welcome.yaml diff --git a/.github/workflows/welcome.yaml b/.github/workflows/welcome.yaml deleted file mode 100644 index fdfd6be..0000000 --- a/.github/workflows/welcome.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: Welcome for First Issue or Pull Request - -on: - pull_request_target: - types: - - opened - issues: - types: - - opened - -jobs: - welcome: - runs-on: ubuntu-latest - - steps: - - name: Welcome for First Issue or Pull Request - uses: actions/first-interaction@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: | - ### :wave: Welcome! Looks like this is your first issue. - - Hey, thanks for your contribution! Please give us a bit of time to review it. 😄 - - **Be sure to follow the issue template!** - pr-message: | - ### :wave: Welcome! Looks like this is your first pull request. - - Hey, thanks for your contribution! Please give us a bit of time to review it. 😄 - - **Please check out our contributing guidelines.** From 65b95da5b10ded45b8c703ef04ecf027955efb4c Mon Sep 17 00:00:00 2001 From: "Byungjin Park (Claud)" Date: Wed, 17 Dec 2025 15:11:13 +0900 Subject: [PATCH 3/3] Remove deprecated sync-labels.yaml workflow --- .github/workflows/sync-labels.yaml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/sync-labels.yaml diff --git a/.github/workflows/sync-labels.yaml b/.github/workflows/sync-labels.yaml deleted file mode 100644 index 14e5652..0000000 --- a/.github/workflows/sync-labels.yaml +++ /dev/null @@ -1,26 +0,0 @@ -name: Sync labels - -on: - push: - branches: - - main - paths: - - .github/labels.yaml - workflow_dispatch: {} - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Sync labels - uses: crazy-max/ghaction-github-labeler@v5 - with: - github-otken: ${{ secrets.GITHUB_TOKEN }} - yaml-file: .github/labels.yaml - skip-delete: false - dry-run: false - # exclude: |