From 7ddf1a49cfea7a36a80759f51e091dc63f1042e4 Mon Sep 17 00:00:00 2001 From: Rohit Ghumare Date: Tue, 7 Jul 2026 11:12:12 +0100 Subject: [PATCH 1/2] ci: add devin to the Create Tag worker dropdown The devin worker is merged but was missing from the create-tag.yml worker choice list, so it could not be selected to cut a release tag. release.yml is tag-driven (parses devin/vX.Y.Z and reads iii.worker.yaml), so this dropdown was the only place that still needed the name. --- .github/workflows/create-tag.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/create-tag.yml b/.github/workflows/create-tag.yml index fa8641309..d9fcee155 100644 --- a/.github/workflows/create-tag.yml +++ b/.github/workflows/create-tag.yml @@ -13,6 +13,7 @@ on: - approval-gate - claude-code - codex + - devin - console - grok - context-manager From 724bd1f14af126e9205f0647f373350e8e349b34 Mon Sep 17 00:00:00 2001 From: Rohit Ghumare Date: Tue, 7 Jul 2026 11:23:23 +0100 Subject: [PATCH 2/2] ci: add devin/v* to the release tag trigger release.yml fires on an explicit per-worker tag list; devin/v* was missing, so a devin tag would create but never trigger the release. Pairs with the create-tag dropdown fix so devin is fully releasable. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 77f64f9d5..2e3b73d44 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,6 +8,7 @@ on: - 'approval-gate/v*' - 'claude-code/v*' - 'codex/v*' + - 'devin/v*' - 'console/v*' - 'grok/v*' - 'context-manager/v*'