Skip to content

testing additions whenever the script is not in the directory #7

testing additions whenever the script is not in the directory

testing additions whenever the script is not in the directory #7

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: |

Check failure on line 26 in .github/workflows/check-links.yaml

View workflow run for this annotation

GitHub Actions / Check Links

Invalid workflow file

The workflow is not valid. .github/workflows/check-links.yaml (Line: 26, Col: 14): Unrecognized named-value: 'jobs'. Located at position 1 within expression: jobs.link_check.uses
echo ${{jobs.link_check.uses}}
- name: Link Check
run: |
python3 ${{github.action_path}}/check_links.py
env:
LINK_IGNORE_LIST: https://www.sciencedirect.com,https://portlandpress.com
PAT: ${{ secrets.PAT }}