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/checksum_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
release:
types: [created]

permissions:
contents: read

jobs:
get-sha256:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
schedule:
- cron: '0 0 * * *' # Every day at 00:00 UTC

permissions:
contents: read

jobs:
doc:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
name: Draft JOSS PDF

permissions:
contents: read

on:
push:
paths:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/lint-format-check.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Lint, format and type check

permissions:
contents: read

on:
pull_request:
branches: [main]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pr-title-checker.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: PR Title Checker

permissions:
contents: read
pull-requests: read

on:
pull_request:
types: [opened, edited, synchronize, reopened]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
jobs:
test:
name: test
permissions:
contents: read
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -56,6 +58,8 @@ jobs:
build:
name: Build wheels for multiple Python versions
needs: test
permissions:
contents: read
runs-on: ubuntu-latest

steps:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Tests and Examples

permissions:
contents: read

on:
push:
pull_request:
Expand Down
Loading