Skip to content

Commit 08f8e50

Browse files
rustyconoverclaude
andcommitted
Rename repo to vgi-easter-python; fix CI concurrency collision
- Update badge/logo/project URLs to Query-farm/vgi-easter-python (the PyPI distribution name stays vgi-easter). - Scope the CI concurrency group by workflow and restrict the push trigger to main, so a tag-push CI run no longer shares a group with (and cancels) the CI that publish.yml calls for the same ref. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 7709912 commit 08f8e50

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,19 @@ name: CI
1010

1111
on:
1212
push:
13+
branches: [main]
1314
pull_request:
1415
workflow_dispatch:
1516
workflow_call:
1617

1718
permissions:
1819
contents: read
1920

21+
# Scope the group by workflow too: when publish.yml calls this reusable workflow
22+
# for a tag/ref, it must not share a group with (and cancel) a standalone CI run
23+
# on the same ref. `github.workflow` is the caller's name under workflow_call.
2024
concurrency:
21-
group: ci-${{ github.ref }}
25+
group: ci-${{ github.workflow }}-${{ github.ref }}
2226
cancel-in-progress: true
2327

2428
jobs:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<p align="center">
2-
<img src="https://raw.githubusercontent.com/Query-farm/vgi-easter/main/assets/vgi-logo.png" alt="Vector Gateway Interface" width="420">
2+
<img src="https://raw.githubusercontent.com/Query-farm/vgi-easter-python/main/assets/vgi-logo.png" alt="Vector Gateway Interface" width="420">
33
</p>
44

55
# vgi-easter
66

7-
[![CI](https://github.com/Query-farm/vgi-easter/actions/workflows/ci.yml/badge.svg)](https://github.com/Query-farm/vgi-easter/actions/workflows/ci.yml)
7+
[![CI](https://github.com/Query-farm/vgi-easter-python/actions/workflows/ci.yml/badge.svg)](https://github.com/Query-farm/vgi-easter-python/actions/workflows/ci.yml)
88
[![PyPI](https://img.shields.io/pypi/v/vgi-easter.svg)](https://pypi.org/project/vgi-easter/)
99
[![Python](https://img.shields.io/pypi/pyversions/vgi-easter.svg)](https://pypi.org/project/vgi-easter/)
1010
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ vgi-easter-http = "serve:main"
3434

3535
[project.urls]
3636
Homepage = "https://query.farm"
37-
Repository = "https://github.com/Query-farm/vgi-easter"
38-
Issues = "https://github.com/Query-farm/vgi-easter/issues"
37+
Repository = "https://github.com/Query-farm/vgi-easter-python"
38+
Issues = "https://github.com/Query-farm/vgi-easter-python/issues"
3939

4040
[build-system]
4141
requires = ["hatchling"]

0 commit comments

Comments
 (0)