Skip to content

fix: use correct deployment-id input name in singularity-deploy workflow - #1202

Draft
hyphaltip with Copilot wants to merge 2 commits into
masterfrom
copilot/fix-deploy-to-singularity-job
Draft

fix: use correct deployment-id input name in singularity-deploy workflow#1202
hyphaltip with Copilot wants to merge 2 commits into
masterfrom
copilot/fix-deploy-to-singularity-job

Conversation

Copilot AI commented Aug 12, 2026

Copy link
Copy Markdown
Contributor

chrnorm/deployment-status@v2.0.4 expects the input parameter deployment-id (hyphen), but the workflow was passing deployment_id (underscore). The action silently ignored the unknown input, resulting in an HttpError: Not Found when attempting to update the deployment status.

Changes

  • .github/workflows/singularity-deploy.yml: Rename deployment_iddeployment-id in both the success and failure chrnorm/deployment-status steps.
# Before (broken)
- uses: chrnorm/deployment-status@v2.0.4
  with:
    deployment_id: ${{ steps.deployment.outputs.deployment_id }}

# After (correct)
- uses: chrnorm/deployment-status@v2.0.4
  with:
    deployment-id: ${{ steps.deployment.outputs.deployment_id }}

Co-authored-by: hyphaltip <48827+hyphaltip@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix failing GitHub Actions job 'Deploy to Singularity' fix: use correct deployment-id input name in singularity-deploy workflow Aug 12, 2026
Copilot AI requested a review from hyphaltip August 12, 2026 05:20
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