We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b249c6 commit 29b0ba9Copy full SHA for 29b0ba9
.github/workflows/cleanup-ghcr.yml
@@ -1,6 +1,10 @@
1
name: "Prune old GHCR images"
2
3
on:
4
+ schedule:
5
+ - cron: '0 2 * * *' # daily at 02:00 UTC
6
+ push:
7
+ branches: [ docker ]
8
registry_package:
9
types: [ published ]
10
package_type: container
@@ -62,9 +66,4 @@ jobs:
62
66
done
63
67
fi
64
68
65
- done
-
- # schedule:
- # - cron: '0 2 * * *' # daily at 02:00 UTC
69
- # push:
70
- # branches: [ docker ]
+ done
docker/.vscode/settings.json
@@ -0,0 +1,11 @@
+{
+ // Allow the VS Code widget renderer to fetch JS directly
+ "jupyter.widgetScriptSources": [
+ "localhost:8888",
+ "jsdelivr.com",
+ "unpkg.com"
+ ],
+
+ // Make sure VS Code always uses the container’s Python
+ "python.defaultInterpreterPath": "/opt/conda/bin/python"
11
+}
0 commit comments