Add copilot-setup-steps to allow Copilot to build the repo#7428
Merged
Youssef1313 merged 2 commits intomainfrom Feb 18, 2026
Merged
Add copilot-setup-steps to allow Copilot to build the repo#7428Youssef1313 merged 2 commits intomainfrom
Youssef1313 merged 2 commits intomainfrom
Conversation
a362630 to
9e9b0c8
Compare
drognanar
approved these changes
Feb 18, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request adds infrastructure to enable GitHub Copilot to build the repository automatically. It introduces a GitHub Actions workflow that Copilot can use to understand how to build the project, and updates the Copilot instructions with improved guidance on localization and testing.
Changes:
- Added
.github/workflows/copilot-setup-steps.ymlworkflow file that defines build steps for Copilot - Updated localization guidelines to use automatic generation of
.xlffiles via build instead of manual modification - Added prerequisite instruction to run
./build.sh -packbefore running acceptance tests
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
.github/workflows/copilot-setup-steps.yml |
New GitHub Actions workflow that allows Copilot to build the repository using ./build.sh |
.github/copilot-instructions.md |
Updated localization guidelines to discourage manual .xlf file editing and added acceptance test prerequisite |
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v5 |
There was a problem hiding this comment.
The workflow uses actions/checkout@v5 while other workflows in this repository use actions/checkout@v4 (e.g., markdownlint.yml). For consistency with the existing codebase conventions, consider using actions/checkout@v4 instead.
Suggested change
| uses: actions/checkout@v5 | |
| uses: actions/checkout@v4 |
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.
No description provided.