Skip to content

Commit 2e9adc3

Browse files
lice-reisclaude
andauthored
fix(ci): unify migration-compose issue label with migration-test (#259)
Follow-up to #256. The compose job's issue lifecycle was using a separate `migration-compose` label, fragmenting the issue list and the team's triage. Per review feedback after merge, the docker-compose job is just the migration test running in a different deployment environment — not a separate concern. Both jobs now share the `migration-test` label so failures fold into a single issue lifecycle. The compose failure body still mentions the docker-compose variant in plain text, so source is distinguishable on read. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 4ae53b9 commit 2e9adc3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/migration-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ jobs:
535535
const { data: existing } = await github.rest.issues.listForRepo({
536536
owner: context.repo.owner,
537537
repo: context.repo.repo,
538-
labels: 'migration-compose',
538+
labels: 'migration-test',
539539
state: 'open',
540540
});
541541
if (existing.length > 0) {
@@ -568,7 +568,7 @@ jobs:
568568
const { data: existing } = await github.rest.issues.listForRepo({
569569
owner: context.repo.owner,
570570
repo: context.repo.repo,
571-
labels: 'migration-compose',
571+
labels: 'migration-test',
572572
state: 'open',
573573
});
574574
const body = [
@@ -593,8 +593,8 @@ jobs:
593593
await github.rest.issues.create({
594594
owner: context.repo.owner,
595595
repo: context.repo.repo,
596-
title: 'Langflow Migration via docker-compose Failed (latest → nightly)',
596+
title: 'Langflow Migration Test Failed (latest → nightly)',
597597
body,
598-
labels: ['migration-compose', 'automated'],
598+
labels: ['migration-test', 'automated'],
599599
});
600600
}

0 commit comments

Comments
 (0)