Skip to content

Add Copilot setup workflow for vsassets.io firewall allowlist #49470

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
merged 3 commits into from
Jun 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/copilot-setup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Copilot Setup Steps

# This workflow configures the environment for GitHub Copilot
# to allow access to necessary URLs for .NET SDK operations
on:
workflow_dispatch:

permissions:
contents: read

env:
# Allow Copilot to access Visual Studio assets URLs needed for NuGet restore
COPILOT_AGENT_FIREWALL_ALLOW_LIST_ADDITIONS: "vsblob.vsassets.io"

jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Configure environment for Copilot
run: |
echo "Copilot firewall allowlist configured for: $COPILOT_AGENT_FIREWALL_ALLOW_LIST_ADDITIONS"
echo "This allows access to Visual Studio assets URLs needed for NuGet package restore operations."