Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @github-community-projects/a11y
* @github/accessibility-reviewers
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
login_url: http://127.0.0.1:4000/
username: ${{ secrets.TEST_USERNAME }}
password: ${{ secrets.TEST_PASSWORD }}
repository: github-community-projects/continuous-ai-for-accessibility-scanner-testing
repository: github/accessibility-scanner-testing
token: ${{ secrets.GH_TOKEN }}
cache_key: ${{ steps.cache_key.outputs.cache_key }}

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Contributing

[fork]: https://github.com/github-community-projects/continuous-ai-for-accessibility-scanner/fork
[pr]: https://github.com/github-community-projects/continuous-ai-for-accessibility-scanner/compare
[fork]: https://github.com/github/accessibility-scanner/fork
[pr]: https://github.com/github/accessibility-scanner/compare

Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
accessibility_scanner:
runs-on: ubuntu-latest
steps:
- uses: github-community-projects/continuous-ai-for-accessibility-scanner@v1
- uses: github/accessibility-scanner@v1
with:
urls: | # Provide a newline-delimited list of URLs to scan; more information below.
REPLACE_THIS
Expand Down
2 changes: 1 addition & 1 deletion SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ For help or questions about using this project, please open an issue for support

## Project Maintenance Status

This repo `continuous-ai-for-accessibility-scanner` is under active development and maintained by GitHub staff during the public preview state. We will do our best to respond to support, feature requests, and community questions in a timely manner.
This repo `github/accessibility-scanner` is under active development and maintained by GitHub staff during the public preview state. We will do our best to respond to support, feature requests, and community questions in a timely manner.

## Important Notice

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "continuous-ai-for-accessibility-scanner"
name: "accessibility-scanner"
description: "Finds potential accessibility gaps, files GitHub issues to track them, and attempts to fix them with Copilot."

inputs:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "continuous-ai-for-accessibility-scanner",
"name": "accessibility-scanner",
"version": "0.0.0-development",
"description": "Finds potential accessibility gaps, files GitHub issues to track them, and attempts to fix them with Copilot",
"scripts": {
"test": "vitest run tests/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github-community-projects/continuous-ai-for-accessibility-scanner.git"
"url": "git+https://github.com/github/accessibility-scanner.git"
},
"author": "GitHub Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/github-community-projects/continuous-ai-for-accessibility-scanner/issues"
"url": "https://github.com/github/accessibility-scanner/issues"
},
"homepage": "https://github.com/github-community-projects/continuous-ai-for-accessibility-scanner#readme",
"homepage": "https://github.com/github/accessibility-scanner#readme",
"devDependencies": {
"@actions/core": "^1.11.1",
"@octokit/core": "^7.0.5",
Expand Down
2 changes: 1 addition & 1 deletion sites/site-with-errors/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.

title: Continuous Accessibility Scanner Demo
title: Accessibility Scanner Demo
email: noreply@github.com
description: >- # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
Expand Down
2 changes: 1 addition & 1 deletion tests/site-with-errors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ describe("site-with-errors", () => {
}, {
scannerType: "axe",
url: "http://127.0.0.1:4000/404.html",
html: '<li class="p-name">Continuous Accessibility Scanner Demo</li>',
html: '<li class="p-name">Accessibility Scanner Demo</li>',
problemShort: "elements must meet minimum color contrast ratio thresholds",
problemUrl: "https://dequeuniversity.com/rules/axe/4.10/color-contrast?application=playwright",
ruleId: "color-contrast",
Expand Down
Loading