Skip to content

Commit 84e01f7

Browse files
committed
Update GitHub Actions workflows to use dynamic project IDs: Replace hardcoded project IDs with a variable reference for improved flexibility and maintainability across all workflows.
1 parent ae70246 commit 84e01f7

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

.github/workflows/copilot_commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
- uses: ./
1919
with:
2020
debug: ${{ vars.DEBUG }}
21-
project-ids: 2
21+
project-ids: ${{ vars.PROJECT_IDS }}
2222
opencode-model: ${{ vars.OPENCODE_MODEL }}
2323
token: ${{ secrets.PAT }}

.github/workflows/copilot_issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ jobs:
1717
ai-ignore-files: build/*
1818
debug: ${{ vars.DEBUG }}
1919
opencode-model: ${{ vars.OPENCODE_MODEL }}
20-
project-ids: 2
20+
project-ids: ${{ vars.PROJECT_IDS }}
2121
token: ${{ secrets.PAT }}

.github/workflows/copilot_issue_comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ jobs:
1717
ai-ignore-files: build/*
1818
debug: ${{ vars.DEBUG }}
1919
opencode-model: ${{ vars.OPENCODE_MODEL }}
20-
project-ids: 2
20+
project-ids: ${{ vars.PROJECT_IDS }}
2121
token: ${{ secrets.PAT }}

.github/workflows/copilot_pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ jobs:
1717
ai-ignore-files: build/*
1818
debug: ${{ vars.DEBUG }}
1919
opencode-model: ${{ vars.OPENCODE_MODEL }}
20-
project-ids: 2
20+
project-ids: ${{ vars.PROJECT_IDS }}
2121
token: ${{ secrets.PAT }}

.github/workflows/copilot_pull_request_comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
ai-ignore-files: build/*
1818
debug: ${{ vars.DEBUG }}
1919
opencode-model: ${{ vars.OPENCODE_MODEL }}
20-
project-ids: 2
20+
project-ids: ${{ vars.PROJECT_IDS }}
2121
token: ${{ secrets.PAT }}
2222

docs/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: Copilot
33
description: Streamline your GitHub workflow with automated branch management, issue tracking, and project integration. Enhance team collaboration and optimize your development process.
44
---
55

6+
export const Columns = ({ children }) => <div>{children}</div>
7+
68
> This is Github with super powers 🚀
79
810
**Copilot** is designed with task management in mind, closely mirroring the approach used by Atlassian with Bitbucket and Jira. It leverages GitHub's project boards and issues as the foundation for task management at every stage of development.

0 commit comments

Comments
 (0)