Skip to content

Document cpflow app bootstrap #107

Document cpflow app bootstrap

Document cpflow app bootstrap #107

name: Review App Help Command
on:
issue_comment:
types: [created]
workflow_dispatch:
inputs:
pr_number:
description: Pull request number to post help on
required: true
type: number
permissions:
contents: read
issues: write
pull-requests: write
jobs:
help:
if: |
(github.event_name == 'issue_comment' &&
github.event.issue.pull_request &&
contains(fromJson('["+review-app-help","+review-app-help\n","+review-app-help\r\n"]'), github.event.comment.body) &&
contains(fromJson('["OWNER","MEMBER","COLLABORATOR"]'), github.event.comment.author_association)) ||
github.event_name == 'workflow_dispatch'
uses: shakacode/control-plane-flow/.github/workflows/cpflow-help-command.yml@v5.0.1