Skip to content

Help Command

Help Command #56

Workflow file for this run

name: Show Help for Commands
on:
push:
branches:
- "**" # Trigger on all branches, including feature branches
issue_comment:
types: [created]
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
show-help:
if: |
github.event_name == 'workflow_dispatch' ||
(github.event_name == 'issue_comment' &&
github.event.issue.pull_request &&
github.event.comment.body == '/help')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@justin808-more-work-on-review-apps-1
- name: Show Help Information
uses: ./.github/actions/help-command@justin808-more-work-on-review-apps-1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}