-
Notifications
You must be signed in to change notification settings - Fork 678
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
40 changed files
with
1,092 additions
and
727 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Reply Bot Configuration | ||
# See https://github.com/peaceiris/actions-label-commenter | ||
|
||
labels: | ||
####################################################################### | ||
# Bot Response: Web Console | ||
####################################################################### | ||
- name: bot-reply Web Console | ||
labeled: | ||
issue: | ||
body: | | ||
You can use the [Web Console](https://jomjol.github.io/AI-on-the-edge-device/index.html) to get USB log from the device. | ||
The USB log contains more information about the startup and operation of the device than the normal Web UI log | ||
discussion: | ||
body: | | ||
You can use the [Web Console](https://jomjol.github.io/AI-on-the-edge-device/index.html) to get USB log from the device. | ||
The USB log contains more information about the startup and operation of the device than the normal Web UI log | ||
|
||
####################################################################### | ||
# Bot Response: Rolling Build | ||
####################################################################### | ||
- name: bot-reply Rolling Build | ||
labeled: | ||
issue: | ||
body: | | ||
You can use the latest [Automatic Build](https://github.com/jomjol/AI-on-the-edge-device/actions/workflows/build.yaml?query=branch%3Arolling) of the the `rolling` branch. It might already contain a fix for your issue. | ||
Pick the most top passing entry (it has a green circle with a tick in it), then scoll down to the **Artifacts** and download the file named `update_*`. | ||
discussion: | ||
body: | | ||
You can use the latest [Automatic Build](https://github.com/jomjol/AI-on-the-edge-device/actions/workflows/build.yaml?query=branch%3Arolling) of the the `rolling` branch. It might already contain a fix for your issue. | ||
Pick the most top passing entry (it has a green circle with a tick in it), then scoll down to the **Artifacts** and download the file named `update_*`. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Reply Bot | ||
# It uses the configuration in .github/label-commenter-config.yml | ||
# See https://github.com/peaceiris/actions-label-commenter | ||
|
||
name: Reply-Bot | ||
|
||
on: | ||
issues: | ||
types: [labeled] | ||
discussion: | ||
types: [labeled] | ||
|
||
permissions: | ||
contents: read | ||
issues: write | ||
pull-requests: write | ||
discussions: write | ||
|
||
jobs: | ||
comment: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Remove 'Web Console' label again (issues only) | ||
if: github.event.label.name == 'bot-reply Web Console' | ||
uses: actions-cool/issues-helper@v2 | ||
with: | ||
actions: 'remove-labels' | ||
labels: 'bot-reply Web Console' | ||
|
||
- name: Remove 'Rolling Build' label again (issues only) | ||
if: github.event.label.name == 'bot-reply Rolling Build' | ||
uses: actions-cool/issues-helper@v2 | ||
with: | ||
actions: 'remove-labels' | ||
labels: 'bot-reply Rolling Build' | ||
|
||
- name: Write Response | ||
uses: peaceiris/actions-label-commenter@c2d00660c86f2b9ed0fb35b372c451558eba85b3 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.