Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1bc4a9a
Initial plan
Copilot Aug 20, 2025
5355088
Implement pull-request output type with comprehensive tests and docum…
Copilot Aug 20, 2025
13f4ecd
Address PR feedback: optimize main job name handling, improve branch …
Copilot Aug 20, 2025
a570a09
Refactor pull-request script: move validation to start and remove try…
Copilot Aug 20, 2025
629e8c3
Add pull-request output to test-claude workflow
Copilot Aug 20, 2025
6cd01e9
Remove contents: write permission from test-claude and update docs wi…
Copilot Aug 20, 2025
30cad79
Add contents: read permission to test-claude workflow
Copilot Aug 20, 2025
3209f4d
Refactor environment variable naming: update AGENT_OUTPUT_CONTENT to …
pelikhan Aug 20, 2025
0ed8870
add typecheck of js scripts
pelikhan Aug 20, 2025
0e3e651
Remove create_pull_request.js file and associated functionality
pelikhan Aug 20, 2025
81d24a5
Enhance GitHub Actions summary output for issues and pull requests
pelikhan Aug 20, 2025
c93ef7d
Update error handling for agent output content in create_pull_request…
pelikhan Aug 20, 2025
932f00d
Rename 'create_output_issue' to 'create_issue' across workflow and do…
pelikhan Aug 20, 2025
f663ad0
Add patch preview to GitHub Actions summary for better visibility
pelikhan Aug 20, 2025
26cc9db
Add JavaScript build job to CI workflow and update test script in pac…
pelikhan Aug 20, 2025
06869b3
Refactor git patch generation steps to improve clarity and commit han…
pelikhan Aug 20, 2025
07f732e
Configure git user for GitHub Actions in workflow files for consisten…
pelikhan Aug 20, 2025
c2383aa
Rename 'add-reaction' to 'add_reaction' for consistency across workfl…
pelikhan Aug 20, 2025
49a3abf
Downgrade Node.js setup action version from v5 to v4 for compatibility
pelikhan Aug 20, 2025
6650b01
Update Node.js setup action to use npm cache for dependency management
pelikhan Aug 20, 2025
3584ef8
Fix test assertion message for skipping patch generation when no comm…
pelikhan Aug 20, 2025
880a89d
Merge branch 'main' into copilot/fix-146
pelikhan Aug 20, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,20 @@ jobs:
echo "Error: Found uncommitted changes in workflow files:"
exit 1
fi

js:
name: Build JavaScript
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm test
lint:
name: Lint Code
runs-on: ubuntu-latest
Expand Down
45 changes: 32 additions & 13 deletions .github/workflows/issue-triage.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading