Skip to content

Commit 8a68666

Browse files
committed
Partial merge for manual execution of GitHub Actions
1 parent 1ef7e17 commit 8a68666

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ body:
7676
label: Issue checklist
7777
description: Please double-check that you have done each of the following things before submitting the issue.
7878
options:
79-
- label: I searched for previous reports in [the issue tracker](https://github.com/m5stack/M5Stack/issues?q=)
79+
- label: I searched for previous reports in [the issue tracker](https://github.com/m5stack/M5Unit-HEART/issues?q=)
8080
required: true
8181
- label: My report contains all necessary details
8282
required: true

.github/workflows/clang-format-check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
strategy:
88
matrix:
99
path:
10-
- check: './' # path to include
11-
exclude: '' # path to exclude
12-
# - check: 'src'
13-
# exclude: '(Fonts)' # Exclude file paths containing "Fonts"
14-
# - check: 'examples'
15-
# exclude: ''
10+
- check: 'src'
11+
exclude: ''
12+
- check: 'test'
13+
exclude: ''
14+
- check: 'examples'
15+
exclude: ''
1616
steps:
1717
- uses: actions/[email protected]
1818
- name: Run clang-format style check for C/C++/Protobuf programs.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Deploy Doxygen docuemnt on GitHub Pages
2+
on: [release, workflow_dispatch]
3+
# branches:
4+
# - main
5+
# - master
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Make document
11+
uses: m5stack/M5Utility/.github/actions/doxygen@develop
12+
with:
13+
doxygen_version: 1.11.0
14+
github_token: ${{ secrets.GITHUB_TOKEN }}
15+
branch: gh-pages
16+
folder: docs/html
17+
config_file: docs/Doxyfile

0 commit comments

Comments
 (0)