From 85e7709e90bfdfff7bdefea63b12d8a58778d478 Mon Sep 17 00:00:00 2001 From: "Patrick J. Roddy" Date: Tue, 21 May 2024 15:25:17 +0100 Subject: [PATCH] Add links checker (#370) --- .github/workflows/links.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/links.yaml diff --git a/.github/workflows/links.yaml b/.github/workflows/links.yaml new file mode 100644 index 00000000..f1f58fd9 --- /dev/null +++ b/.github/workflows/links.yaml @@ -0,0 +1,22 @@ +--- +name: Links + +on: + push: + branches: + - main + - renovate/** + pull_request: + +jobs: + links: + runs-on: ubuntu-latest + timeout-minutes: 2 + steps: + - name: Checkout source + uses: actions/checkout@v4 + + - name: Check links + uses: paddyroddy/.github/actions/links@v0 + with: + github-token: ${{ secrets.GITHUB_TOKEN }}