Skip to content

merge#33

Merged
AJFrio merged 4 commits into
mainfrom
commit-build-to-main
Nov 4, 2025
Merged

merge#33
AJFrio merged 4 commits into
mainfrom
commit-build-to-main

Conversation

@AJFrio

@AJFrio AJFrio commented Nov 4, 2025

Copy link
Copy Markdown
Owner

No description provided.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread .github/workflows/build.yml Outdated
Comment on lines +39 to +45
- name: Commit worker bundle
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add dist/worker.bundle.js
git commit -m "Build: Update worker bundle [skip ci]" || exit 0
git push

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Skip committing worker bundle during pull_request runs

The new "Commit worker bundle" step unconditionally commits and pushes the generated dist/worker.bundle.js. However this workflow is triggered for both push and pull_request. On PR runs the checkout is a detached ref with a read‑only GITHUB_TOKEN, so git push will fail (“not on a branch” or permission denied) and the whole build will error even when the PR otherwise builds fine. This step needs an if guard so it only runs on writable refs (e.g. github.event_name == 'push') or it should be moved to a separate workflow.

Useful? React with 👍 / 👎.

@AJFrio
AJFrio merged commit 466cf91 into main Nov 4, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant