mirror of
https://github.com/docker/compose.git
synced 2026-02-10 02:29:25 +08:00
Compare commits
4 Commits
v2.34.0
...
dispatch-r
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6b2ca93981 | ||
|
|
963e2e8757 | ||
|
|
342ddc5ee5 | ||
|
|
3b7f5ffc6b |
22
.github/workflows/dispatch-release.yml
vendored
Normal file
22
.github/workflows/dispatch-release.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: dispatch release event to downstream repositories
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
dispatch_release_version:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/github-script@v6
|
||||
with:
|
||||
github-token: ${{ secrets.PAT_DOC_TOKEN }}
|
||||
script: |
|
||||
await github.rest.actions.createWorkflowDispatch({
|
||||
owner: 'docker',
|
||||
repo: 'docker.github.io',
|
||||
workflow_id: 'compose_release',
|
||||
ref: 'compose-api-upstream',
|
||||
inputs: {
|
||||
release: ${{ GITHUB_REF }},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user