diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-03-03 14:27:31 +0900 |
|---|---|---|
| committer | Sho Sakuma <me@m1sk9.dev> | 2026-03-03 14:27:31 +0900 |
| commit | 84893bc6c55ca5b21ee24870424e47eea7e36c90 (patch) | |
| tree | a873e002f5cec1ab0d926f65ff842b95f3fa6e5a /.github | |
| parent | 504317f0102c95da8411f3a886abb28179966bfb (diff) | |
| download | LunaticChat-84893bc6c55ca5b21ee24870424e47eea7e36c90.tar.gz LunaticChat-84893bc6c55ca5b21ee24870424e47eea7e36c90.tar.bz2 LunaticChat-84893bc6c55ca5b21ee24870424e47eea7e36c90.zip | |
ci: Address Copilot review feedback on docs workflow
- Add mise.toml to paths filter for build environment changes
- Add concurrency group to prevent racing deployments
- Remove unused deployments:write permission
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/docs.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 31d710b..4e00bf2 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -6,14 +6,17 @@ on: - main paths: - "docs/**" + - "mise.toml" workflow_dispatch: jobs: deploy: runs-on: ubuntu-24.04 + concurrency: + group: docs-${{ github.ref }} + cancel-in-progress: true permissions: contents: read - deployments: write defaults: run: working-directory: "./docs" |
