From ae16a3887b67d1006f2d28f46863d5316d30b6fe Mon Sep 17 00:00:00 2001 From: Corey Oordt Date: Tue, 31 Mar 2026 12:01:17 -0500 Subject: [PATCH] Standardize project naming, update keywords, and enhance GitHub Actions workflows. --- .github/workflows/bump-version-preview.yaml | 1 + .github/workflows/bump-version.yaml | 3 +++ pyproject.toml | 4 ++-- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bump-version-preview.yaml b/.github/workflows/bump-version-preview.yaml index 097af18..83330c3 100644 --- a/.github/workflows/bump-version-preview.yaml +++ b/.github/workflows/bump-version-preview.yaml @@ -8,6 +8,7 @@ on: permissions: contents: read pull-requests: write + id-token: write concurrency: version-preview-${{ github.ref }} diff --git a/.github/workflows/bump-version.yaml b/.github/workflows/bump-version.yaml index 95e5c6e..eadf422 100644 --- a/.github/workflows/bump-version.yaml +++ b/.github/workflows/bump-version.yaml @@ -10,6 +10,7 @@ jobs: if: github.event.pull_request.merged == true permissions: contents: write + id-token: write outputs: build_package: ${{ steps.bump-version.outputs.build_package }} tag_name: ${{ steps.bump-version.outputs.tag_name }} @@ -60,6 +61,8 @@ jobs: echo "build_package=false" >> $GITHUB_OUTPUT ;; esac + env: + GH_TOKEN: ${{ github.token }} call-build-python: needs: bump-version diff --git a/pyproject.toml b/pyproject.toml index 5055474..d4eb63c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["hatchling"] build-backend = "hatchling.build" [project] -name = "click_docs" +name = "click-docs" description = "Generate Markdown documentation for your Click application" classifiers = [ "Development Status :: 4 - Beta", @@ -22,7 +22,7 @@ classifiers = [ "Topic :: Software Development :: Documentation", "Topic :: Text Processing :: Markup :: Markdown", ] -keywords = ["click_docs"] +keywords = ["click", "documentation", "Markdown"] dynamic = ["version"] license = { file = "LICENSE" } requires-python = ">=3.10"