Skip to content

Commit 380bcc0

Browse files
authored
Merge pull request #648 from per1234/slash
Remove trailing slash from path variable values
2 parents 0e7f6c1 + b788b78 commit 380bcc0

File tree

14 files changed

+26
-26
lines changed

14 files changed

+26
-26
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ updates:
66
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/dependabot/README.md
77
# See: https://docs.github.com/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
88
- package-ecosystem: github-actions
9-
directory: /.github/workflows/
9+
directory: /.github/workflows
1010
open-pull-requests-limit: 100
1111
schedule:
1212
cronjob: 0 12 * * *
@@ -18,7 +18,7 @@ updates:
1818

1919
# Configure check for outdated GitHub Actions actions in workflow templates.
2020
- package-ecosystem: github-actions
21-
directory: /workflow-templates/
21+
directory: /workflow-templates
2222
open-pull-requests-limit: 100
2323
schedule:
2424
cronjob: 0 13 * * *

.github/workflows/check-license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
matrix:
6767
check-license:
6868
# TODO: Add additional paths where license files should be
69-
- path: ./
69+
- path: .
7070
# TODO: Define the project's license file name here:
7171
expected-filename: LICENSE.txt
7272
# SPDX identifier: https://spdx.org/licenses/

Taskfile.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ vars:
1111
DEFAULT_CLANG_FORMAT_VERSION: 14.0.0
1212
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/npm-task/Taskfile.yml
1313
# Path of the project's primary npm-managed project:
14-
DEFAULT_NPM_PROJECT_PATH: ./
14+
DEFAULT_NPM_PROJECT_PATH: .
1515

1616
tasks:
1717
check:
@@ -95,7 +95,7 @@ tasks:
9595
deps:
9696
- task: npm:install-deps
9797
vars:
98-
PROJECT_PATH: ./
98+
PROJECT_PATH: .
9999
cmds:
100100
- |
101101
wget \
@@ -396,7 +396,7 @@ tasks:
396396
config:sync:
397397
desc: Sync configuration files from templates
398398
vars:
399-
REPOSITORY_ROOT_PATH: "./"
399+
REPOSITORY_ROOT_PATH: "."
400400
WORKFLOW_TEMPLATE_ASSETS_PATH: "./workflow-templates/assets"
401401
cmds:
402402
- |
@@ -656,7 +656,7 @@ tasks:
656656
deps:
657657
- task: npm:install-deps
658658
vars:
659-
PROJECT_PATH: ./
659+
PROJECT_PATH: .
660660
cmds:
661661
- |
662662
npx \
@@ -788,7 +788,7 @@ tasks:
788788
- task: docs:generate
789789
- task: npm:install-deps
790790
vars:
791-
PROJECT_PATH: ./
791+
PROJECT_PATH: .
792792
cmds:
793793
- |
794794
npx \
@@ -801,7 +801,7 @@ tasks:
801801
deps:
802802
- task: npm:install-deps
803803
vars:
804-
PROJECT_PATH: ./
804+
PROJECT_PATH: .
805805
cmds:
806806
- |
807807
npx \
@@ -815,7 +815,7 @@ tasks:
815815
deps:
816816
- task: npm:install-deps
817817
vars:
818-
PROJECT_PATH: ./
818+
PROJECT_PATH: .
819819
cmds:
820820
- |
821821
npx \

workflow-templates/assets/check-action-metadata-task/Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tasks:
1313
deps:
1414
- task: npm:install-deps
1515
vars:
16-
PROJECT_PATH: ./
16+
PROJECT_PATH: .
1717
cmds:
1818
- |
1919
wget \

workflow-templates/assets/check-markdown-task/Taskfile.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tasks:
4040
- task: docs:generate
4141
- task: npm:install-deps
4242
vars:
43-
PROJECT_PATH: ./
43+
PROJECT_PATH: .
4444
cmds:
4545
- |
4646
npx \
@@ -53,7 +53,7 @@ tasks:
5353
deps:
5454
- task: npm:install-deps
5555
vars:
56-
PROJECT_PATH: ./
56+
PROJECT_PATH: .
5757
cmds:
5858
- |
5959
npx \
@@ -67,7 +67,7 @@ tasks:
6767
deps:
6868
- task: npm:install-deps
6969
vars:
70-
PROJECT_PATH: ./
70+
PROJECT_PATH: .
7171
cmds:
7272
- |
7373
npx \

workflow-templates/assets/check-prettier-formatting-task/Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tasks:
88
deps:
99
- task: npm:install-deps
1010
vars:
11-
PROJECT_PATH: ./
11+
PROJECT_PATH: .
1212
cmds:
1313
- |
1414
npx \

workflow-templates/assets/check-toc-task/Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tasks:
1212
deps:
1313
- task: npm:install-deps
1414
vars:
15-
PROJECT_PATH: ./
15+
PROJECT_PATH: .
1616
cmds:
1717
- |
1818
npx \

workflow-templates/assets/check-workflows-task/Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tasks:
1414
deps:
1515
- task: npm:install-deps
1616
vars:
17-
PROJECT_PATH: ./
17+
PROJECT_PATH: .
1818
cmds:
1919
- |
2020
wget \

workflow-templates/assets/dependabot/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ updates:
66
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/dependabot/README.md
77
# See: https://docs.github.com/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
88
- package-ecosystem: github-actions
9-
directory: /.github/workflows/
9+
directory: /.github/workflows
1010
open-pull-requests-limit: 100
1111
schedule:
1212
cronjob: 0 12 * * *

workflow-templates/assets/go-task/Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: "3"
44
vars:
55
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/go-task/Taskfile.yml
66
# Path of the project's primary Go module:
7-
DEFAULT_GO_MODULE_PATH: ./
7+
DEFAULT_GO_MODULE_PATH: .
88
DEFAULT_GO_PACKAGES:
99
sh: |
1010
echo $(

0 commit comments

Comments
 (0)