Dashboard › craft › Distillation
4d8d2e38-f604-486b-8273-d6f2840daa81["lore_tm_v1_MrQAOdBoVa8CAtC93--6x4t2kF-GdG17Xbemf9LhpW8","lore_tm_v1_Fy0tqLZfA08ENW51m9Vv5XpKTFyFyeJWkWHjwprkrzU","lore_tm_v1_Ap4wn0rGP_v73Vs6diAkCXWH0fTSC5hjMdlt60_xyO4","lore_tm_v1__t13V3GKoeTaEdLG58igBXULwinwo5eNsKEZrLCl0ho","lore_tm_v1_HMgAhqW4WAVCBaDaawkbE_8gvmPfgQViZVBSJC9lsDU"]
Date: Sep 8, 2026
actions/checkout workflow uses: .github/workflows/test.yml:19 uses actions/checkout@v6; .github/workflows/publish.yml:120 and :159 use actions/checkout@v6; .github/workflows/ci-poller.yml:52 uses actions/checkout@v7; .github/workflows/auto-approve.yml:16 uses actions/checkout@v4.yarn test in /home/byk/Code/getsentry/publish-workspace-acceptance ran yarn check:generated && vitest run; scripts/generate-publish-issue-title-parser.js --check passed, with 13 test files and 86 tests passing. Vitest v4.1.0 duration was 2.11s; Yarn completed in 3.55s.yarn lint ran eslint src .github --ignore-pattern '!.github' successfully in 0.99s..github/workflows/ci-poller.yml declares workflow_dispatch: at line 6 and gates processing with if: vars.CI_POLLER_HAS_PENDING == 'true' || github.event_name == 'workflow_dispatch' at line 24; its line-23 comment says manual workflow_dispatch is always allowed for recovery..github/workflows/publish.yml uses CI_POLLER_APP_CLIENT_ID and CI_POLLER_APP_PRIVATE_KEY, sets CI_POLLER_HAS_PENDING to "true", and triggers gh workflow run ci-poller.yml -R "$GITHUB_REPOSITORY" because GITHUB_TOKEN-originated workflow_dispatch events are suppressed.src/modules/__tests__/ci-poller-input.js defines REVISION = "7e5ca7ed5581552de066e2a8bc295b8306be38ac" and an issue body whose merge target is (default) and whose check-runs URL is https://github.com/getsentry/toolkit/commit/${REVISION}/checks/.src/modules/__tests__/ci-poller-input.js verifies getCiPollerInput() parses both title publish: getsentry/toolkit/cli@1.2.3 and full-path title publish: toolkit/packages/cli/v2@1.2.3 to { repo: "getsentry/toolkit", revision: REVISION, version: "1.2.3" }.src/modules/__tests__/ci-poller-input.js verifies .github/workflows/ci-poller.yml checks out the publish controller named "Check out publish controller" at path .__publish__, invokes node .__publish__/src/publish/resolve-ci-poller-input.js, and no longer contains grep -oP '(?<=commit/'.src/modules/__tests__/ci-poller-input.js verifies getCiPollerInput() rejects unsafe repository identities -toolkit, ., .., and __proto__ with "Invalid publish issue repository" before CI API calls.src/modules/__tests__/ci-poller-input.js verifies getCiPollerInput() rejects release versions --config and 1.2 with "Invalid publish issue version" before CI API calls.src/modules/__tests__/ci-poller-input.js verifies malformed repository-title inputs publish: getsentry/@1.2.3 and publish: getsentry/toolkit$@1.2.3 throw "Invalid publish issue title".src/modules/__tests__/ci-poller-input.js verifies unsafe publish-path titles publish: getsentry/toolkit/../other@1.2.3, publish: getsentry/toolkit/./other@1.2.3, publish: getsentry/toolkit/__proto__/other@1.2.3, and publish: getsentry/toolkit/--config@1.2.3 throw "Invalid publish issue path" before CI API calls.