Skip to content
Draft
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
6 changes: 6 additions & 0 deletions .github/workflows/lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,16 @@ on:
- main
- gh-pages

permissions: {}

jobs:
pre-commit:
permissions:
contents: read
uses: radiorabe/actions/.github/workflows/test-pre-commit.yaml@5dafb461cea1f8b296d89297dc6de7bd0891f0d2 # v0.44.2
pytest:
permissions:
contents: read
uses: radiorabe/actions/.github/workflows/test-python-poetry.yaml@5dafb461cea1f8b296d89297dc6de7bd0891f0d2 # v0.44.2
github-actions:
permissions:
Expand Down
14 changes: 13 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,22 @@ on:
release:
types: [created]

permissions: {}

jobs:
python-poetry:
permissions:
contents: write # Required to push the gh-pages branch for documentation deployment
contents: write # for publishing gh-pages with mkdocs (unused)
uses: radiorabe/actions/.github/workflows/release-python-poetry.yaml@5dafb461cea1f8b296d89297dc6de7bd0891f0d2 # v0.44.2
with:
deploy-mkdocs: false
secrets:
RABE_PYPI_TOKEN: ${{ secrets.RABE_PYPI_TOKEN }}
release-docs:
permissions:
contents: read
pages: write
id-token: write
uses: radiorabe/actions/.github/workflows/release-zensical.yaml@5dafb461cea1f8b296d89297dc6de7bd0891f0d2 # v0.44.2
with:
requirements: mkdocstrings mkdocstrings-python
6 changes: 5 additions & 1 deletion .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ on:
branches:
- main

permissions: {}

jobs:
call-workflow:
semantic-release:
permissions:
contents: read
uses: radiorabe/actions/.github/workflows/semantic-release.yaml@5dafb461cea1f8b296d89297dc6de7bd0891f0d2 # v0.44.2
secrets:
RABE_ITREAKTION_GITHUB_TOKEN: ${{ secrets.RABE_ITREAKTION_GITHUB_TOKEN }}
Loading