Skip to content

Commit 652df55

Browse files
committed
fix help docs
1 parent eeabd9c commit 652df55

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/help-command.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ jobs:
1818
help:
1919
if: ${{ (github.event.issue.pull_request && github.event.comment.body == '/help') || github.event_name == 'workflow_dispatch' }}
2020
runs-on: ubuntu-latest
21-
21+
2222
steps:
2323
- name: Show Available Commands
2424
uses: actions/github-script@v7
2525
with:
2626
script: |
2727
const sections = {
2828
commands: {
29-
deploy: {
30-
title: '## `/deploy`',
29+
"deploy-review-app": {
30+
title: '## `/deploy-review-app`',
3131
purpose: '**Purpose:** Deploy a review app for your pull request',
3232
details: [
3333
'**What it does:**',
@@ -42,8 +42,8 @@ jobs:
4242
' - Example: `/deploy timeout=1800`'
4343
]
4444
},
45-
destroy: {
46-
title: '## `/destroy`',
45+
"delete-review-app: {
46+
title: '## `/delete-review-app`',
4747
purpose: '**Purpose:** Remove the review app for your pull request',
4848
details: [
4949
'**What it does:**',
@@ -96,17 +96,18 @@ jobs:
9696
details: [
9797
'Review apps are automatically destroyed when:',
9898
'1. The pull request is closed',
99-
'2. The `/destroy` command is used',
99+
'2. The `/delete-review-app` command is used',
100100
'3. A new deployment is requested (old one is cleaned up first)'
101101
]
102102
},
103103
help: {
104104
title: '## Need Help?',
105105
details: [
106-
'For additional assistance:',
107-
'1. Check the [Control Plane documentation](https://docs.controlplane.com/)',
106+
'For additional assistance, ',
107+
'1. Check the [Control Plane Flow documentation](https://www.shakacode.com/control-plane-flow/docs/)',
108108
'2. Contact the infrastructure team',
109-
'3. Open an issue in this repository'
109+
'3. [Open an issue in this repository](https://github.com/shakacode/control-plane-flow/issues/new)',
110+
'4. [Contact ShakaCode support](mailto:justin@shakacode.com)'
110111
]
111112
}
112113
};

0 commit comments

Comments
 (0)