Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Perform sparse checkout
  • Loading branch information
mbg committed Nov 12, 2025
commit a7e52b690b1a3a5c4d4b33b37f66d9234102dfb2
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
repository: github/enterprise-releases
token: ${{ secrets.ENTERPRISE_RELEASE_TOKEN }}
path: ${{ github.workspace }}/enterprise-releases/
sparse-checkout: releases.json
Copy link

Copilot AI Nov 12, 2025

Choose a reason for hiding this comment

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

The sparse-checkout parameter should be an array, not a string. According to the actions/checkout documentation, sparse-checkout expects a list of patterns, one per line.

Should be:

sparse-checkout: |
  releases.json
Suggested change
sparse-checkout: releases.json
sparse-checkout: |
releases.json

Copilot uses AI. Check for mistakes.
- name: Update Supported Enterprise Server Versions
run: |
cd ./.github/workflows/update-supported-enterprise-server-versions/
Expand Down