Skip to content

Fix asset URLs to work with private repos#21646

Merged
pelikhan merged 3 commits intomainfrom
copilot/fix-asset-url-generation-private-repos
Mar 18, 2026
Merged

Fix asset URLs to work with private repos#21646
pelikhan merged 3 commits intomainfrom
copilot/fix-asset-url-generation-private-repos

Conversation

Copy link
Contributor

Copilot AI commented Mar 18, 2026

raw.githubusercontent.com URLs require public repo access and fail silently for private repos. The blob URL with ?raw=true works for both.

Changes

  • safe_outputs_handlers.cjs: For github.com, generate https://github.com/{repo}/blob/{branch}/{filename}?raw=true instead of https://raw.githubusercontent.com/{repo}/{branch}/{filename}
  • safe_outputs_handlers.test.cjs: Updated test assertions to verify blob URL format and absence of raw.githubusercontent.com
  • safe-outputs.md: Updated documented URL format to match

GitHub Enterprise Server URL format ({host}/{repo}/raw/{branch}/{filename}) is unchanged.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • invalid.example.invalid
    • Triggering command: /usr/lib/git-core/git-remote-https /usr/lib/git-core/git-remote-https origin https://invalid.example.invalid/nonexistent-repo.git e/git init�� de/node/bin/git git tions/setup/js/node_modules/.bin/git user.email test@example.comcheckout /git git bran�� -M main k/gh-aw/gh-aw/actions/setup/js/node_modules/.bin/git /tmp/bare-incremgit gin/feature-branadd cal/bin/git git (dns block)

If you need me to access, download, or install something from one of these locations, you can either:


🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.

Copilot AI linked an issue Mar 18, 2026 that may be closed by this pull request
Copilot AI and others added 2 commits March 18, 2026 19:52
Co-authored-by: dsyme <7204669+dsyme@users.noreply.github.com>
Use `https://github.com/{repo}/blob/{branch}/{filename}?raw=true` format
instead of `https://raw.githubusercontent.com/{repo}/{branch}/{filename}`
for github.com asset uploads. The blob URL with `?raw=true` works for both
public and private repos, while the raw.githubusercontent.com URL only works
for public repos.

Fixes #<issue>

Co-authored-by: dsyme <7204669+dsyme@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix URL generation for assets in private repositories Fix asset URLs to work with private repos Mar 18, 2026
Copilot AI requested a review from dsyme March 18, 2026 19:58
@pelikhan pelikhan marked this pull request as ready for review March 18, 2026 20:46
Copilot AI review requested due to automatic review settings March 18, 2026 20:46
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates safe-output asset URL generation so uploaded assets can be accessed in private repositories by avoiding raw.githubusercontent.com on GitHub.com.

Changes:

  • Switch upload_asset URL generation for github.com to use https://github.com/{owner}/{repo}/blob/{branch}/{filename}?raw=true.
  • Update tests and documentation to assert/document the new URL format.
  • Update many workflow lock files’ GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG to include noop (and in some cases upload_asset) configuration.

Reviewed changes

