diff --git a/.github/workflows/check-all-urls.yml b/.github/workflows/check-all-urls.yml index f842f33..9ece3fe 100644 --- a/.github/workflows/check-all-urls.yml +++ b/.github/workflows/check-all-urls.yml @@ -24,19 +24,26 @@ jobs: steps: - uses: actions/checkout@v3 - # We maintain the list of the URLs excluded from checking in a separate file so that we can use + # We maintain the lists of the URLs and URL patterns excluded from checking in separate files so that we can use # it in multiple workflows, while easily maintaining consistency. - name: Read exclude-urls list - id: exclude + id: ex-urls uses: juliangruber/read-file-action@v1 with: path: ./.github/workflows/exclude-urls.txt +# + - name: Read exclude-urls list + id: ex-patterns + uses: juliangruber/read-file-action@v1 + with: + path: ./.github/workflows/exclude-patterns.txt - name: urls-checker uses: urlstechie/urlchecker-action@0.0.33 with: # Use common exclude list read in above - exclude_urls: ${{ steps.exclude.outputs.content }} + exclude_urls: ${{ steps.ex-urls.outputs.content }} + exclude_patterns: ${{ steps.ex-patterns.outputs.content }} timeout: 10 retry_count: 3 print_all: false diff --git a/.github/workflows/exclude-patterns.txt b/.github/workflows/exclude-patterns.txt new file mode 100644 index 0000000..29eac71 --- /dev/null +++ b/.github/workflows/exclude-patterns.txt @@ -0,0 +1 @@ +https://exascaleproject.zoomgov.com/meeting/register/,https://ecptr.webex.com/ecptr/onstage/,https://olcf.webex.com/olcf/,https://science-doe.zoomgov.com/webinar/register/ \ No newline at end of file diff --git a/.github/workflows/exclude-urls.txt b/.github/workflows/exclude-urls.txt index b42a690..3540469 100644 --- a/.github/workflows/exclude-urls.txt +++ b/.github/workflows/exclude-urls.txt @@ -1 +1 @@ -https://en.w \ No newline at end of file +https://www.isc-hpc.com/registration-2022.html,https://bit.ly/366iLeN,https://www.surveymonkey.com/r/WHFWHWQ/ \ No newline at end of file