Skip to content

Commit 6b2f42e

Browse files
committed
Merge branch 'develop' into 289-bbox-concat
2 parents cd3b3cc + 79f43e1 commit 6b2f42e

File tree

2,336 files changed

+313271
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,336 files changed

+313271
-0
lines changed

.github/workflows/codecov.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "🧪 Test"
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- develop
8+
pull_request:
9+
branches:
10+
- main
11+
- develop
12+
jobs:
13+
test-and-codecov:
14+
name: "🤙 Call SDK test workflow"
15+
uses: clamsproject/.github/.github/workflows/sdk-codecov.yml@main
16+
secrets:
17+
CC_REPO_UPLOAD_TOKEN: ${{ secrets.CODECOV_UPLOAD_TOKEN_MMIF_PYTHON }}
18+

.github/workflows/issue-assign.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: "🙆 Assign issue"
2+
3+
on:
4+
create:
5+
6+
jobs:
7+
call-assign:
8+
if: github.ref_type == 'branch'
9+
name: "🤙 Call assignment workflow"
10+
uses: clamsproject/.github/.github/workflows/repo-issue-assign.yml@main
11+
secrets: inherit

.github/workflows/issue-close.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "🙅 Unassign assignees"
2+
3+
on:
4+
issues:
5+
types:
6+
- closed
7+
pull_request:
8+
types:
9+
- closed
10+
11+
jobs:
12+
call-unassign:
13+
name: "🤙 Call unassignment workflow"
14+
uses: clamsproject/.github/.github/workflows/repo-issue-close.yml@main
15+
secrets: inherit
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "🗂 Add issue to `infra` GHP"
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- transferred
8+
pull_request:
9+
types:
10+
- opened
11+
12+
jobs:
13+
call-assign:
14+
name: "🤙 Call GHP workflow"
15+
uses: clamsproject/.github/.github/workflows/repo-issue-project.yml@main
16+
secrets: inherit
17+
with:
18+
projectnum: 10

.github/workflows/publish.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "📦 Publish (docs, PyPI)"
2+
3+
on:
4+
push:
5+
tags:
6+
- '[0-9]+.[0-9]+.[0-9]+'
7+
8+
jobs:
9+
packge-and-upload:
10+
name: "🤙 Call SDK publish workflow"
11+
uses: clamsproject/.github/.github/workflows/sdk-publish.yml@main
12+
secrets: inherit
13+

.gitignore

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# linux
2+
*~
3+
.directory # KDE directory preferences
4+
.Trash-* # Linux trash folder which might appear on any partition or disk
5+
6+
# macos
7+
.DS_Store
8+
.AppleDouble
9+
.LSOverride
10+
Icon # Icon must end with two \r
11+
._* # Thumbnails
12+
.DocumentRevisions-V100 # Files that might appear in the root of a volume
13+
.fseventsd
14+
.Spotlight-V100
15+
.TemporaryItems
16+
.Trashes
17+
.VolumeIcon.icns
18+
.AppleDB # Directories potentially created on remote AFP share
19+
.AppleDesktop
20+
Network Trash Folder
21+
Temporary Items
22+
.apdisk
23+
24+
# windows
25+
Thumbs.db
26+
ehthumbs.db
27+
Desktop.ini
28+
$RECYCLE.BIN/
29+
*.cab # Windows Installer files
30+
*.msi
31+
*.msm
32+
*.msp
33+
*.lnk # Windows shortcuts
34+
35+
# idea
36+
.idea
37+
*.iml
38+
out
39+
gen
40+
41+
# sqlite
42+
*.db
43+
*.sqlite3
44+
45+
# java
46+
*.class
47+
.mtj.tmp/ # Mobile Tools for Java (J2ME)
48+
target/ # Package Files #
49+
*.jar
50+
*.war
51+
*.ear
52+
hs_err_pid* # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
53+
54+
# python
55+
**/*.pyc
56+
**/__pycache__
57+
**/dist
58+
**/*.egg-info
59+
**/.pytype
60+
build/**
61+
.coverage
62+
coverage.xml
63+
htmlcov
64+
65+
# ruby and jekyll files
66+
Gemfile.lock
67+
docs/**/_site/**
68+
69+
# ctag generated file
70+
tags
71+
.tags
72+
73+
# auto-generated files
74+
mmif/ver
75+
mmif/res
76+
mmif/vocabulary
77+
./VERSION*
78+
.hypothesis
79+
80+
81+
# sphinx/autodoc files
82+
documentation/_build/
83+
84+
/VERSION

0 commit comments

Comments
 (0)