Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit f5856c3

Browse files
committed
add troubleshooting to remaining steps
1 parent 96d10d6 commit f5856c3

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

config.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ template:
1515
# Repo artifacts
1616
# repositoryUrl
1717
# actionsUrl
18+
# workflowEditUrl
19+
# branchSettingsUrl
1820
# 1. (Issue) Start here!
1921
# welcomeIssueUrl
2022
# welcomeIssueNumber
@@ -138,7 +140,6 @@ steps:
138140
store:
139141
secondIssueNumber: "%result.data.number%"
140142
secondIssueUrl: "%result.data.html_url%"
141-
data:
142143
workflowEditUrl: '{{ repoUrl }}/edit/master/.github/workflows/my-workflow.yml'
143144
branchSettingsUrl: '{{ repoUrl }}/settings/branches'
144145
- type: respond
@@ -384,6 +385,17 @@ steps:
384385
385386
Like before, now we have to wait for the workflow to run so that we can see the results.
386387
388+
<details>
389+
<summary>Workflow not running? Click here for some troubleshooting.</summary>
390+
391+
Try the following troubleshooting steps:
392+
1. Click on the [Actions tab]({{ store.actionsUrl }}) to see the status of your workflow run. See [Managing a workflow run](https://help.github.com/en/actions/configuring-and-managing-workflows/managing-a-workflow-run) on GitHub Help for more information.
393+
1. Edit your [workflow file]( {{ store.workflowEditUrl }}) and look for errors in the linter built into the browser.
394+
1. Look for the [workflow trigger](https://help.github.com/en/actions/reference/events-that-trigger-workflows) and ensure you are performing an action that triggers that workflow.
395+
396+
If you need to make changes to your code, remove the [master branch protection]({{ store.branchSettingsUrl }}) and merge your changes into the `master` branch.
397+
</details>
398+
387399
---
388400
389401
I'll respond here once it has completed!

responses/02_workflow-triggered.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ You should expect to see the result right here in this issue!
1919
2020
Try the following troubleshooting steps:
2121
1. Click on the [Actions tab]({{ store.actionsUrl }}) to see the status of your workflow run. See [Managing a workflow run](https://help.github.com/en/actions/configuring-and-managing-workflows/managing-a-workflow-run) on GitHub Help for more information.
22-
1. Edit your [workflow file]( {{ workflowEditUrl }}) and look for errors in the linter built into the browser.
22+
1. Edit your [workflow file]( {{ store.workflowEditUrl }}) and look for errors in the linter built into the browser.
2323
1. Look for the [workflow trigger](https://help.github.com/en/actions/reference/events-that-trigger-workflows) and ensure you are performing an action that triggers that workflow.
2424
25-
If you need to make changes to your code, remove the [master branch protection]({{ branchSettingsUrl }}) and merge your changes into the `master` branch.
25+
If you need to make changes to your code, remove the [master branch protection]({{ store.branchSettingsUrl }}) and merge your changes into the `master` branch.
2626
</details>
2727
---
2828

responses/05_workflow-triggered.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
Now that your updates have been merged and we've triggered the workflow we should see our workflow begin helping us automate the triage of new issues.
44

5+
<details>
6+
<summary>Workflow not running? Click here for some troubleshooting.</summary>
7+
8+
Try the following troubleshooting steps:
9+
1. Click on the [Actions tab]({{ store.actionsUrl }}) to see the status of your workflow run. See [Managing a workflow run](https://help.github.com/en/actions/configuring-and-managing-workflows/managing-a-workflow-run) on GitHub Help for more information.
10+
1. Edit your [workflow file]( {{ store.workflowEditUrl }}) and look for errors in the linter built into the browser.
11+
1. Look for the [workflow trigger](https://help.github.com/en/actions/reference/events-that-trigger-workflows) and ensure you are performing an action that triggers that workflow.
12+
13+
If you need to make changes to your code, remove the [master branch protection]({{ store.branchSettingsUrl }}) and merge your changes into the `master` branch.
14+
</details>
15+
516
---
617

718
I'll respond once your workflow has completed!

0 commit comments

Comments
 (0)