Skip to content

Commit 70d2219

Browse files
refactor: set org to sciexp
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
1 parent df78e3c commit 70d2219

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
contact_links:
22
- name: questions
3-
url: https://github.com/cameronraysmith/python-nix-template/discussions
4-
about: please post and host discussion in https://github.com/cameronraysmith/python-nix-template/discussions
3+
url: https://github.com/sciexp/python-nix-template/discussions
4+
about: please post and host discussion in https://github.com/sciexp/python-nix-template/discussions

.github/SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# security
22

3-
To report a potential security vulnerability, please follow the [instructions to create a draft security advisory](https://github.com/cameronraysmith/python-nix-template/security/advisories/new).
3+
To report a potential security vulnerability, please follow the [instructions to create a draft security advisory](https://github.com/sciexp/python-nix-template/security/advisories/new).

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ jobs:
199199
with:
200200
triggerEventName: ${{ github.event_name }}
201201
imageName: "${{ matrix.image }}"
202-
imageFQN: "ghcr.io/cameronraysmith/${{ matrix.image }}"
202+
imageFQN: "ghcr.io/sciexp/${{ matrix.image }}"
203203
nixCommand: "nix run .#${{ matrix.image }}Manifest --impure --accept-flake-config --print-build-logs --show-trace"
204204
releaseVersion: ""
205205
cachixCacheName: ${{ vars.CACHIX_CACHE_NAME }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You can use [omnix](https://omnix.page/om/init.html)[^omnix] to initialize this
1212

1313
```sh
1414
nix --accept-flake-config run github:juspay/omnix -- \
15-
init github:cameronraysmith/python-nix-template -o new-python-project
15+
init github:sciexp/python-nix-template -o new-python-project
1616
```
1717

1818
[^omnix]: If you have omnix installed you just need `om init ...` and not `nix run ... -- init`
@@ -127,8 +127,8 @@ default # List all recipes
127127

128128
[CI/CD]
129129
gcloud-context # Set gcloud context
130-
ghsecrets repo="cameronraysmith/python-nix-template" # Update github secrets for repo from environment variables
131-
ghvars repo="cameronraysmith/python-nix-template" # Update github vars for repo from environment variables
130+
ghsecrets repo="sciexp/python-nix-template" # Update github secrets for repo from environment variables
131+
ghvars repo="sciexp/python-nix-template" # Update github vars for repo from environment variables
132132
pre-commit # Run pre-commit hooks (see pre-commit.nix and note the yaml is git-ignored)
133133

134134
[conda package]

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ gcloud-context:
1919

2020
# Update github vars for repo from environment variables
2121
[group('CI/CD')]
22-
ghvars repo="cameronraysmith/python-nix-template":
22+
ghvars repo="sciexp/python-nix-template":
2323
@echo "vars before updates:"
2424
@echo
2525
PAGER=cat gh variable list --repo={{ repo }}
@@ -34,7 +34,7 @@ ghvars repo="cameronraysmith/python-nix-template":
3434

3535
# Update github secrets for repo from environment variables
3636
[group('CI/CD')]
37-
ghsecrets repo="cameronraysmith/python-nix-template":
37+
ghsecrets repo="sciexp/python-nix-template":
3838
@echo "secrets before updates:"
3939
@echo
4040
PAGER=cat gh secret list --repo={{ repo }}
@@ -284,7 +284,7 @@ check-secrets:
284284
# Initialize new project from template
285285
[group('template')]
286286
template-init:
287-
echo "Use: nix --accept-flake-config run github:juspay/omnix -- init github:cameronraysmith/python-nix-template -o new-python-project"
287+
echo "Use: nix --accept-flake-config run github:juspay/omnix -- init github:sciexp/python-nix-template -o new-python-project"
288288

289289
# Verify template functionality by creating and checking a test project
290290
[group('template')]

nix/modules/containers.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
} // extraConfig;
116116
};
117117

118-
gitHubOrg = "cameronraysmith";
118+
gitHubOrg = "sciexp";
119119
packageName = "python-nix-template";
120120
version = builtins.getEnv "VERSION";
121121

nix/modules/template.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
{
2020
name = "git-org";
2121
description = "GitHub organization or user name";
22-
placeholder = "cameronraysmith";
22+
placeholder = "sciexp";
2323
}
2424
{
2525
name = "author";

0 commit comments

Comments
 (0)