Mirror of
0
fork

Configure Feed

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

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

[ci] sync template files

authored by

trueberryless and committed by
GitHub
5ab2e67d b1f1d2ca

+82
+34
.github/labeler.yaml
··· 1 + # See https://github.com/actions/labeler/tree/v5 2 + 3 + "๐Ÿšจ action": 4 + - changed-files: 5 + - any-glob-to-any-file: .github/workflows/** 6 + 7 + "๐Ÿ“ changeset": 8 + - changed-files: 9 + - any-glob-to-any-file: "**/.changeset/**.{md,mdx}" 10 + 11 + "๐Ÿšง config": 12 + - changed-files: 13 + - any-glob-to-any-file: "**/*config*.{js,ts,jsx,tsx,mjs,mts,json,yml,yaml,toml,cjs,cts}" 14 + 15 + "โœ’๏ธ documentation": 16 + - changed-files: 17 + - any-glob-to-any-file: "**/README.md" 18 + 19 + "๐ŸŒ i18n": 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*/**" 26 + 27 + "๐Ÿ“ฆ package": 28 + - changed-files: 29 + - any-glob-to-any-file: "**/packages/**" 30 + - any-glob-to-any-file: "**/package.json" 31 + 32 + "๐Ÿฏ styles": 33 + - changed-files: 34 + - any-glob-to-any-file: "**/*.{css,scss,sass,less,styl}"
+48
.github/workflows/labeler.yaml
··· 1 + name: "Pull Request Labeler" 2 + on: 3 + - pull_request_target 4 + 5 + jobs: 6 + labeler: 7 + permissions: 8 + contents: read 9 + pull-requests: write 10 + runs-on: ubuntu-latest 11 + steps: 12 + - uses: actions/checkout@v4 13 + - name: Ensure labels exist 14 + env: 15 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 16 + run: | 17 + gh label delete "bug" --yes || true 18 + gh label delete "documentation" --yes || true 19 + gh label delete "duplicate" --yes || true 20 + gh label delete "enhancement" --yes || true 21 + gh label delete "good first issue" --yes || true 22 + gh label delete "help wanted" --yes || true 23 + gh label delete "invalid" --yes || true 24 + gh label delete "question" --yes || true 25 + gh label delete "wontfix" --yes || true 26 + 27 + gh label create "๐Ÿšจ action" --description "Changes in GitHub workflows or actions" --color "A75AD5" --force 28 + gh label create "๐Ÿค– bot" --description "Automatically generated pull request" --color "0075CA" --force 29 + gh label create "๐Ÿ› bug" --description "Something isn't working" --color "D73A4A" --force 30 + gh label create "๐Ÿ“ changeset" --description "Contains changeset files" --color "304EF9" --force 31 + gh label create "๐Ÿšง config" --description "Configuration file updates" --color "C0ED4F" --force 32 + gh label create "โœ’๏ธ documentation" --description "Documentation updates, like README changes" --color "66741D" --force 33 + gh label create "๐Ÿ” duplicate" --description "This issue or pull request already exists" --color "008672" --force 34 + gh label create "โซ enhancement" --description "New feature or request" --color "3C11FD" --force 35 + gh label create "๐Ÿฅ‡ good first issue" --description "Good for newcomers" --color "7057FF" --force 36 + gh label create "๐Ÿ†˜ help wanted" --description "Extra attention is needed" --color "BFD4F2" --force 37 + gh label create "๐ŸŒ i18n" --description "Updates to internationalized docs, excluding English" --color "006B75" --force 38 + gh label create "๐Ÿ‘€ invalid" --description "This doesn't seem right" --color "E4E669" --force 39 + gh label create "๐Ÿš€ manifest" --description "Manifest-related changes" --color "96D3D7" --force 40 + gh label create "๐Ÿ“ฆ package" --description "Updates in package structure or package.json" --color "F34A37" --force 41 + gh label create "โ“ question" --description "Further information is requested" --color "D876E3" --force 42 + gh label create "๐Ÿฏ styles" --description "Stylesheets or design updates" --color "550F5A" --force 43 + gh label create "๐Ÿ”’ wontfix" --description "This will not be worked on" --color "FFFFFF" --force 44 + 45 + - uses: actions/labeler@v5 46 + with: 47 + configuration-path: .github/labeler.yaml 48 + sync-labels: true