Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Su <derek.su@suse.com>
  • Loading branch information
derekbit committed Jan 26, 2025
1 parent f0b659e commit 830a429
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/create-release-task.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Create Release Task

on:
workflow_dispatch:
inputs:
release_capatain:
description: "Release Captain"
required: true
qa_capatain:
description: "QA Captain"
required: true

jobs:
create-release-task:
runs-on: ubuntu-latest
env:
: longhorn
GITHUB_REPO: longhorn
GITHUB_PROJECT: Longhorn Sprint
steps:
- uses: actions/checkout@v3
- uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_CAPTAIN: ${{ github.event.inputs.release_capatain }}
QA_CAPTAIN: ${{ github.event.inputs.qa_capatain }}
with:
filename: .github/ISSUE_TEMPLATE/release.md

0 comments on commit 830a429

Please sign in to comment.