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/add-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Add issues to project
on:
issues:
types: [opened, reopened]
# The job authenticates with ADD_TO_PROJECT_PAT; GITHUB_TOKEN needs nothing.
permissions:
contents: read
jobs:
add-to-project:
runs-on: ubuntu-latest
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
push:
branches: [main]

permissions:
contents: read

concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
Expand All @@ -21,6 +24,10 @@ jobs:
changes:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: read
# dorny/paths-filter reads the PR's changed-file list via the API.
pull-requests: read
outputs:
code: ${{ steps.filter.outputs.code }}
engine: ${{ steps.filter.outputs.engine }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
tags: ["v*.*.*"]
workflow_dispatch: # allow manual re-runs without re-tagging

# Least-privilege default; the publish job grants itself id-token: write.
permissions:
contents: read

jobs:
build:
name: Build sdist + wheel
Expand Down
66 changes: 33 additions & 33 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading