Skip to content

Commit e798e8c

Browse files
committed
Merge remote-tracking branch 'origin/main' into release
2 parents 13a7721 + f242543 commit e798e8c

13 files changed

Lines changed: 750 additions & 21 deletions

File tree

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "pip" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "daily"

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#
55
name: Deploy Next.js site to Pages
66

7+
78
on:
89
# Runs on pushes targeting the default branch
910
push:

.github/workflows/mypy.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
name: Mypy
2-
on: [push]
2+
3+
concurrency:
4+
group: ${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
6+
7+
on:
8+
push:
9+
branches:
10+
- main
11+
- release
12+
- dev
13+
pull_request:
14+
branches:
15+
- main
16+
- release
317

418
jobs:
519
Static-Type-Checking:

.github/workflows/pre-commit.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: pre-commit
22

3+
concurrency:
4+
group: ${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
6+
37
on:
48
pull_request:
59
push:

.github/workflows/publish-to-pypi.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99
name: Upload Python Package
1010

11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
14+
1115
on:
1216
release:
1317
types: [published]

.github/workflows/tests.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
name: Pytest
2-
on: [push]
2+
3+
concurrency:
4+
group: ${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
6+
7+
on:
8+
push:
9+
branches:
10+
- main
11+
- release
12+
- dev
13+
pull_request:
14+
branches:
15+
- main
16+
- release
317

418
jobs:
519
Pytest:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ If you want to try it out on Google Colab first, please check out our Colab Tuto
5454
<ol>
5555
<li> Basic
5656
<ol>
57-
<li> <a href="https://colab.research.google.com/drive/14hJOfzpA37PRUzdlFgiqVzUGIhhngqnz?usp=sharing">1.1 Playing with Sotopia in a Google Colab Notebook</a> </li>
58-
<li> <a href="https://colab.research.google.com/drive/1Gi2U3cA0KG1nekw1A0N0DZpx6gKrj8Nc?usp=sharing">1.2 Browsing sotopia data</a> </li>
57+
<li> <a href="https://colab.research.google.com/github/sotopia-lab/sotopia/blob/main/notebooks/tutorials/1.1-setup.ipynb">1.1 Playing with Sotopia in a Google Colab Notebook</a> </li>
58+
<li> <a href="https://colab.research.google.com/github/sotopia-lab/sotopia/blob/main/notebooks/tutorials/1.2-browse-data.ipynb">1.2 Browsing sotopia data</a> </li>
5959
</ol>
6060
</li>
6161
<li>

docs/public/favicon.png

4.46 KB
Loading

docs/public/favicon.svg

Lines changed: 6 additions & 13 deletions
Loading

0 commit comments

Comments
 (0)