Skip to content

Commit

Permalink
Add bump scaffold workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim authored Sep 10, 2023
1 parent 2c33805 commit 2aaeb42
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/bump-scaffold.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Bump scaffold

on:
workflow_dispatch:
inputs:
package-name:
default: use-memo-map
description: Name of the package
required: true
type: string
use-react:
default: true
description: Use React
required: true
type: boolean
skip-integration-test:
default: false
description: Skip integration test
required: true
type: boolean

jobs:
call-workflow:
secrets: inherit
uses: compulim/workflows/.github/workflows/bump-scaffold.yml@main
with:
package-name: ${{ inputs.package-name }}
skip-integration-test: ${{ inputs.skip-integration-test }}
use-react: ${{ inputs.use-react }}

0 comments on commit 2aaeb42

Please sign in to comment.