Skip to content

feat: voeg admin orphan-report en orphan-confirm toe #31

feat: voeg admin orphan-report en orphan-confirm toe

feat: voeg admin orphan-report en orphan-confirm toe #31

Workflow file for this run

name: Release
on:
push:
branches: [main]
permissions:
contents: write
jobs:
release:
name: Semantic Release
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, 'chore(release):')"
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
# RELEASE_TOKEN (a PAT with repo scope) is needed to push the
# version-bump commit through branch protection. Falls back to
# GITHUB_TOKEN which works when branch protection allows it.
token: ${{ secrets.RELEASE_TOKEN || secrets.GITHUB_TOKEN }}
- name: Configure git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python
run: uv python install 3.13
- name: Install python-semantic-release
run: uv tool install python-semantic-release
- name: Run semantic-release
env:
GH_TOKEN: ${{ secrets.RELEASE_TOKEN || secrets.GITHUB_TOKEN }}
run: semantic-release version --changelog --push --tag --vcs-release