[WIP] Fix failing GitHub Actions job Lint Gate#32004
Merged
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR aims to resolve a failing CI “Lint Gate” job, and includes both a formatting change in the JS test suite plus a large regeneration/update of an auto-generated workflow lock file.
Changes:
- Updated
create_pull_request.test.cjsformatting in the bundle transport shallow checkout test. - Regenerated/updated
daily-agent-of-the-day-blog-writer.lock.yml, including substantial workflow behavior changes (setup mechanism, observability outputs, MCP/Docker build/run steps, and various environment/output wiring).
Show a summary per file
| File | Description |
|---|---|
| actions/setup/js/create_pull_request.test.cjs | Reformats a mocked git fetch error condition in a unit test. |
| .github/workflows/daily-agent-of-the-day-blog-writer.lock.yml | Large auto-generated workflow lock update including setup, tracing outputs, Docker/CLI build steps, and prompt/context templating adjustments. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 1
Comment on lines
+423
to
+451
| - name: Setup Go for CLI build | ||
| uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0 | ||
| with: | ||
| go-version-file: go.mod | ||
| cache: true | ||
| - name: Build gh-aw CLI | ||
| run: | | ||
| echo "Building gh-aw CLI for linux/amd64..." | ||
| mkdir -p dist | ||
| VERSION=$(git describe --tags --always --dirty) | ||
| CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build \ | ||
| -ldflags "-s -w -X main.version=${VERSION}" \ | ||
| -o dist/gh-aw-linux-amd64 \ | ||
| ./cmd/gh-aw | ||
| # Copy binary to root for direct execution in user-defined steps | ||
| cp dist/gh-aw-linux-amd64 ./gh-aw | ||
| chmod +x ./gh-aw | ||
| echo "✓ Built gh-aw CLI successfully" | ||
| - name: Setup Docker Buildx | ||
| uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 | ||
| - name: Build gh-aw Docker image | ||
| uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0 | ||
| with: | ||
| context: . | ||
| platforms: linux/amd64 | ||
| push: false | ||
| load: true | ||
| tags: localhost/gh-aw:dev | ||
| build-args: | |
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.
Thanks for asking me to work on this. I will get started on it and keep this PR's description up to date as I form a plan and make progress.