-
Notifications
You must be signed in to change notification settings - Fork 23
feat: add copilot agent setup and instructions files #382
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+68
−0
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
0694058
feat: add copilot agent setup and instructions files
jmeridth 2457065
docs: formatting fixes
zkoppert 47b3927
Update .github/workflows/copilot-setup-steps.yml
jmeridth 9613beb
fix: linting
jmeridth cbfdbe0
fix: put the disable argument back
jmeridth File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copilot Instructions | ||
|
||
This is a GitHub Action that given an organization, team, or specified repositories, opens an issue/PR if dependabot is not enabled, or there are more package ecosystems that could be added. It also enables [automated security updates](https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates#managing-dependabot-security-updates-for-your-repositories) for the repository. Please follow these guidelines when contributing: | ||
|
||
## Code Standards | ||
|
||
### Required Before Each Commit | ||
|
||
- Run `make lint` before committing any changes to ensure proper code linting and formatting. | ||
|
||
### Development Flow | ||
|
||
- Lint: `make lint` | ||
- Test: `make test` | ||
|
||
## Repository Structure | ||
|
||
- `Makefile`: Contains commands for linting, testing, and other tasks | ||
- `requirements.txt`: Python dependencies for the project | ||
- `requirements-test.txt`: Python dependencies for testing | ||
- `README.md`: Project documentation and setup instructions | ||
- `setup.py`: Python package setup configuration | ||
- `test_*.py`: Python test files matching the naming convention for test discovery | ||
|
||
## Key Guidelines | ||
|
||
1. Follow Python best practices and idiomatic patterns | ||
2. Maintain existing code structure and organization | ||
3. Write unit tests for new functionality. | ||
4. Document changes to environment variables in the `README.md` file. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: "Copilot Setup Steps" | ||
|
||
# Automatically run the setup steps when they are changed to allow for easy validation, and | ||
# allow manual testing through the repository's "Actions" tab | ||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- .github/workflows/copilot-setup-steps.yml | ||
pull_request: | ||
paths: | ||
- .github/workflows/copilot-setup-steps.yml | ||
|
||
# Set the permissions to the lowest permissions possible needed for your steps. | ||
# Copilot will be given its own token for its operations. | ||
permissions: | ||
# If you want to clone the repository as part of your setup steps, for example to install dependencies, you'll need the `contents: read` permission. If you don't clone the repository in your setup steps, Copilot will do this for you automatically after the steps complete. | ||
contents: read | ||
|
||
jobs: | ||
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot. | ||
copilot-setup-steps: | ||
runs-on: ubuntu-latest | ||
|
||
# You can define any steps you want, and they will run before the agent starts. | ||
# If you do not check out your code, Copilot will do this for you. | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4.2.2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5.6.0 | ||
with: | ||
python-version: 3.12 | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install -r requirements.txt -r requirements-test.txt |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.