Skip to content

CLI Demo Workflow

CLI Demo Workflow #5

Workflow file for this run

name: CLI Demo Workflow
on: workflow_dispatch
jobs:
list-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: List Issues
run: gh issue list
env:
GH_TOKEN: ${{ github.token }}