Links CI #5
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
| # This workflow checks all repository links once a week and creates an issue in case of errors. | |
| name: Links CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| paths: | |
| - 'README.ipynb' # Run only if README changes | |
| - '!**.ipynb' # Ignore changes in the .ipynb files (recursively) | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| jobs: | |
| linkChecker: | |
| uses: groda/gha-workflows/.github/workflows/link-check.yml@main | |
| with: | |
| issue-labels: "report, automated issue" |