Skip to content

Release workflow - Add the docker hub link to the release notes #4

Release workflow - Add the docker hub link to the release notes

Release workflow - Add the docker hub link to the release notes #4

Workflow file for this run

name: Schedule the docker link workflow
on:
release:
types:
- published
permissions:
actions: write
contents: read
jobs:
trigger-delayed:
name: Trigger Delayed Workflow
runs-on: ubuntu-latest
steps:
- name: Trigger Delayed Workflow
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea #v7.0.1
with:
script: |
await github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'docker_release_link.yaml',
ref: context.ref,
inputs: {
release_id: context.payload.release.id,
release_body: context.payload.release.body,
release_tag: context.payload.release.tag_name
}
});