Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: update GitHub template files (#39)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

authored by

trueberryless-org[bot]
github-actions[bot]
and committed by
GitHub
4f27223e e6844fc1

+25 -17
-1
.github/CODEOWNERS
··· 1 - * @trueberryless
+9 -4
.github/workflows/format.yaml
··· 6 6 permissions: 7 7 contents: read 8 8 9 + env: 10 + NODE_VERSION: 24.10.0 11 + 9 12 jobs: 10 13 autofix: 11 14 runs-on: ubuntu-latest 12 15 steps: 13 - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 16 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 17 + with: 18 + persist-credentials: false 14 19 15 20 - name: Setup PNPM 16 - uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 21 + uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 17 22 18 23 - name: Setup Node 19 - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 24 + uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 20 25 with: 21 - node-version: 22.19.0 26 + node-version: ${{ env.NODE_VERSION }} 22 27 cache: "pnpm" 23 28 24 29 - name: Install Dependencies
+3 -1
.github/workflows/labeler.yaml
··· 16 16 app_id: ${{ secrets.BOT_APP_ID }} 17 17 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 18 18 19 - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 19 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 20 + with: 21 + persist-credentials: false 20 22 - name: Ensure labels exist 21 23 env: 22 24 GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
+3 -1
.github/workflows/welcome-bot.yaml
··· 20 20 app_id: ${{ secrets.BOT_APP_ID }} 21 21 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 22 22 23 - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 23 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 24 + with: 25 + persist-credentials: false 24 26 - name: Convert Repository Name to Title Case 25 27 id: convert_repo_name 26 28 run: |
+1 -1
package.json
··· 59 59 "eslint": "^8.57.1", 60 60 "eslint-config-next": "14.2.4", 61 61 "postcss": "^8", 62 - "prettier": "3.5.3", 62 + "prettier": "3.6.2", 63 63 "prettier-plugin-astro": "0.14.1", 64 64 "tailwindcss": "^3.4.1", 65 65 "typescript": "^5"
+9 -9
pnpm-lock.yaml
··· 128 128 devDependencies: 129 129 '@trivago/prettier-plugin-sort-imports': 130 130 specifier: 5.2.2 131 - version: 5.2.2(prettier@3.5.3) 131 + version: 5.2.2(prettier@3.6.2) 132 132 '@types/node': 133 133 specifier: ^20 134 134 version: 20.14.9 ··· 148 148 specifier: ^8 149 149 version: 8.4.39 150 150 prettier: 151 - specifier: 3.5.3 152 - version: 3.5.3 151 + specifier: 3.6.2 152 + version: 3.6.2 153 153 prettier-plugin-astro: 154 154 specifier: 0.14.1 155 155 version: 0.14.1 ··· 2232 2232 resolution: {integrity: sha512-RiBETaaP9veVstE4vUwSIcdATj6dKmXljouXc/DDNwBSPTp8FRkLGDSGFClKsAFeeg+13SB0Z1JZvbD76bigJw==} 2233 2233 engines: {node: ^14.15.0 || >=16.0.0} 2234 2234 2235 - prettier@3.5.3: 2236 - resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} 2235 + prettier@3.6.2: 2236 + resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} 2237 2237 engines: {node: '>=14'} 2238 2238 hasBin: true 2239 2239 ··· 3575 3575 3576 3576 '@tanstack/table-core@8.19.2': {} 3577 3577 3578 - '@trivago/prettier-plugin-sort-imports@5.2.2(prettier@3.5.3)': 3578 + '@trivago/prettier-plugin-sort-imports@5.2.2(prettier@3.6.2)': 3579 3579 dependencies: 3580 3580 '@babel/generator': 7.27.5 3581 3581 '@babel/parser': 7.27.5 ··· 3583 3583 '@babel/types': 7.27.6 3584 3584 javascript-natural-sort: 0.7.1 3585 3585 lodash: 4.17.21 3586 - prettier: 3.5.3 3586 + prettier: 3.6.2 3587 3587 transitivePeerDependencies: 3588 3588 - supports-color 3589 3589 ··· 4945 4945 prettier-plugin-astro@0.14.1: 4946 4946 dependencies: 4947 4947 '@astrojs/compiler': 2.12.2 4948 - prettier: 3.5.3 4948 + prettier: 3.6.2 4949 4949 sass-formatter: 0.7.9 4950 4950 4951 - prettier@3.5.3: {} 4951 + prettier@3.6.2: {} 4952 4952 4953 4953 prop-types@15.8.1: 4954 4954 dependencies: