Create sample issue labels #12
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: Create sample issue labels | |
on: | |
workflow_dispatch: | |
jobs: | |
Create-test-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Daniel Ridge repo | |
uses: actions/checkout@v3 | |
- name: Create issue with sample labels | |
run: 'gh issue create | |
--repo github.com/danielridgebot/check-ghpages-versions | |
--title "This issue has been created to test out sample labels" | |
--body "Have the labels been created successfully? Are they properly formatted?" | |
--label "feature: maintenance,size: missing,role: Site Reliability Engineer,size: 0.5pt"' | |
env: | |
GH_TOKEN: ${{ secrets.Daniel_Ridge_PAT }} |