Revert "URL auditor with URL fixes"

This reverts commit d07172cc0e.
This commit is contained in:
Daniel Wozniak 2023-12-17 23:13:40 -07:00
parent 5a517e9fa5
commit 21391fe7ba
3 changed files with 2 additions and 55 deletions

View file

@ -1,15 +0,0 @@
http://127.0.0.1
http://example.com
http://example.org
http://github.com
http://localhost
http://www.example.com
http://www.example.org
https://127.0.0.1
https://example.com
https://example.org
https://github.com
https://localhost
https://twitter.com/intent/follow?screen_name=Salt_Project_OS
https://www.example.com
https://www.example.org

View file

@ -1,38 +0,0 @@
name: URL validator
on: [push, pull_request]
jobs:
Pre-Commit:
name: Run brok Against Salt
runs-on: ubuntu-latest
container:
image: debian:buster-slim
steps:
- name: Install System Deps
run: |
apt-get update
apt-get install -y wget libtinfo5
- uses: actions/checkout@v2
- name: Get Date
id: get-date
run: |
echo "::set-output name=date::$(/bin/date -u "+%Y%m")"
shell: bash
- uses: actions/cache@v2
with:
path: .brokdb
key: ${{ hashFiles('.github/workflows/url-check.yml') }}-${{ hashFiles('.brokignore') }}-${{ steps.get-date.outputs.date }}
- name: Install brok
run: |
wget https://github.com/smallhadroncollider/brok/releases/download/1.1.0/brok-1.1.0_x86-64-linux.deb
dpkg -i brok-1.1.0_x86-64-linux.deb
- name: Run brok
run: |
brok --ignore $(cat .brokignore) $(find . -type f -name "*.rst") $(find . -type f -name "*.md") > /dev/null

View file

@ -83,8 +83,8 @@ served from the ``first`` repository.
.. code-block:: yaml
gitfs_remotes:
- https://example.com/repos/first.git
- https://example.com/repos/second.git
- https://mydomain.tld/repos/first.git
- https://mydomain.tld/repos/second.git
.. note::