microsoft/gctoolkit

Public

mirrored from https://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
main

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

26lines · modeblame

208f51a8Bruno Borges4 months ago1name: "Copilot Setup Steps"
2
3# This workflow configures the environment for GitHub Copilot Agent with gh-aw MCP server
4on:
5workflow_dispatch:
6push:
7paths:
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
12copilot-setup-steps:
13runs-on: ubuntu-latest
14
15# Set minimal permissions for setup steps
16# Copilot Agent receives its own token with appropriate permissions
17permissions:
18contents: read
19
20steps:
21- name: Checkout repository
1cb9ba8ddependabot[bot]6 days ago22uses: actions/checkout@v7
208f51a8Bruno Borges4 months ago23- name: Install gh-aw extension
b65827b2dependabot[bot]6 days ago24uses: github/gh-aw/actions/setup-cli@v0.80.5
208f51a8Bruno Borges4 months ago25with:
26version: v0.50.4