{"id":16135647,"url":"https://github.com/thevickypedia/none-shall-pass","last_synced_at":"2026-01-04T08:12:36.082Z","repository":{"id":202926925,"uuid":"708430673","full_name":"thevickypedia/none-shall-pass","owner":"thevickypedia","description":"GitHub Action to validate hyperlinks in all markdown files","archived":false,"fork":false,"pushed_at":"2024-05-21T00:38:24.000Z","size":3087,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-02-19T12:12:26.948Z","etag":null,"topics":["github-action","hyperlink-auditing","rust-lang","rust-library"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/none-shall-pass","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thevickypedia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-22T14:45:38.000Z","updated_at":"2024-05-21T00:38:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"bdb06fe9-66ba-4195-8440-2c3a726d3dd5","html_url":"https://github.com/thevickypedia/none-shall-pass","commit_stats":null,"previous_names":["thevickypedia/none-shall-pass"],"tags_count":35,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thevickypedia%2Fnone-shall-pass","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thevickypedia%2Fnone-shall-pass/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thevickypedia%2Fnone-shall-pass/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thevickypedia%2Fnone-shall-pass/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thevickypedia","download_url":"https://codeload.github.com/thevickypedia/none-shall-pass/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244931713,"owners_count":20534024,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["github-action","hyperlink-auditing","rust-lang","rust-library"],"created_at":"2024-10-09T23:08:50.618Z","updated_at":"2026-01-04T08:12:36.015Z","avatar_url":"https://github.com/thevickypedia.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![made-with-gha](https://img.shields.io/badge/Made%20with-Github_Actions-black?style=for-the-badge\u0026logo=GitHub)][marketplace]\n\n[![pages](https://github.com/thevickypedia/none-shall-pass/actions/workflows/pages/pages-build-deployment/badge.svg)][pages]\n\n# None Shall Pass\n\n`none-shall-pass` is a GitHub action designed to identify and flag any broken links\nwithin markdown files in your repository and wiki pages.\n\n## Install Guide\n\n#### Add `none-shall-pass` action to your build workflow\n\n- In your GitHub repository, select the Actions tab and either add or edit a workflow.\n- Search for `none-shall-pass` from the [Marketplace][marketplace] tab on the right.\n- Copy and paste the yaml into your workflow.\n\n**[OR]**\n\nCopy \u0026 paste the following workflow definition into your project `.github/workflows/none-shall-pass.yml`\n\n```yaml\nname: Validate hyperlinks in markdown files\n\non:\n  push:\n  workflow_dispatch:\n\njobs:\n  none-shall-pass:\n    runs-on: ubuntu-latest  # Can run on multiple operating systems\n    steps:\n      - uses: thevickypedia/none-shall-pass@v5\n```\n\n- Commit your changes to trigger the workflow or run the workflow manually.\n\n### Action configuration options\n\nUse the options below to configure debug and fail state when broken links are found in the repository/wiki pages.\n\n- `debug` - If `true` debug level logging is enabled. _Defaults to `false`_\n- `owner` - Owner/Organization of the repository. _Defaults to current owner/org name_\n- `repo` - Name of the repository. _Defaults to current repository's name_\n- `excludeHostnames` - Space separated list of hostnames to ignore when failed. _Defaults to `\"\"`_\n- `failOnError` - If `true` (Default is `false`) the action will fail if broken links are found. _Defaults to `false`_\n\n\u003e `excludeHostnames` will perform a regex like lookup, so wildcards (*) are not required\u003cbr\u003e\n\n\u003e To exclude any URL with `amazon`/`amzn` in it simply specify,\u003cbr\u003e`excludeHostnames: \"amazon amzn\"`\n\n## [Release Notes][release-notes]\n**Requirement**\n```shell\npython -m pip install gitverse\n```\n\n**Usage**\n```shell\ngitverse-release reverse -f release_notes.rst -t 'Release Notes'\n```\n\n## [Docs][docs]\n**Requirement**\n```shell\npip install sphinx==5.1.1 sphinx-rtd-theme recommonmark requests\n```\n\n**Usage**\n```shell\nbash pre_commit.sh\n```\n\n## License \u0026 copyright\n\n\u0026copy; Vignesh Rao\n\nLicensed under the [MIT License][license]\n\n[marketplace]: https://github.com/marketplace/actions/none-shall-pass\n[license]: https://github.com/thevickypedia/none-shall-pass/blob/main/LICENSE\n[release-notes]: https://github.com/thevickypedia/none-shall-pass/blob/main/release_notes.rst\n[docs]: https://thevickypedia.github.io/none-shall-pass/\n[pages]: https://github.com/thevickypedia/none-shall-pass/actions/workflows/pages/pages-build-deployment\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthevickypedia%2Fnone-shall-pass","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthevickypedia%2Fnone-shall-pass","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthevickypedia%2Fnone-shall-pass/lists"}