Update blank.yml #7
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: Automate issue creation with Actions and gh CLI | ||
on: | ||
workflow-dispatch: | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
jobs: | ||
create_issue: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Create issue using gh CLI | ||
run: gh issue create --title "New issue title" --body "Issue body" |