chore: Configures the CODEOWNERS file to use teams #17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Development workflow | |
on: | |
push: | |
branches: | |
- 'main' # runs the workflow, once new changes have been integrated to main | |
pull_request: | |
jobs: | |
check-links: | |
name: Check Links | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Check links | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
check-modified-files-only: 'yes' | |
base-branch: 'main' |