Skip to content

Commit f59b169

Browse files
authored
Create main.yml
1 parent 8713f44 commit f59b169

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Diff for: .github/workflows/main.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Automate issue creation with Actions and gh CLI
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
create_issue:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Create issue using gh CLI
12+
run: gh issue create --title "New issue title"

0 commit comments

Comments
 (0)