Skip to content

Numbered GCP list in README.md #6

Numbered GCP list in README.md

Numbered GCP list in README.md #6

Workflow file for this run

name: 'Check Links'
on:
workflow_call:
inputs:
directory:
required: false
type: string
repo_link_ignore_list:
required: true
type: string
secrets:
PAT:
required: false
push:
pull_request:
jobs:
link_check:
name: 'Link Check'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Link Check
run: |
python3 .github/workflows/check_links.py
env:
LINK_IGNORE_LIST: https://www.sciencedirect.com,https://portlandpress.com
PAT: ${{ secrets.PAT }}