Open
Conversation
Bump workflow to v0.3.29 which uses GoCodeAlone/modular v1.12.0. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Rebuilds admin UI when @gocodealone/workflow-editor publishes a new version. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR migrates the modular dependency from CrisisTextLine/modular to GoCodeAlone/modular v1.12.3, bumps GoCodeAlone/workflow to v0.3.32, and adds a new sync-editor.yml GitHub Actions workflow to automatically rebuild and commit the embedded admin UI when an editor-release dispatch event is received.
Changes:
- Replaced
CrisisTextLine/modularimports withGoCodeAlone/modular(and sub-modules) ingo.mod/go.sum, along with transitive dependency bumps. - Bumped
GoCodeAlone/workflowfromv0.3.28tov0.3.32. - Added
.github/workflows/sync-editor.ymlCI workflow to listen foreditor-releaserepository dispatch events and update the embedded workflow-editor UI.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| go.mod | Migrated modular dependency to GoCodeAlone org; bumped workflow and transitive deps |
| go.sum | Updated checksums to match new dependency versions |
| .github/workflows/sync-editor.yml | New workflow: rebuilds admin UI on editor-release dispatch, commits and tags the result |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| - name: Commit and tag | ||
| run: | | ||
| EDITOR_VERSION="${{ github.event.client_payload.version }}" |
Comment on lines
+49
to
+56
| git config user.name "github-actions[bot]" | ||
| git config user.email "github-actions[bot]@users.noreply.github.com" | ||
| git add -A | ||
| git diff --cached --quiet && echo "No changes" && exit 0 | ||
| git commit -m "chore: sync editor to ${EDITOR_VERSION}" | ||
| git push | ||
| git tag "${EDITOR_VERSION}" | ||
| git push origin "${EDITOR_VERSION}" |
| - name: Build admin UI | ||
| run: | | ||
| cd /tmp/workflow-ui-build/ui | ||
| npm ci |
|
|
||
| - name: Clone workflow repo and update editor package | ||
| run: | | ||
| EDITOR_VERSION="${{ github.event.client_payload.version }}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
sync-editor.ymlCI workflow to listen foreditor-releasedispatch events and update the embedded workflow-editor UITest plan
🤖 Generated with Claude Code