Mirror of
0
fork

Configure Feed

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

ci: sync template files [skip ci] (#56)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Felix Schneider <99918022+trueberryless@users.noreply.github.com>

+14 -17
+5 -8
.github/labeler.yaml
··· 14 14 15 15 "✒️ documentation": 16 16 - changed-files: 17 - - any-glob-to-any-file: "**/README.md" 17 + - any-glob-to-any-file: ["**/docs/**", "**/README.md"] 18 18 19 19 "🌏 i18n": 20 20 - changed-files: 21 - - all-globs-to-any-file: ["**/docs/**", "!**/docs/en/**"] 22 - 23 - "🚀 manifest": 24 - - changed-files: 25 - - any-glob-to-any-file: "manifest*/**" 21 + - any-glob-to-any-file: 22 + - "**/docs/!(en)/" 23 + - "**/docs/[a-z][a-z]-[a-z][a-z]/**" 26 24 27 25 "📦 package": 28 26 - changed-files: 29 - - any-glob-to-any-file: "**/packages/**" 30 - - any-glob-to-any-file: "**/package.json" 27 + - any-glob-to-any-file: ["**/packages/**", "package.json"] 31 28 32 29 "🏯 styles": 33 30 - changed-files:
+4 -4
.github/workflows/format.yaml
··· 13 13 autofix: 14 14 runs-on: ubuntu-latest 15 15 steps: 16 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 16 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 17 17 with: 18 18 persist-credentials: false 19 19 20 20 - name: Setup PNPM 21 - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 21 + uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 22 22 23 23 - name: Setup Node 24 - uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 24 + uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 25 25 with: 26 26 node-version: ${{ env.NODE_VERSION }} 27 27 cache: "pnpm" ··· 39 39 shopt -s globstar 40 40 find . -name '*.png' -exec pngquant --ext .png 256 {} \; 41 41 42 - - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 42 + - uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8
+2 -2
.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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 19 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 20 20 with: 21 21 persist-credentials: false 22 22 - name: Ensure labels exist ··· 32 32 gh label delete "invalid" --yes || true 33 33 gh label delete "question" --yes || true 34 34 gh label delete "wontfix" --yes || true 35 + gh label delete "🚀 manifest" --yes || true 35 36 36 37 gh label create "🚨 action" --description "Changes in GitHub workflows or actions" --color "A75AD5" --force 37 38 gh label create "🤖 bot" --description "Automatically generated pull request" --color "0075CA" --force ··· 45 46 gh label create "🆘 help wanted" --description "Extra attention is needed" --color "BFD4F2" --force 46 47 gh label create "🌏 i18n" --description "Updates to internationalized docs, excluding English" --color "006B75" --force 47 48 gh label create "👀 invalid" --description "This doesn't seem right" --color "E4E669" --force 48 - gh label create "🚀 manifest" --description "Manifest-related changes" --color "96D3D7" --force 49 49 gh label create "📦 package" --description "Updates in package structure or package.json" --color "F34A37" --force 50 50 gh label create "❓ question" --description "Further information is requested" --color "D876E3" --force 51 51 gh label create "🏯 styles" --description "Stylesheets or design updates" --color "550F5A" --force
+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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 23 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 24 24 with: 25 25 persist-credentials: false 26 26 - name: Convert Repository Name to Title Case
+1 -1
README.md
··· 68 68 69 69 Licensed under the MIT license, Copyright © trueberryless. 70 70 71 - See [LICENSE](/LICENSE) for more information. 71 + See [LICENSE](https://github.com/trueberryless-org/release-image-generator/blob/main/LICENSE) for more information.
+1 -1
package.json
··· 1 1 { 2 2 "name": "release-image-generator", 3 3 "version": "0.5.0", 4 - "homepage": "https://github.com/trueberryless-org/release-image-generator", 4 + "homepage": "https://release-image-generator.trueberryless.org", 5 5 "bugs": { 6 6 "url": "https://github.com/trueberryless-org/release-image-generator/issues" 7 7 },