fix the payload with comma (#8376)

This commit is contained in:
Maurizio Vitale
2023-03-15 16:43:38 +01:00
committed by GitHub
parent 5b20ba973b
commit 8aa9ce9556

View File

@@ -14,12 +14,12 @@ jobs:
script: | script: |
const payload = { const payload = {
package_name: github.event.registry_package.name, package_name: github.event.registry_package.name,
package_version: github.event.package_version.name package_version: github.event.package_version.name,
package_commit_sha: github.event.package_version.target_oid package_commit_sha: github.event.package_version.target_oid
}; };
github.repos.createDispatchEvent({ github.repos.createDispatchEvent({
owner: 'Alfresco', owner: context.repo.owner,
repo: 'alfresco-apps', repo: 'alfresco-apps',
event_type: 'package-published', event_type: 'package-published',
client_payload: payload client_payload: payload