fix: Github action cleanup (no-changelog) (#16964)

Co-authored-by: Tomi Turtiainen <10324676+tomi@users.noreply.github.com>
This commit is contained in:
shortstacked
2025-07-08 13:45:59 +01:00
committed by GitHub
parent 608dcdee4d
commit 9155ccc7e0
10 changed files with 30 additions and 19 deletions

View File

@@ -364,10 +364,12 @@ jobs:
if: needs.create_multi_arch_manifest.result == 'success' || needs.create_multi_arch_manifest.result == 'skipped'
steps:
- name: Call Success URL
if: github.event_name == 'workflow_dispatch' && github.event.inputs.success_url != ''
env:
SUCCESS_URL: ${{ github.event.inputs.success_url }}
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.success_url != '' }}
run: |
echo "Calling success URL: ${{ github.event.inputs.success_url }}"
curl -v "${{ github.event.inputs.success_url }}" || echo "Failed to call success URL"
echo "Calling success URL: ${{ env.SUCCESS_URL }}"
curl -v "${{ env.SUCCESS_URL }}" || echo "Failed to call success URL"
shell: bash
security-scan: