Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/all_url_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ name: all_url_check
schedule:
- cron: '30 2 * * *'

permissions:
contents: read

jobs:
run_lychee:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build_document.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ name: build_document
paths-ignore:
- 'generated/**'

permissions:
contents: read

env:
python_version: 3.8

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/check_shell_scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ name: check_shell_scripts
workflow_dispatch:
push:

permissions:
contents: read

jobs:
run_shellcheck:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/chktex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ name: latex_linter_check
paths-ignore:
- 'generated/**'

permissions:
contents: read

jobs:
run_chktex:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/md_link_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Check Markdown links

'on': [workflow_dispatch, push]

permissions:
contents: read

jobs:
markdown-link-check:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pdf_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ name: pdf_check
- 'generated/**'
- '.github/workflows/qpdf_check.yml'

permissions:
contents: read

jobs:
run_qpdf:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/python_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ name: python_test
schedule:
- cron: '50 14 * * 4'

permissions:
contents: read

jobs:
python_test:
runs-on: ${{matrix.os}}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/sonarcloud_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ name: sonarcloud_check
- master
pull_request:

permissions:
contents: read

jobs:
sonarcloud:
name: SonarCloud
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/yaml_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: yaml_check

'on': [workflow_dispatch, push]

permissions:
contents: read

jobs:
run_yamllint:
runs-on: ubuntu-latest
Expand Down
Loading