Skip to content

Commit

Permalink
ci: create create-release-pull-request.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
riscait authored Aug 9, 2023
1 parent edfba3a commit 62013cc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/create-release-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Create release pull request

on:
# トリガーは手動実行のみ。
workflow_dispatch:
inputs:
# リリースバージョンを入力する。
version:
description: "リリースバージョン(例: 1.0.0)\n未指定の場合はビルド番号のみインクリメント。"
required: false
type: string
jobs:
create:
uses: altive/.github/.github/workflows/create-release-pull-request.yaml@main
with:
version: ${{ inputs.version }}
working-directory: "./packages/flutter_app"
secrets: inherit

0 comments on commit 62013cc

Please sign in to comment.