-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'bep-016' into tensor_as_representation
- Loading branch information
Showing
241 changed files
with
23,057 additions
and
7,408 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
ignore: | ||
- "*/*/tests/*" | ||
- "**/tests/*" | ||
|
||
- "*/*/tests/*" | ||
- "**/tests/*" | ||
codecov: | ||
token: 7e84a7fb-8f7e-45f5-8dcc-9f5219fa3855 |
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,11 @@ | ||
sub-directory->subdirectory | ||
Sub-directory->Subdirectory | ||
sub-directories->subdirectories | ||
Sub-directories->Subdirectories | ||
file name->filename | ||
File name->Filename | ||
file names->filenames | ||
File names->Filenames | ||
folder->directory | ||
Folder->Directory | ||
Folders->Directories |
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,8 @@ | ||
[codespell] | ||
skip = *.js,*.svg,*.eps,.git,node_modules,env,venv,.mypy_cache,package-lock.json,CITATION.cff,tools/new_contributors.tsv,./tools/schemacode/docs/build | ||
ignore-words-list = fo,te,als,Acknowledgements,acknowledgements,weill,bu,winn,manuel | ||
builtin = clear,rare,en-GB_to_en-US | ||
# this overloads default dictionaries and I have not yet figured out | ||
# how to have multiple https://github.com/codespell-project/codespell/issues/2727 | ||
# dictionary = .codespell_dict | ||
exclude-file = src/CHANGES.md |
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,27 @@ | ||
# labeler "full" schema | ||
# https://github.com/marketplace/actions/auto-labeler | ||
|
||
# enable labeler on issues, prs, or both. | ||
enable: | ||
issues: false | ||
prs: true | ||
# comments object allows you to specify a different message for issues and prs | ||
|
||
comments: | ||
prs: | | ||
I have applied any labels matching special text in your title and description. | ||
Please review the labels and make any necessary changes. | ||
# Labels is an object where: | ||
# - keys are labels | ||
# - values are objects of { include: [ pattern ], exclude: [ pattern ] } | ||
# - pattern must be a valid regex, and is applied globally to | ||
# title + description of issues and/or prs (see enabled config above) | ||
# - 'include' patterns will associate a label if any of these patterns match | ||
# - 'exclude' patterns will ignore this label if any of these patterns match | ||
labels: | ||
exclude-from-changelog: | ||
include: | ||
- 'pre-commit\.ci' | ||
exclude: [] |
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
name: "Label PRs" | ||
# See https://github.com/marketplace/actions/auto-labeler | ||
|
||
on: | ||
|
||
pull_request_target: | ||
types: [opened] | ||
|
||
jobs: | ||
|
||
labeler: | ||
runs-on: ubuntu-latest | ||
|
||
if: github.repository_owner == 'bids-standard' | ||
|
||
steps: | ||
- name: Check Labels | ||
id: labeler | ||
uses: jimschubert/labeler-action@v2 | ||
with: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,18 @@ | ||
on: [status] | ||
|
||
jobs: | ||
circleci_artifacts_redirector_job: | ||
runs-on: ubuntu-latest | ||
if: "${{ startsWith(github.event.context, 'ci/circleci: build_docs_pdf') }}" | ||
permissions: | ||
statuses: write | ||
name: Run CircleCI artifacts redirector | ||
steps: | ||
- name: GitHub Action step | ||
uses: larsoner/circleci-artifacts-redirector-action@master | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
api-token: ${{ secrets.CIRCLECI_TOKEN }} | ||
artifact-path: 0/bids-spec.pdf | ||
circleci-jobs: build_docs_pdf | ||
job-title: Check the rendered PDF version here! |
Oops, something went wrong.