mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-07-16 09:23:07 +01:00
fix(ci): correct GitHub Actions run ID reference
Fixes incorrect variable reference in artifact comment generation that was using undefined `runId` instead of the proper `context.runId` from the GitHub Actions context. Also adds descriptive job name for better workflow visibility.
This commit is contained in:
3
.github/workflows/artifact-comment.yml
vendored
3
.github/workflows/artifact-comment.yml
vendored
@@ -19,6 +19,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
comment-artifacts:
|
comment-artifacts:
|
||||||
if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request' || (github.event_name == 'workflow_run' && github.event.workflow_run.event == 'pull_request')
|
if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request' || (github.event_name == 'workflow_run' && github.event.workflow_run.event == 'pull_request')
|
||||||
|
name: 📦 Post Build Artifacts
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
@@ -179,7 +180,7 @@ jobs:
|
|||||||
commentBody += `⏳ **No artifacts available yet** - builds are still in progress or haven't completed successfully.\n\n`;
|
commentBody += `⏳ **No artifacts available yet** - builds are still in progress or haven't completed successfully.\n\n`;
|
||||||
}
|
}
|
||||||
|
|
||||||
commentBody += `<sub>*Auto-generated by [GitHub Actions](https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${runId})*</sub>`;
|
commentBody += `<sub>*Auto-generated by [GitHub Actions](https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId})*</sub>`;
|
||||||
commentBody += `\n<!-- streamyfin-artifact-comment -->`;
|
commentBody += `\n<!-- streamyfin-artifact-comment -->`;
|
||||||
|
|
||||||
// Find existing bot comment to update
|
// Find existing bot comment to update
|
||||||
|
|||||||
Reference in New Issue
Block a user