Mirror of
0
fork

Configure Feed

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

Merge pull request #38 from trueberryless-org/update-template-files

authored by

Felix Schneider and committed by
GitHub
ccc8cfcf 15db4df6

+41 -39
+1
.github/CODEOWNERS
··· 1 + * @trueberryless
+32
.github/renovate.json
··· 1 + { 2 + "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 + "extends": [ 4 + ":disableDependencyDashboard", 5 + ":disablePeerDependencies", 6 + ":semanticPrefixFixDepsChoreOthers", 7 + ":ignoreModulesAndTests", 8 + "workarounds:all", 9 + "helpers:pinGitHubActionDigestsToSemver", 10 + "docker:disable" 11 + ], 12 + "rangeStrategy": "bump", 13 + "ignorePaths": ["**/node_modules/**"], 14 + "commitMessageSuffix": "[skip ci]", 15 + "packageRules": [ 16 + { 17 + "groupName": "github-actions", 18 + "matchManagers": ["github-actions"] 19 + }, 20 + { 21 + "matchManagers": ["npm"], 22 + "matchDepTypes": ["dependencies", "devDependencies"], 23 + "separateMajorMinor": true 24 + }, 25 + { 26 + "description": "Disable package manager version updates", 27 + "matchPackageNames": ["pnpm"], 28 + "matchDepTypes": ["packageManager"], 29 + "enabled": false 30 + } 31 + ] 32 + }
-31
.github/renovate.json5
··· 1 - { 2 - $schema: "https://docs.renovatebot.com/renovate-schema.json", 3 - extends: [ 4 - ":disableDependencyDashboard", 5 - ":semanticPrefixFixDepsChoreOthers", 6 - ":ignoreModulesAndTests", 7 - "workarounds:all", 8 - "helpers:pinGitHubActionDigestsToSemver", 9 - "docker:disable", 10 - ], 11 - rangeStrategy: "bump", 12 - ignorePaths: ["**/node_modules/**"], 13 - packageRules: [ 14 - { 15 - groupName: "github-actions", 16 - matchManagers: ["github-actions"], 17 - }, 18 - { 19 - matchManagers: ["npm"], 20 - groupName: "dependencies", 21 - matchDepTypes: ["devDependencies", "dependencies", "peerDependencies"], 22 - enabled: false, 23 - }, 24 - { 25 - description: "Disable package manager version updates", 26 - matchPackageNames: ["pnpm"], 27 - matchDepTypes: ["packageManager"], 28 - enabled: false, 29 - }, 30 - ], 31 - }
+4 -4
.github/workflows/deployment.yaml
··· 33 33 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 34 34 35 35 - name: Checkout Repo 36 - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 36 + uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 37 37 38 38 - name: Setup PNPM 39 39 uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 ··· 74 74 IMAGE_TAG: ${{ env.IMAGE_TAG }} 75 75 steps: 76 76 - name: Check out the repo 77 - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 77 + uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 78 78 79 79 - name: Read version from package.json 80 80 id: get_version ··· 98 98 contents: write 99 99 steps: 100 100 - name: Check out the repo 101 - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 101 + uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 102 102 with: 103 103 fetch-depth: 0 104 104 ··· 143 143 contents: write 144 144 steps: 145 145 - name: Check out the repo 146 - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 146 + uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 147 147 148 148 - id: extract-changelog 149 149 uses: sean0x42/markdown-extract@7b185cbe85263116bbf741e739e7198ba86465dc # v2.1.0
+2 -2
.github/workflows/format.yaml
··· 10 10 autofix: 11 11 runs-on: ubuntu-latest 12 12 steps: 13 - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 13 + - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 14 14 15 15 - name: Setup PNPM 16 16 uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 ··· 18 18 - name: Setup Node 19 19 uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 20 20 with: 21 - node-version: 20 21 + node-version: 20.19.5 22 22 cache: "pnpm" 23 23 24 24 - name: Install Dependencies
+1 -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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 19 + - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 20 20 - name: Ensure labels exist 21 21 env: 22 22 GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
+1 -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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 23 + - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 24 24 - name: Convert Repository Name to Title Case 25 25 id: convert_repo_name 26 26 run: |