Trigger Release creation #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow is triggered when someone create a new release in GitHub | |
# and checks the "This is a pre-relase" box. | |
name: Trigger Release creation | |
on: | |
release: | |
types: [prereleased] | |
jobs: | |
release-module: | |
uses: Jahia/jahia-modules-action/.github/workflows/release-module.yml@v2 | |
secrets: inherit | |
with: | |
primary_release_branch: "master" |