Generate Plugin Zip #327
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
name: Generate Plugin Zip | |
on: | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: 'Git Commit Ref (branch, tag, or hash)' | |
required: true | |
type: string | |
production: | |
description: 'Is this a production build?' | |
default: false | |
type: boolean | |
slack_channel: | |
description: 'Slack channel ID to post to' | |
default: '' | |
required: false | |
type: string | |
slack_thread: | |
description: 'Slack thread to post to' | |
default: '' | |
required: false | |
type: string | |
jobs: | |
build: | |
uses: impress-org/givewp-github-actions/.github/workflows/generate-zip.yml@master | |
with: | |
ref: ${{ github.event.inputs.ref }} | |
plugin_slug: give | |
production: ${{ github.event.inputs.production }} | |
slack_channel: ${{ github.event.inputs.slack_channel }} | |
slack_thread: ${{ github.event.inputs.slack_thread }} | |
secrets: inherit |