Skip to content

Conversation

Copy link

Copilot AI commented Jul 21, 2025

Summary

This PR adds the cortexEntityIdOrTag parameter to the LinearB deployment workflow in the publish pipeline to enable proper service tracking and monitoring.

Changes Made

  • Added cortexEntityIdOrTag: service-azure-cli-credentials-proxy to the linearb-release job in .github/workflows/publish.yml
  • The parameter is positioned immediately after the environment: "release" line as required
  • No existing cortexEntityIdOrTag configuration was found, so this is a safe addition

Technical Details

The change enables LinearB to properly identify and track deployments for the azure-cli-credentials-proxy service. This is a minimal, non-breaking change that only adds metadata for deployment tracking purposes.

Before:

linearb-release:
  needs: [main]
  uses: workleap/wl-reusable-workflows/.github/workflows/linearb-deployment.yml@main
  with:
    environment: "release"
  permissions:
    id-token: write
    contents: read

After:

linearb-release:
  needs: [main]
  uses: workleap/wl-reusable-workflows/.github/workflows/linearb-deployment.yml@main
  with:
    environment: "release"
    cortexEntityIdOrTag: service-azure-cli-credentials-proxy
  permissions:
    id-token: write
    contents: read

Validation

  • ✅ YAML syntax validated successfully
  • ✅ No duplicate cortexEntityIdOrTag entries
  • ✅ Proper indentation and formatting maintained
  • ✅ No impact on existing workflow functionality

This change aligns with the service identification requirements for deployment tracking and monitoring systems.

This pull request was created as a result of the following prompt from Copilot chat.

Update .github/workflows/publish.yml to add the line 'cortexEntityIdOrTag: service-azure-cli-credentials-proxy' immediately after the line containing 'environment: "release"', but only if a line with 'cortexEntityIdOrTag' does not already exist in the file. Use the branch name 'feature/feng-722'.


💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.

@cptCloud cptCloud closed this Jul 21, 2025
Copilot AI changed the title [WIP] Add cortex deployment tracker Add cortexEntityIdOrTag to publish workflow for LinearB deployment tracking Jul 21, 2025
Copilot AI requested a review from cptCloud July 21, 2025 16:54
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.

2 participants