Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/workflows/codegen-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ jobs:
run: |
ERROR_SUMMARY=$(cat /tmp/error-summary.txt)

# Ensure PR has dependencies label (required by codegen-agentic-fix safe-output)
gh pr edit "$PR_NUMBER" --add-label dependencies

gh workflow run codegen-agentic-fix.lock.yml \
-f branch="$BRANCH" \
-f pr_number="$PR_NUMBER" \
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-copilot-dependency.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ jobs:
if gh pr view "$BRANCH" >/dev/null 2>&1; then
echo "Pull request for branch '$BRANCH' already exists; updated branch only."
PR_NUMBER=$(gh pr view "$BRANCH" --json number --jq .number)
gh pr edit "$PR_NUMBER" --add-label dependencies
else
PR_NUMBER=$(gh pr create \
--title "Update @github/copilot to $VERSION" \
Expand Down