Copilot reviewed 172 out of 172 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
docs/src/content/docs/reference/safe-outputs.md Documents the new GitHub.com blob URL format for uploaded assets.
actions/setup/js/safe_outputs_handlers.cjs Changes GitHub.com asset URLs from raw.githubusercontent.com to github.com/.../blob/...?....
actions/setup/js/safe_outputs_handlers.test.cjs Updates assertions to match the blob ?raw=true URL format.
.github/workflows/workflow-skill-extractor.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/workflow-normalizer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/workflow-health-manager.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/workflow-generator.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/weekly-safe-outputs-spec-review.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/weekly-issue-summary.lock.yml Adds noop and upload_asset configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/weekly-editors-health-check.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/weekly-blog-post-writer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/video-analyzer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/ubuntu-image-analyzer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/typist.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/test-project-url-default.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/test-dispatcher.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/test-create-pr-error-handling.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/terminal-stylist.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/super-linter.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/sub-issue-closer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/step-name-alignment.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/static-analysis-report.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/stale-repo-identifier.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-workflow-call.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-workflow-call-with-inputs.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-temporary-id.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-gemini.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-copilot.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-copilot-arm.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-codex.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-call-workflow.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-agent-scoped-approved.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-agent-public-none.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-agent-public-approved.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-agent-all-none.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/smoke-agent-all-merged.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/slide-deck-maintainer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/sergo.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/semantic-function-refactor.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/security-review.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/security-compliance.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/security-alert-burndown.campaign.g.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/scout.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/schema-consistency-checker.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/safe-output-health.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/research.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/repository-quality-improver.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/repo-tree-map.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/repo-audit-analyzer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/release.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/refiner.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/q.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/python-data-charts.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/prompt-clustering-analysis.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/pr-triage-agent.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/pr-nitpick-reviewer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/portfolio-analyst.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/plan.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/pdf-summary.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/org-health-report.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/notion-issue-summary.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/mergefest.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/mcp-inspector.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/lockfile-stats.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/layout-spec-maintainer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/issue-triage-agent.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/issue-monster.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/issue-arborist.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/hourly-ci-cleaner.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/grumpy-reviewer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/gpclean.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/go-pattern-detector.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/go-logger.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/go-fan.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/glossary-maintainer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/github-remote-mcp-auth-test.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/github-mcp-structural-analysis.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/firewall-escape.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/example-workflow-analyzer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/duplicate-code-detector.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/draft-pr-cleanup.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/docs-noob-tester.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/discussion-task-miner.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/dictation-prompt.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/dev.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/dev-hawk.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/dependabot-go-checker.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/dependabot-burner.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/delight.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/deep-report.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/dead-code-remover.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-workflow-updater.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-testify-uber-super-expert.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-team-status.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-team-evolution-insights.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-syntax-error-quality.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-semgrep-scan.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-security-red-team.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-secrets-analysis.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-safe-outputs-conformance.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-safe-output-optimizer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-safe-output-integrator.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-repo-chronicle.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-regulatory.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-performance-summary.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-observability-report.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-news.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-multi-device-docs-tester.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-mcp-concurrency-analysis.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-malicious-code-scan.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-issues-report.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-function-namer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-firewall-report.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-file-diet.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-fact.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-copilot-token-report.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-compiler-quality.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-code-metrics.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-cli-tools-tester.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-cli-performance.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-choice-test.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-assign-issue-to-user.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/daily-architecture-diagram.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/craft.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/copilot-session-insights.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/copilot-pr-prompt-analysis.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/copilot-pr-nlp-analysis.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/copilot-pr-merged-report.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/copilot-cli-deep-research.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/copilot-agent-analysis.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/contribution-check.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/constraint-solving-potd.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/commit-changes-analyzer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/code-simplifier.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/cli-version-checker.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/cli-consistency-checker.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/claude-code-user-docs-review.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/ci-doctor.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/ci-coach.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/breaking-change-checker.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/brave.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/bot-detection.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/blog-auditor.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/auto-triage-issues.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/audit-workflows.lock.yml Adds noop (and upload_asset) configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/artifacts-summary.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/archie.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/ai-moderator.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/agent-persona-explorer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.
.github/workflows/agent-performance-analyzer.lock.yml Adds/updates noop configuration in GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

You can also share your feedback on Copilot code review. Take the survey.

GITHUB_SERVER_URL: ${{ github.server_url }}
GITHUB_API_URL: ${{ github.api_url }}
GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG: "{\"create_discussion\":{\"category\":\"reports\",\"close_older_discussions\":true,\"expires\":168,\"fallback_to_issue\":true,\"max\":1},\"create_issue\":{\"expires\":48,\"group\":true,\"labels\":[\"refactoring\",\"shared-component\",\"improvement\",\"cookie\"],\"max\":3,\"title_prefix\":\"[refactoring] \"},\"missing_data\":{},\"missing_tool\":{}}"
GH_AW_SAFE_OUTPUTS_HANDLER_CONFIG: "{\"create_discussion\":{\"category\":\"reports\",\"close_older_discussions\":true,\"expires\":168,\"fallback_to_issue\":true,\"max\":1},\"create_issue\":{\"expires\":48,\"group\":true,\"labels\":[\"refactoring\",\"shared-component\",\"improvement\",\"cookie\"],\"max\":3,\"title_prefix\":\"[refactoring] \"},\"missing_data\":{},\"missing_tool\":{},\"noop\":{\"max\":1,\"report-as-issue\":\"true\"}}"
@pelikhan pelikhan merged commit 5f5f569 into main Mar 18, 2026
121 checks passed
@pelikhan pelikhan deleted the copilot/fix-asset-url-generation-private-repos branch March 18, 2026 22:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Generate correct URLs for assets for private repos

4 participants