From 21391fe7ba0910e098fb17657e1abe85f4144027 Mon Sep 17 00:00:00 2001 From: Daniel Wozniak Date: Sun, 17 Dec 2023 23:13:40 -0700 Subject: [PATCH] Revert "URL auditor with URL fixes" This reverts commit d07172cc0ef2693ede523f448c75436f586d7f72. --- .brokignore | 15 ------------- .github/workflows/url-check.yml | 38 -------------------------------- doc/ref/file_server/backends.rst | 4 ++-- 3 files changed, 2 insertions(+), 55 deletions(-) delete mode 100644 .brokignore delete mode 100644 .github/workflows/url-check.yml diff --git a/.brokignore b/.brokignore deleted file mode 100644 index 4d13ac912bb..00000000000 --- a/.brokignore +++ /dev/null @@ -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 diff --git a/.github/workflows/url-check.yml b/.github/workflows/url-check.yml deleted file mode 100644 index 8895b12fb2d..00000000000 --- a/.github/workflows/url-check.yml +++ /dev/null @@ -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 diff --git a/doc/ref/file_server/backends.rst b/doc/ref/file_server/backends.rst index 730a6e6c2dd..e47f3b228d8 100644 --- a/doc/ref/file_server/backends.rst +++ b/doc/ref/file_server/backends.rst @@ -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::