We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1adb820 commit 5980258Copy full SHA for 5980258
.github/workflows/release.yaml
@@ -1,7 +1,8 @@
1
name: "Release dev container features & Generate Documentation"
2
on:
3
workflow_dispatch:
4
- workflow_call:
+ repository_dispatch:
5
+ types: [trigger-release]
6
7
jobs:
8
deploy:
.github/workflows/test.yaml
@@ -59,7 +59,10 @@ jobs:
59
- name: "Testing global scenarios"
60
run: devcontainer features test --global-scenarios-only .
61
62
- call-release-workflow:
+ trigger-release:
63
+ runs-on: ubuntu-latest
64
needs: [test-autogenerated, test-global]
65
if: success() && github.event_name != 'pull_request'
66
uses: ./.github/workflows/release.yaml
67
+ with:
68
+ event-type: trigger-release
0 commit comments