Skip to content

Commit c61415f

Browse files
committed
build: minor clean-up
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 9f88c8c commit c61415f

9 files changed

+20
-5
lines changed

Diff for: .github/ISSUE_TEMPLATE/bug_report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,5 @@ body:
117117
options:
118118
- label: Read and understood the [Code of Conduct](https://github.com/stdlib-js/stdlib/blob/develop/CODE_OF_CONDUCT.md).
119119
required: true
120-
- label: Searched for existing issues and pull requests.
120+
- label: Searched for existing issues and pull requests.
121121
required: true

Diff for: .github/ISSUE_TEMPLATE/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818

1919
contact_links:
2020
- name: 👩‍🏫 Frequently Asked Questions
21-
url: https://github.com/stdlib-js/stdlib/blob/develop/FAQ.md
21+
url: https://github.com/stdlib-js/stdlib/blob/develop/FAQ.md
2222
about: Consult the FAQ in case we have already answered your question there.
2323
- name: 💬 Question
24-
url: https://gitter.im/stdlib-js/stdlib
24+
url: https://gitter.im/stdlib-js/stdlib
2525
about: Got a (non-bug related) question we haven't already answered? Ask us on Gitter! 🤗
2626
- name: 👏 Support Us
2727
url: https://github.com/stdlib-js/stdlib/blob/develop/docs/support_the_project.md

Diff for: .github/workflows/markdown_links.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ name: markdown_links
2323
on:
2424
schedule:
2525
# Run the workflow once a month on the 1st day of every month:
26-
- cron: "0 0 1 * *"
26+
- cron: '0 0 1 * *'
2727

2828
# Allow the workflow to be manually run:
2929
workflow_dispatch:

Diff for: .github/workflows/random_examples.yml

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ jobs:
6363

6464
# Specify whether to download Git-LFS files:
6565
lfs: false
66+
67+
# Avoid storing GitHub token in local Git configuration:
68+
persist-credentials: false
6669
timeout-minutes: 10
6770

6871
# Install Node.js:

Diff for: .github/workflows/run_affected_benchmarks.yml

+3
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ jobs:
7373

7474
# Specify whether to download Git-LFS files:
7575
lfs: false
76+
77+
# Avoid storing GitHub token in local Git configuration:
78+
persist-credentials: false
7679
timeout-minutes: 10
7780

7881
# Install Node.js:

Diff for: .github/workflows/run_affected_examples.yml

+3
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ jobs:
6969

7070
# Specify whether to download Git-LFS files:
7171
lfs: false
72+
73+
# Avoid storing GitHub token in local Git configuration:
74+
persist-credentials: false
7275
timeout-minutes: 10
7376

7477
# Install Node.js:

Diff for: .github/workflows/run_affected_tests.yml

+3
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ jobs:
104104

105105
# Specify whether to download Git-LFS files:
106106
lfs: false
107+
108+
# Avoid storing GitHub token in local Git configuration:
109+
persist-credentials: false
107110
timeout-minutes: 10
108111

109112
# Install Node.js:

Diff for: .github/workflows/track_todos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ name: track_todos
2323
on:
2424
schedule:
2525
# Run the workflow once a month on the 1st day of every month:
26-
- cron: "0 0 1 * *"
26+
- cron: '0 0 1 * *'
2727

2828
# Allow the workflow to be manually run:
2929
workflow_dispatch:

Diff for: .github/workflows/windows_test_npm_install.yml

+3
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,9 @@ jobs:
147147

148148
# Specify whether to download Git-LFS files:
149149
lfs: false
150+
151+
# Do not persist GitHub token in local Git configuration since no continued authentication is needed:
152+
persist-credentials: false
150153
timeout-minutes: 10
151154

152155
# Install MSYS2:

0 commit comments

Comments
 (0)