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
20 changes: 20 additions & 0 deletions .github/workflows/dependabot.yml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Caller owns on:. Pin at @v2.
# Enable "Allow auto-merge" on the repository. This workflow does not approve.
# If branch protection requires reviews, add a ruleset bypass for dependabot
# or pass TOKEN (a PAT/App) that can enable auto-merge. Do not checkout the PR.
name: Dependabot

on:
pull_request:

permissions:
contents: write
pull-requests: write

jobs:
merge:
if: github.event.pull_request.user.login == 'dependabot[bot]'
permissions:
contents: write
pull-requests: write
uses: qntx/workflows/.github/workflows/ops-dependabot.yml@v2
7 changes: 6 additions & 1 deletion .github/workflows/python.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,8 +6,13 @@ on:
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
call-ci:
uses: qntx/workflows/.github/workflows/python.yml@main
uses: qntx/workflows/.github/workflows/ci-python.yml@v2
permissions:
contents: read
with:
python-version: '3.13'
9 changes: 7 additions & 2 deletions .github/workflows/python_publish.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,10 +5,15 @@ on:
tags:
- "v*.*.*"

permissions:
contents: read

jobs:
call-publish:
uses: qntx/workflows/.github/workflows/python-publish.yml@main
uses: qntx/workflows/.github/workflows/publish-pypi.yml@v2.0.0
permissions:
contents: read
with:
python-version: '3.13'
secrets:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN || secrets.PYPI_API_TOKEN }}
9 changes: 8 additions & 1 deletion .github/workflows/stale.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,6 +5,13 @@ on:
- cron: "30 1 * * *"
workflow_dispatch:

permissions:
issues: write
pull-requests: write

jobs:
close-stale:
uses: qntx/workflows/.github/workflows/stale.yml@main
uses: qntx/workflows/.github/workflows/ops-stale.yml@v2
permissions:
issues: write
pull-requests: write