From 4e8fe5a080fdce5ce87b92265cf8026b63b6e7e6 Mon Sep 17 00:00:00 2001 From: usuyuki <63891531+usuyuki@users.noreply.github.com> Date: Thu, 28 Mar 2024 10:28:09 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix=20labeler=E3=81=AE=E7=A0=B4=E5=A3=8A?= =?UTF-8?q?=E7=9A=84=E5=A4=89=E6=9B=B4=E5=AF=BE=E5=87=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/labeler.yml | 102 +++++++++++++++++++++++------------- .github/workflows/label.yml | 2 +- 2 files changed, 66 insertions(+), 38 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index c2525fb..8781042 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,53 +1,81 @@ 🗃components: - - src/lib/components/* + - changed-files: + - any-glob-to-any-file: + - src/lib/components/* 🧩types: - - frontend/src/lib/types/* + - changed-files: + - any-glob-to-any-file: + - frontend/src/lib/types/* ⚒utils: - - src/lib/utils/* + - changed-files: + - any-glob-to-any-file: + - src/lib/utils/* 📄pages: - - src/routes/* - - src/app.html - - src/error.html + - changed-files: + - any-glob-to-any-file: + - src/routes/* + - src/app.html + - src/error.html 🕵test: - - tests/* + - changed-files: + - any-glob-to-any-file: + - tests/* 🗺config: - - .env.example - - .eslintignore - - .eslintrc.cjs - - .gitattributes - - .gitignore - - .npmrc - - .prettierignore - - .prettierrc - - playwright-ct.config.ts - - playwright.config.ts - - postcss.config.cjs - - svelte.config.js - - tailwind.config.cjs - - tsconfig.json - - vite.config.ts + - changed-files: + - any-glob-to-any-file: + - .env.example + - .eslintignore + - .eslintrc.cjs + - .gitattributes + - .gitignore + - .npmrc + - .prettierignore + - .prettierrc + - playwright-ct.config.ts + - playwright.config.ts + - postcss.config.cjs + - svelte.config.js + - tailwind.config.cjs + - tsconfig.json + - vite.config.ts 🎁package: - - package.json - - pnpm-lock.yaml + - changed-files: + - any-glob-to-any-file: + - package.json + - pnpm-lock.yaml 👗static: - - static/* + - changed-files: + - any-glob-to-any-file: + - static/* 🐙github: - - .github/* + - changed-files: + - any-glob-to-any-file: + - .github/* 📄docs: - - README.md - - LICENSE + - changed-files: + - any-glob-to-any-file: + - README.md + - LICENSE # 細かい分類 ✈ci: - - .github/workflows/* - - .github/labeler.yml + - changed-files: + - any-glob-to-any-file: + - .github/workflows/* + - .github/labeler.yml 🖼layout: - - src/routes/**/+layout.svelte - - src/app.css + - changed-files: + - any-glob-to-any-file: + - src/routes/**/+layout.svelte + - src/app.css 🐟serverScript: - - src/routes/**/+page.server.ts - - src/lib/server/* - - src/hooks.server.js - - src/service-worker.js + - changed-files: + - any-glob-to-any-file: + - src/routes/**/+page.server.ts + - src/lib/server/* + - src/hooks.server.js + - src/service-worker.js 📱clientScript: - - src/hooks.client.js + - changed-files: + - any-glob-to-any-file: + - src/hooks.client.js diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index 12261e2..2c2642b 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -9,6 +9,6 @@ jobs: pull-requests: write steps: - - uses: actions/labeler@v4 + - uses: actions/labeler@v5 with: repo-token: '${{ secrets.USUYUKI_GITHUB_TOKEN }}' From 44b86543b9831492c7570e44adee98d4d7d765e3 Mon Sep 17 00:00:00 2001 From: usuyuki <63891531+usuyuki@users.noreply.github.com> Date: Thu, 28 Mar 2024 11:06:49 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix=20action=E7=B3=BB=E3=82=92=E3=81=BE?= =?UTF-8?q?=E3=81=A8=E3=82=81=E3=81=A6=E3=81=82=E3=81=92=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 4 ++-- .github/workflows/lint.yml | 10 +++++----- .github/workflows/staticAnalysis.yml | 10 +++++----- .github/workflows/testCombination.yml | 10 +++++----- .github/workflows/testIntegration.yml | 10 +++++----- .github/workflows/testUnit.yml | 10 +++++----- 6 files changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e4388dc..cddc55c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,9 +11,9 @@ jobs: runs-on: ubuntu-latest name: Deploy steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Publish - uses: cloudflare/wrangler-action@2.0.0 + uses: cloudflare/wrangler-action@3 with: workingDirectory: . apiToken: ${{ secrets.CF_API_TOKEN }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index be1b49f..8fb16fe 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,14 +11,14 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - - uses: pnpm/action-setup@v2 + - uses: pnpm/action-setup@v3 name: Install pnpm id: pnpm-install with: @@ -31,7 +31,7 @@ jobs: run: | echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} diff --git a/.github/workflows/staticAnalysis.yml b/.github/workflows/staticAnalysis.yml index 3c04db3..2508ee6 100644 --- a/.github/workflows/staticAnalysis.yml +++ b/.github/workflows/staticAnalysis.yml @@ -11,14 +11,14 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - - uses: pnpm/action-setup@v2 + - uses: pnpm/action-setup@v3 name: Install pnpm id: pnpm-install with: @@ -31,7 +31,7 @@ jobs: run: | echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} diff --git a/.github/workflows/testCombination.yml b/.github/workflows/testCombination.yml index e293a82..117898d 100644 --- a/.github/workflows/testCombination.yml +++ b/.github/workflows/testCombination.yml @@ -11,14 +11,14 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - - uses: pnpm/action-setup@v2 + - uses: pnpm/action-setup@v3 name: Install pnpm id: pnpm-install with: @@ -31,7 +31,7 @@ jobs: run: | echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} diff --git a/.github/workflows/testIntegration.yml b/.github/workflows/testIntegration.yml index ec4ec16..22918b8 100644 --- a/.github/workflows/testIntegration.yml +++ b/.github/workflows/testIntegration.yml @@ -11,14 +11,14 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - - uses: pnpm/action-setup@v2 + - uses: pnpm/action-setup@v3 name: Install pnpm id: pnpm-install with: @@ -31,7 +31,7 @@ jobs: run: | echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} diff --git a/.github/workflows/testUnit.yml b/.github/workflows/testUnit.yml index 8eaa030..6e57c55 100644 --- a/.github/workflows/testUnit.yml +++ b/.github/workflows/testUnit.yml @@ -11,14 +11,14 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - - uses: pnpm/action-setup@v2 + - uses: pnpm/action-setup@v3 name: Install pnpm id: pnpm-install with: @@ -31,7 +31,7 @@ jobs: run: | echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}