Skip to content

Another Copilot CLI issue #21

Another Copilot CLI issue

Another Copilot CLI issue #21

Workflow file for this run

# ============================================================================
# GitHub Copilot Coder - Caller Workflow
# ============================================================================
# This is a lightweight caller workflow that invokes the master workflow
# from the central GHES_CodingAgent repository.
#
# Benefits:
# - No scripts folder needed in this repository
# - Automatic updates when master workflow is improved
# - Consistent behavior across all repositories
#
# Prerequisites:
# - GH_TOKEN secret: Classic PAT with repo and workflow scopes
# - COPILOT_TOKEN secret: Token for GitHub Copilot API access
# - CONTEXT7_API_KEY secret (optional): API key for Context7 service
# ============================================================================
name: 🤖 GitHub Copilot Coder
on:
issues:
types: [labeled]
jobs:
copilot:
# Only run when the issue has the 'copilot' label
if: contains(github.event.issue.labels.*.name, 'copilot')
# Call the master workflow from the central repository
# Replace <org> with your GHES organization name
uses: ghes-test/GHES_CodingAgent/.github/workflows/copilot-coder-master.yml@main

Check failure on line 31 in .github/workflows/copilot-coder.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/copilot-coder.yml

Invalid workflow file

error parsing called workflow ".github/workflows/copilot-coder.yml" -> "ghes-test/GHES_CodingAgent/.github/workflows/copilot-coder-master.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
# Pass all secrets to the called workflow
secrets: inherit