Skip to content

Commit c0b1139

Browse files
author
w3c-validate-repos-bot
committed
Update report.json, rec-track-repos.json, hr-repos.json
1 parent b3d81b6 commit c0b1139

File tree

1 file changed

+92
-4
lines changed

1 file changed

+92
-4
lines changed

report.json

Lines changed: 92 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9884,7 +9884,7 @@
98849884
}
98859885
]
98869886
},
9887-
"timestamp": "2024-12-05T00:25:02.081Z",
9887+
"timestamp": "2024-12-06T00:23:54.681Z",
98889888
"repos": [
98899889
{
98909890
"id": "MDEwOlJlcG9zaXRvcnk4MTAyMTg2MA==",
@@ -32252,6 +32252,14 @@
3225232252
"name": "tag-tracker",
3225332253
"color": "7fff00"
3225432254
},
32255+
{
32256+
"name": "user research module",
32257+
"color": "50282B"
32258+
},
32259+
{
32260+
"name": "user research modules",
32261+
"color": "c5def5"
32262+
},
3225532263
{
3225632264
"name": "WAI website review",
3225732265
"color": "d93f0b"
@@ -74194,6 +74202,14 @@
7419474202
"isPrivate": false,
7419574203
"createdAt": "2023-07-04T11:58:00Z",
7419674204
"labels": [
74205+
{
74206+
"name": "a11y-needs-resolution",
74207+
"color": "ea7472"
74208+
},
74209+
{
74210+
"name": "a11y-tracker",
74211+
"color": "ea7472"
74212+
},
7419774213
{
7419874214
"name": "bug",
7419974215
"color": "d73a4a"
@@ -74218,14 +74234,46 @@
7421874234
"name": "help wanted",
7421974235
"color": "008672"
7422074236
},
74237+
{
74238+
"name": "i18n-needs-resolution",
74239+
"color": "F9C9FF"
74240+
},
74241+
{
74242+
"name": "i18n-tracker",
74243+
"color": "F9C9FF"
74244+
},
7422174245
{
7422274246
"name": "invalid",
7422374247
"color": "e4e669"
7422474248
},
74249+
{
74250+
"name": "privacy-needs-resolution",
74251+
"color": "d4af37"
74252+
},
74253+
{
74254+
"name": "privacy-tracker",
74255+
"color": "d4af37"
74256+
},
7422574257
{
7422674258
"name": "question",
7422774259
"color": "d876e3"
7422874260
},
74261+
{
74262+
"name": "security-needs-resolution",
74263+
"color": "ffff00"
74264+
},
74265+
{
74266+
"name": "security-tracker",
74267+
"color": "ffff00"
74268+
},
74269+
{
74270+
"name": "tag-needs-resolution",
74271+
"color": "7fff00"
74272+
},
74273+
{
74274+
"name": "tag-tracker",
74275+
"color": "7fff00"
74276+
},
7422974277
{
7423074278
"name": "wontfix",
7423174279
"color": "ffffff"
@@ -81508,7 +81556,7 @@
8150881556
"text": "{\n \"src_file\": \"index.bs\",\n \"type\": \"bikeshed\",\n \"params\": {\n \"force\": 1\n }\n}\n"
8150981557
},
8151081558
"autoPublish": {
81511-
"text": "# Workflow based on the main w3c/spec-prod action example:\n# https://github.com/w3c/spec-prod/#basic-usage\n#\n# Custom code added to generate the CDDL messages appendix for inclusion in the\n# generated specification file.\n\nname: Build, Validate, and Deploy\n\non:\n # Worflow runs on pull requests where it makes sure that the spec can still be\n # generated, that markup is valid and that there are no broken links, as\n # well as on pushes to the default branch where it also deploys the generated\n # spec to the gh-pages branch. The \"workflow_dispatch\" hook allows admins to\n # also trigger the workflow manually from GitHub's UI.\n pull_request: {}\n push:\n branches: [main]\n workflow_dispatch:\n\njobs:\n main:\n runs-on: ubuntu-latest\n steps:\n # See doc at https://github.com/actions/checkout/\n - name: Checkout repository\n uses: actions/checkout@v4\n\n # See doc at https://github.com/actions/setup-python/\n - name: Setup Python\n uses: actions/setup-python@v5\n with:\n python-version: 3.9\n\n - name: Install Python dependencies\n run: |\n python -m pip install --upgrade pip\n pip install Pygments\n\n # Note: the step actually generates all CDDL message pages, but the\n # w3c/spec-prod action cleans these files after each build, so we'll\n # have to generate them again each time.\n - name: Generate messages_appendix.html\n run: python scripts/pygmentize_dir.py\n\n # See doc at https://github.com/w3c/spec-prod/#spec-prod\n # The action only deploys the generated spec to the gh-pages branch when\n # the workflow was triggered by a push to the default branch.\n - name: Build and validate index.html, push to gh-pages branch if needed\n uses: w3c/spec-prod@v2\n with:\n GH_PAGES_BRANCH: gh-pages\n W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }}\n W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-secondscreen/2022Apr/0007.html\n W3C_BUILD_OVERRIDE: |\n status: WD\n\n - name: Generate application_messages.html\n run: python scripts/pygmentize_dir.py\n\n - name: Build and validate application.html, push to gh-pages branch if needed\n uses: w3c/spec-prod@v2\n with:\n SOURCE: application.bs\n TOOLCHAIN: bikeshed\n GH_PAGES_BRANCH: gh-pages\n W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_APPLICATION }}\n\n - name: Generate network_messages.html\n run: python scripts/pygmentize_dir.py\n\n - name: Build and validate network.html, push to gh-pages branch if needed\n uses: w3c/spec-prod@v2\n with:\n SOURCE: network.bs\n TOOLCHAIN: bikeshed\n GH_PAGES_BRANCH: gh-pages\n W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_NETWORK }}\n"
81559+
"text": "# Workflow based on the main w3c/spec-prod action example:\n# https://github.com/w3c/spec-prod/#basic-usage\n#\n# Custom code added to generate the CDDL messages appendix for inclusion in the\n# generated specification file.\n\nname: Build, Validate, and Deploy\n\non:\n # Worflow runs on pull requests where it makes sure that the spec can still be\n # generated, that markup is valid and that there are no broken links, as\n # well as on pushes to the default branch where it also deploys the generated\n # spec to the gh-pages branch. The \"workflow_dispatch\" hook allows admins to\n # also trigger the workflow manually from GitHub's UI.\n pull_request: {}\n push:\n branches: [main]\n workflow_dispatch:\n\njobs:\n main:\n runs-on: ubuntu-latest\n steps:\n # See doc at https://github.com/actions/checkout/\n - name: Checkout repository\n uses: actions/checkout@v4\n\n # See doc at https://github.com/actions/setup-python/\n - name: Setup Python\n uses: actions/setup-python@v5\n with:\n python-version: 3.9\n\n - name: Install Python dependencies\n run: |\n python -m pip install --upgrade pip\n pip install Pygments\n\n # Note: the step actually generates all CDDL message pages, but the\n # w3c/spec-prod action cleans these files after each build, so we'll\n # have to generate them again each time.\n - name: Generate messages_appendix.html\n run: python scripts/pygmentize_dir.py\n\n # See doc at https://github.com/w3c/spec-prod/#spec-prod\n # The action only deploys the generated spec to the gh-pages branch when\n # the workflow was triggered by a push to the default branch.\n - name: Build and validate index.html, push to gh-pages branch if needed\n uses: w3c/spec-prod@v2\n with:\n GH_PAGES_BRANCH: gh-pages\n\n - name: Generate application_messages.html\n run: python scripts/pygmentize_dir.py\n\n - name: Build and validate application.html, push to gh-pages branch if needed\n uses: w3c/spec-prod@v2\n with:\n SOURCE: application.bs\n TOOLCHAIN: bikeshed\n GH_PAGES_BRANCH: gh-pages\n W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_APPLICATION }}\n\n - name: Generate network_messages.html\n run: python scripts/pygmentize_dir.py\n\n - name: Build and validate network.html, push to gh-pages branch if needed\n uses: w3c/spec-prod@v2\n with:\n SOURCE: network.bs\n TOOLCHAIN: bikeshed\n GH_PAGES_BRANCH: gh-pages\n W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_NETWORK }}\n"
8151281560
},
8151381561
"travis": null,
8151481562
"contributing": {
@@ -100616,7 +100664,7 @@
100616100664
"body": "# Code of Conduct\n\nAll documentation, code, communication and discussion in this repository are covered by the [W3C Code of Conduct](https://www.w3.org/policies/code-of-conduct/).\n"
100617100665
},
100618100666
"readme": {
100619-
"text": "# W3C Security Interest Group\n\nThis GitHub repository serves the [W3C Security Interest Group](https://www.w3.org/groups/ig/security/). \n\n# Security Reviews\n\n* **Do you need a security review?** Open an [issue in the w3c/security-request repository](https://github.com/w3c/security-request/issues/new/choose)\n* **Would you like to do a security review?** Join us ([how to contribute](CONTRIBUTING.md)), read the [how to review](https://github.com/w3c/securityig/blob/main/administration/how-to-review.md), and look at our [backlog](https://github.com/w3c/security-request/issues)\n* Thanks our [Security Reviewers](https://www.w3.org/PM/horizontal/leaderboard.html?repo=Security)\n \n# Administration\n\n* [Administration](https://github.com/w3c/securityig/administration)\n* [Meetings](https://github.com/w3c/securityig/meetings)\n\n# Tools \n\n* [Chair Dashboard](https://www.w3.org/PM/Groups/chairboard.html?gid=ig/security)\n* [Horizontal Dashboard](https://www.w3.org/PM/horizontal/board.html?name=Security)\n* [Comment Tracker](https://www.w3.org/PM/horizontal/?repo=w3c/security-review)\n\n# Pages\n* [Contribution guidelines](CONTRIBUTING.md)\n* [Governance and roles](GOVERNANCE.md)\n* [Code of Conduct](CODE_OF_CONDUCT.md)\n\n<!--\n\n**Here are some ideas to get you started:**\n\n🙋‍♀️ A short introduction - what is your organization all about?\n🌈 Contribution guidelines - how can the community get involved?\n👩‍💻 Useful resources - where can the community find your docs? Is there anything else the community should know?\n🍿 Fun facts - what does your team eat for breakfast?\n🧙 Remember, you can do mighty things with the power of [Markdown](https://docs.github.com/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)\n-->\n"
100667+
"text": "# W3C Security Interest Group\n\nThis GitHub repository serves the [W3C Security Interest Group](https://www.w3.org/groups/ig/security/). \n\n# Security Reviews\n\n* **Do you need a security review?** Open an [issue in the w3c/security-request repository](https://github.com/w3c/security-request/issues/new/choose)\n* **Would you like to do a security review?** Join us ([how to contribute](CONTRIBUTING.md)), read the [how to review](https://github.com/w3c/securityig/blob/main/administration/how-to-review.md), and look at our [backlog](https://github.com/w3c/security-request/issues)\n* Thanks our [Security Reviewers](https://www.w3.org/PM/horizontal/leaderboard.html?repo=Security)\n \n# Administration\n\n* [Administration](https://github.com/w3c/securityig/administration)\n* [Meetings](https://github.com/w3c/securityig/meetings)\n\n# Tools \n* [Chair Dashboard](https://www.w3.org/PM/Groups/chairboard.html?gid=ig/security)\n* [Horizontal Dashboard](https://www.w3.org/PM/horizontal/board.html?name=Security)\n* [Comment Tracker](https://www.w3.org/PM/horizontal/?repo=w3c/security-review)\n* [Review Dashboard with a view issues for each Spec](https://www.w3.org/PM/horizontal/reviews.html)\n\n\n# Pages\n* [Contribution guidelines](CONTRIBUTING.md)\n* [Governance and roles](GOVERNANCE.md)\n* [Code of Conduct](CODE_OF_CONDUCT.md)\n\n<!--\n\n**Here are some ideas to get you started:**\n\n🙋‍♀️ A short introduction - what is your organization all about?\n🌈 Contribution guidelines - how can the community get involved?\n👩‍💻 Useful resources - where can the community find your docs? Is there anything else the community should know?\n🍿 Fun facts - what does your team eat for breakfast?\n🧙 Remember, you can do mighty things with the power of [Markdown](https://docs.github.com/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)\n-->\n"
100620100668
},
100621100669
"w3c": {
100622100670
"group": [
@@ -142400,6 +142448,14 @@
142400142448
"isPrivate": false,
142401142449
"createdAt": "2024-06-27T22:52:23Z",
142402142450
"labels": [
142451+
{
142452+
"name": "a11y-needs-resolution",
142453+
"color": "ea7472"
142454+
},
142455+
{
142456+
"name": "a11y-tracker",
142457+
"color": "ea7472"
142458+
},
142403142459
{
142404142460
"name": "bug",
142405142461
"color": "d73a4a"
@@ -142424,14 +142480,38 @@
142424142480
"name": "help wanted",
142425142481
"color": "008672"
142426142482
},
142483+
{
142484+
"name": "i18n-needs-resolution",
142485+
"color": "F9C9FF"
142486+
},
142487+
{
142488+
"name": "i18n-tracker",
142489+
"color": "F9C9FF"
142490+
},
142427142491
{
142428142492
"name": "invalid",
142429142493
"color": "e4e669"
142430142494
},
142495+
{
142496+
"name": "privacy-needs-resolution",
142497+
"color": "d4af37"
142498+
},
142499+
{
142500+
"name": "privacy-tracker",
142501+
"color": "d4af37"
142502+
},
142431142503
{
142432142504
"name": "question",
142433142505
"color": "d876e3"
142434142506
},
142507+
{
142508+
"name": "tag-needs-resolution",
142509+
"color": "7fff00"
142510+
},
142511+
{
142512+
"name": "tag-tracker",
142513+
"color": "7fff00"
142514+
},
142435142515
{
142436142516
"name": "wontfix",
142437142517
"color": "ffffff"
@@ -159698,6 +159778,14 @@
159698159778
"name": "Status: PR in review",
159699159779
"color": "58C8FA"
159700159780
},
159781+
{
159782+
"name": "tag-needs-resolution",
159783+
"color": "7fff00"
159784+
},
159785+
{
159786+
"name": "tag-tracker",
159787+
"color": "7fff00"
159788+
},
159701159789
{
159702159790
"name": "tc39-tracker",
159703159791
"color": "FBCA04"
@@ -161122,7 +161210,7 @@
161122161210
"license": null,
161123161211
"codeOfConduct": null,
161124161212
"readme": {
161125-
"text": "# Web Platform Gaps\n\nWhat are the big unmet user needs of the web platform?\n\nContent in [Issues](issues/).\n"
161213+
"text": "# Web Platform Gaps\n\nWhat are the big unmet user needs of the web platform?\n\nContent in [Issues](https://github.com/w3ctag/gaps/issues).\n"
161126161214
}
161127161215
},
161128161216
{

0 commit comments

Comments
 (0)