Skip to content

Commit 29b0ba9

Browse files
committed
json settings for vscode
1 parent 0b249c6 commit 29b0ba9

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

.github/workflows/cleanup-ghcr.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: "Prune old GHCR images"
22

33
on:
4+
schedule:
5+
- cron: '0 2 * * *' # daily at 02:00 UTC
6+
push:
7+
branches: [ docker ]
48
registry_package:
59
types: [ published ]
610
package_type: container
@@ -62,9 +66,4 @@ jobs:
6266
done
6367
fi
6468
done
65-
done
66-
67-
# schedule:
68-
# - cron: '0 2 * * *' # daily at 02:00 UTC
69-
# push:
70-
# branches: [ docker ]
69+
done

docker/.vscode/settings.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
// Allow the VS Code widget renderer to fetch JS directly
3+
"jupyter.widgetScriptSources": [
4+
"localhost:8888",
5+
"jsdelivr.com",
6+
"unpkg.com"
7+
],
8+
9+
// Make sure VS Code always uses the container’s Python
10+
"python.defaultInterpreterPath": "/opt/conda/bin/python"
11+
}

0 commit comments

Comments
 (0)