From d6f4502a7b61b1f7eab5914e799f008ce4689014 Mon Sep 17 00:00:00 2001 From: Nathan Zylbersztejn Date: Sat, 2 May 2026 09:50:40 +0200 Subject: [PATCH] chore: rename reusable workflow analyze.yml -> publish.yaml The reusable-workflow path is part of the public API once tagged. This renames before the v1 tag so the install snippet reads as 'znat/gitpulse/.github/workflows/publish.yaml@v1' and the workflow's own name becomes 'Gitpulse Publish' to better describe what it does end-to-end (analyze + build + publish to Pages). - .github/workflows/analyze.yml -> publish.yaml - self-deploy.yml updated to call the new path - README install snippet updated --- .github/workflows/{analyze.yml => publish.yaml} | 2 +- .github/workflows/self-deploy.yml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{analyze.yml => publish.yaml} (99%) diff --git a/.github/workflows/analyze.yml b/.github/workflows/publish.yaml similarity index 99% rename from .github/workflows/analyze.yml rename to .github/workflows/publish.yaml index 3c53488..e15ca38 100644 --- a/.github/workflows/analyze.yml +++ b/.github/workflows/publish.yaml @@ -1,4 +1,4 @@ -name: Gitpulse Analyze +name: Gitpulse Publish on: workflow_call: diff --git a/.github/workflows/self-deploy.yml b/.github/workflows/self-deploy.yml index 4146906..8823303 100644 --- a/.github/workflows/self-deploy.yml +++ b/.github/workflows/self-deploy.yml @@ -12,7 +12,7 @@ on: jobs: run: - uses: ./.github/workflows/analyze.yml + uses: ./.github/workflows/publish.yaml with: ai-protocol: openai ai-base-url: https://api.minimax.io/v1 diff --git a/README.md b/README.md index 661eada..01ea07d 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ permissions: jobs: analyze: - uses: znat/gitpulse/.github/workflows/analyze.yml@v1 + uses: znat/gitpulse/.github/workflows/publish.yaml@v1 secrets: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} ```