├── .github └── FUNDING.yml ├── github-label-sync ├── README.md ├── update-all.sh └── github-labels.yml └── profile └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: 11ty 2 | github: 11ty 3 | -------------------------------------------------------------------------------- /github-label-sync/README.md: -------------------------------------------------------------------------------- 1 | # Sync GitHub Issue Labels 2 | 3 | * Uses https://github.com/Financial-Times/github-label-sync 4 | * Requires Node 12+ 5 | * Requires a [GitHub Access Token](https://github.com/settings/tokens) with the `repo` scope. 6 | 7 | Usage: 8 | 9 | ``` 10 | TOKEN=MY_GITHUB_TOKEN_VALUE ./update-all.sh 11 | ``` -------------------------------------------------------------------------------- /profile/README.md: -------------------------------------------------------------------------------- 1 | * Read the [documentation for the Eleventy site generator](https://www.11ty.dev/). 2 | * Please star [Eleventy on GitHub](https://github.com/11ty/eleventy/), follow [https://neighborhood.11ty.dev/@11ty](`@eleventy`) on Mastodon, and support [11ty on Open Collective](https://opencollective.com/11ty). 3 | 4 | | Social | Badge | 5 | | --- | --- | 6 | | Star on GitHub | ![Number of GitHub stars for 11ty/eleventy](https://img.shields.io/github/stars/11ty/eleventy?style=for-the-badge) | 7 | | Chat on Discord | ![Number of users online in Eleventy Discord](https://img.shields.io/discord/741017160297611315?style=for-the-badge) | 8 | | Subscribe on YouTube | [![Number of YouTube Channel subscribers](https://img.shields.io/youtube/channel/subscribers/UCskGTioqrMBcw8pd14_334A?style=for-the-badge)](https://www.youtube.com/channel/UCskGTioqrMBcw8pd14_334A) | 9 | | Subscribe to the [11ty Newsletter](https://buttondown.email/11ty) | | 10 | -------------------------------------------------------------------------------- /github-label-sync/update-all.sh: -------------------------------------------------------------------------------- 1 | # Warning: hit a rate limit of ~24 repos at a time, uncomment one line at a time 2 | # The core repo is intentionally not included below: "11ty/eleventy" 3 | 4 | REPOS=() 5 | 6 | # REPOS=("11ty/.github" "11ty/eleventy-img" "11ty/eleventy-fetch" "11ty/11ty-website" "11ty/demo-eleventy-img-netlify-cache" "11ty/api-screenshot" "11ty/eleventy-base-blog" "11ty/eleventy-plugin-syntaxhighlight" "11ty/eleventy-benchmark" "11ty/api-img" "11ty/api-indieweb-avatar" "11ty/api-opengraph-image" "11ty/eleventy-upgrade-help" "11ty/eleventy-plugin-vue" "11ty/eleventy-plugin-directory-output" "11ty/demo-eleventy-serverless" "11ty/eleventy-data-transistor-fm" "11ty/demo-eleventy-serverless-oauth" "11ty/api-explorer" "11ty/component-screenshot" "11ty/eleventy-navigation" "11ty/api-sparkline" "11ty/eleventy-dependency-tree" "11ty/eleventy-plugin-inclusive-language") 7 | 8 | # REPOS=("11ty/eleventy-plugin-rss" "11ty/11ty-logo" "11ty/eleventy-assets" "11ty/eleventy-import-disqus" "11ty/eleventy-community" "11ty/giffleball" "11ty/eleventy-inclusive-design-checklist") 9 | 10 | # REPOS=("11ty/eleventy-dev-server" "11ty/eleventy-utils" "11ty/mascot" "11ty/eleventy-server-browsersync" "11ty/eleventy-plugin-vite") 11 | 12 | # Usage: TOKEN=MY_GITHUB_TOKEN_VALUE ./update-all.sh 13 | for repo in "${REPOS[@]}"; do 14 | # See also --dry-run 15 | github-label-sync --allow-added-labels --access-token $TOKEN --labels github-labels.yml $repo 16 | done -------------------------------------------------------------------------------- /github-label-sync/github-labels.yml: -------------------------------------------------------------------------------- 1 | # From https://github.com/Financial-Times/github-label-sync 2 | - name: breaking change 3 | color: "ff6600" 4 | aliases: 5 | - breaking-change 6 | description: "This will have to be included with a major version as it breaks backwards compatibility." 7 | - name: favorite 8 | color: "90ef43" 9 | description: "Vanity label! The maintainer likes this enhancement request a lot." 10 | - name: stale 11 | color: "c5def5" 12 | - name: needs discussion 13 | color: "f4f963" 14 | aliases: 15 | - for-discussion 16 | - name: waiting to close 17 | color: "c2e0c6" 18 | description: "Issue that is probably resolved, waiting on OP confirmation." 19 | - name: good first issue 20 | color: "7057ff" 21 | description: "Good for newcomers." 22 | 23 | # Enhancement Queue (tied to existing README hyperlinks) 24 | - name: "enhancement" 25 | color: "84b6eb" 26 | - name: "needs-votes" 27 | color: "5319e7" 28 | 29 | # Types 30 | - name: chore 31 | color: "c5def5" 32 | aliases: 33 | - housekeeping 34 | - name: documentation 35 | color: "1d76db" 36 | - name: bug 37 | color: "ee0701" 38 | - name: "bug: dependency" 39 | color: "ee0701" 40 | - name: duplicate 41 | color: "cccccc" 42 | - name: education 43 | color: "0e8a16" 44 | - name: "npm-audit" 45 | color: "9e5edb" 46 | 47 | # Priorities 48 | - name: "priority: high" 49 | color: "da3e66" 50 | aliases: 51 | - high-priority 52 | - priority 53 | description: "Has some urgency!" 54 | - name: "priority: low" 55 | color: "da3e66" 56 | 57 | # Scopes 58 | - name: "scope: small" 59 | color: "fef2c0" 60 | - name: "scope: large" 61 | color: "fef2c0" 62 | 63 | # Blockers 64 | - name: on hold 65 | color: "e20fb8" 66 | aliases: 67 | - blocked 68 | - "on-hold" 69 | - needs-changes 70 | - name: needs test case 71 | color: "e20fb8" 72 | aliases: 73 | - having-trouble-reproducing 74 | - needs-test-case 75 | - name: open-question 76 | color: "e20fb8" 77 | aliases: 78 | - question 79 | description: "Further information is requested from the original poster." 80 | - name: pull-requested 81 | color: "e20fb8" 82 | description: "A pending pull request has been opened to fix this." 83 | 84 | # Environments 85 | - name: "env: windows" 86 | color: "1ad886" 87 | aliases: 88 | - windows --------------------------------------------------------------------------------