From 1e289aeb01f784ffa8aed50e1d29dedd919eb7ae Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Tue, 18 Jun 2024 22:57:49 -0400 Subject: [PATCH] chore(muffet): ignore `dev.to` links seeing some test failure in https://github.com/runatlantis/atlantis/actions/runs/9573347588/job/26400183294 ``` http://localhost:8080/blog/2024/integrating-atlantis-with-opentofu.html 403 https://dev.to/jmateusousa/integrating-atlantis-with-opentofu-lnd ``` Signed-off-by: Rui Chen --- .github/workflows/website.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index aadce372d..147b6c4ae 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -88,6 +88,7 @@ jobs: - run: | ./muffet \ -e 'https://medium.com/runatlantis' \ + -e 'https://dev.to/*' \ -e 'https://twitter.com/*' \ -e 'https://github\.com/runatlantis/atlantis/edit/main/.*' \ -e 'https://github.com/runatlantis/helm-charts#customization' \