microsoft/gctoolkit

Public

mirrored fromhttps://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/relevance-check

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/copilot-setup-steps.yml

26lines · modecode

1name: "Copilot Setup Steps"
2
3# This workflow configures the environment for GitHub Copilot Agent with gh-aw MCP server
4on:
5 workflow_dispatch:
6 push:
7 paths:
8 - .github/workflows/copilot-setup-steps.yml
9
10jobs:
11 # The job MUST be called 'copilot-setup-steps' to be recognized by GitHub Copilot Agent
12 copilot-setup-steps:
13 runs-on: ubuntu-latest
14
15 # Set minimal permissions for setup steps
16 # Copilot Agent receives its own token with appropriate permissions
17 permissions:
18 contents: read
19
20 steps:
21 - name: Checkout repository
22 uses: actions/checkout@v6
23 - name: Install gh-aw extension
24 uses: github/gh-aw/actions/setup-cli@v0.59.0
25 with:
26 version: v0.50.4
27