Browse Source

Fix workflow references in release workflow.

We need to use filename references instead of workflow name references so that https://github.com/netdata/netdata/pull/15341 won’t interfere with triggering builds.
Austin S. Hemmelgarn 1 year ago
parent
commit
b24c6f9335
1 changed files with 3 additions and 3 deletions
  1. 3 3
      .github/workflows/release.yml

+ 3 - 3
.github/workflows/release.yml

@@ -125,7 +125,7 @@ jobs:
         with:
           token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
           repo: ${{ github.repository }}
-          workflow: Build
+          workflow: build.yml
           ref: ${{ needs.update-changelogs.outputs.ref }}
           inputs: '{"version": "${{ needs.update-changelogs.outputs.version }}", "type": "${{ needs.update-changelogs.outputs.type }}"}'
       - name: Failure Notification
@@ -160,7 +160,7 @@ jobs:
         with:
           token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
           repo: ${{ github.repository }}
-          workflow: Docker
+          workflow: docker.yml
           ref: ${{ needs.update-changelogs.outputs.ref }}
           inputs: '{"version": "${{ needs.update-changelogs.outputs.version }}"}'
       - name: Failure Notification
@@ -195,7 +195,7 @@ jobs:
         with:
           token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
           repo: ${{ github.repository }}
-          workflow: Packages
+          workflow: packaging.yml
           ref: ${{ needs.update-changelogs.outputs.ref }}
           inputs: '{"version": "${{ needs.update-changelogs.outputs.version }}", "type": "${{ needs.update-changelogs.outputs.type }}"}'
       - name: Failure Notification