Skip to content

Commit 48f4613

Browse files
committed
Sync project infrastructure with assets
1 parent 1677269 commit 48f4613

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

.codespellrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[codespell]
44
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
55
ignore-words-list = ba,licence,ot
6-
skip = .git,./.licenses,__pycache__,node_modules,./other/clang-format-configuration/testdata/input/samples,./other/clang-format-configuration/testdata/golden,./other/clang-format-configuration/.clang-format,go.mod,go.sum,package-lock.json,poetry.lock,yarn.lock
6+
skip = ./.licenses,.git,__pycache__,node_modules,./other/clang-format-configuration/testdata/input/samples,./other/clang-format-configuration/testdata/golden,./other/clang-format-configuration/.clang-format,go.mod,go.sum,package-lock.json,poetry.lock,yarn.lock
77
builtin = clear,informal,en-GB_to_en-US
88
check-filenames =
99
check-hidden =

.github/workflows/check-files-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ on:
1515
jobs:
1616
run-determination:
1717
runs-on: ubuntu-latest
18+
permissions: {}
1819
outputs:
1920
result: ${{ steps.determination.outputs.result }}
20-
permissions: {}
2121
steps:
2222
- name: Determine if the rest of the workflow should run
2323
id: determination

.github/workflows/check-workflows-task.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ on:
77
paths:
88
- ".github/workflows/*.ya?ml"
99
- ".npmrc"
10+
- "package.json"
11+
- "package-lock.json"
1012
- "Taskfile.ya?ml"
1113
- "workflow-templates/*.ya?ml"
1214
pull_request:
1315
paths:
1416
- ".github/workflows/*.ya?ml"
1517
- ".npmrc"
18+
- "package.json"
19+
- "package-lock.json"
1620
- "Taskfile.ya?ml"
1721
- "workflow-templates/*.ya?ml"
1822
schedule:

Taskfile.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,7 @@ tasks:
462462
463463
docs:generate:
464464
desc: Create all generated documentation content
465+
run: when_changed
465466
# This is an "umbrella" task used to call any documentation generation processes the project has.
466467
# It can be left empty if there are none.
467468

@@ -586,7 +587,8 @@ tasks:
586587
! which ec \
587588
&>/dev/null
588589
then
589-
echo "ec not found or not in PATH. Please install: https://github.com/editorconfig-checker/editorconfig-checker#installation"
590+
echo "ec not found or not in PATH."
591+
echo "Please install: https://github.com/editorconfig-checker/editorconfig-checker#installation"
590592
exit 1
591593
fi
592594
- ec

workflow-templates/assets/deploy-mkdocs-versioned/siteversion/tests/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-python/__init__.py
1+
# Source:
2+
# https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-python/__init__.py
23
# Copyright 2021 ARDUINO SA (http://www.arduino.cc/)
34
#
45
# This software is released under the GNU General Public License version 3,

0 commit comments

Comments
 (0)