Skip to content

Commit 88ce59a

Browse files
authored
refactor: migrate from dtvem org to CodingWithCalvin (#180)
1 parent ddd578c commit 88ce59a

80 files changed

Lines changed: 226 additions & 662 deletions

Some content is hidden

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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body:
88
value: |
99
Thanks for taking the time to report a bug! Please fill out the information below to help us diagnose and fix the issue.
1010
11-
**Note:** If you have a question or need help, please use [GitHub Discussions](https://github.com/dtvem/dtvem/discussions) instead of opening an issue.
11+
**Note:** If you have a question or need help, please use [GitHub Discussions](https://github.com/CodingWithCalvin/dtvem.cli/discussions) instead of opening an issue.
1212
1313
- type: textarea
1414
id: description
@@ -128,7 +128,7 @@ body:
128128
id: terms
129129
attributes:
130130
label: Code of Conduct
131-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/dtvem/dtvem/blob/main/CODE_OF_CONDUCT.md)
131+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/CodingWithCalvin/dtvem.cli/blob/main/CODE_OF_CONDUCT.md)
132132
options:
133133
- label: I agree to follow this project's Code of Conduct
134134
required: true

.github/ISSUE_TEMPLATE/build_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ body:
6969
id: terms
7070
attributes:
7171
label: Code of Conduct
72-
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/dtvem/dtvem/blob/main/CODE_OF_CONDUCT.md)
72+
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/CodingWithCalvin/dtvem.cli/blob/main/CODE_OF_CONDUCT.md)
7373
options:
7474
- label: I agree to follow this project's Code of Conduct
7575
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: 💬 Ask a Question
4-
url: https://github.com/dtvem/dtvem/discussions
4+
url: https://github.com/CodingWithCalvin/dtvem.cli/discussions
55
about: Have a question? Use GitHub Discussions instead of opening an issue. Get help from the community!
66
- name: 📖 Documentation
7-
url: https://github.com/dtvem/dtvem/blob/main/README.md
7+
url: https://github.com/CodingWithCalvin/dtvem.cli/blob/main/README.md
88
about: Check the README for comprehensive usage instructions, examples, and guides
99
- name: 🗨️ General Discussions
10-
url: https://github.com/dtvem/dtvem/discussions
10+
url: https://github.com/CodingWithCalvin/dtvem.cli/discussions
1111
about: Share ideas, feedback, or discuss anything related to dtvem with the community

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body:
88
value: |
99
Thanks for suggesting a new feature! We appreciate your ideas for improving dtvem.
1010
11-
**Note:** If you have a question or want to discuss ideas before submitting a formal feature request, please use [GitHub Discussions](https://github.com/dtvem/dtvem/discussions).
11+
**Note:** If you have a question or want to discuss ideas before submitting a formal feature request, please use [GitHub Discussions](https://github.com/CodingWithCalvin/dtvem.cli/discussions).
1212
1313
- type: textarea
1414
id: problem
@@ -98,7 +98,7 @@ body:
9898
id: terms
9999
attributes:
100100
label: Code of Conduct
101-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/dtvem/dtvem/blob/main/CODE_OF_CONDUCT.md)
101+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/CodingWithCalvin/dtvem.cli/blob/main/CODE_OF_CONDUCT.md)
102102
options:
103103
- label: I agree to follow this project's Code of Conduct
104104
required: true

.github/workflows/contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
GH_TOKEN: ${{ secrets.CONTRIBUTORS_TOKEN }}
1919
run: |
2020
# Fetch contributors from GitHub API (exclude bots)
21-
contributors=$(gh api repos/dtvem/dtvem/contributors --paginate --jq '.[] | select(.type != "Bot") | select(.login | test("\\[bot\\]$") | not) | "<a href=\"\(.html_url)\"><img src=\"\(.avatar_url)\" width=\"64\" height=\"64\" alt=\"\(.login)\"/></a>"')
21+
contributors=$(gh api repos/CodingWithCalvin/dtvem.cli/contributors --paginate --jq '.[] | select(.type != "Bot") | select(.login | test("\\[bot\\]$") | not) | "<a href=\"\(.html_url)\"><img src=\"\(.avatar_url)\" width=\"64\" height=\"64\" alt=\"\(.login)\"/></a>"')
2222
2323
# Build the contributors section
2424
contrib_section="<!-- readme: contributors -start -->

.github/workflows/integration-test-migrations.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,78 +13,78 @@ jobs:
1313
# ==========================================================================
1414
migrate-node-ubuntu-system:
1515
name: Node.js - System (Ubuntu)
16-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-ubuntu-system.yml@main
16+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-ubuntu-system.yml@main
1717

1818
migrate-node-ubuntu-nvm:
1919
name: Node.js - nvm (Ubuntu)
20-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-ubuntu-nvm.yml@main
20+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-ubuntu-nvm.yml@main
2121

2222
migrate-node-macos-system:
2323
name: Node.js - System (macOS)
24-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-macos-system.yml@main
24+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-macos-system.yml@main
2525

2626
migrate-node-macos-fnm:
2727
name: Node.js - fnm (macOS)
28-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-macos-fnm.yml@main
28+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-macos-fnm.yml@main
2929

3030
migrate-node-windows-system:
3131
name: Node.js - System (Windows)
32-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-windows-system.yml@main
32+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-windows-system.yml@main
3333

3434
migrate-node-windows-nvm:
3535
name: Node.js - nvm-windows (Windows)
36-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-windows-nvm.yml@main
36+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-windows-nvm.yml@main
3737

3838
# ==========================================================================
3939
# Python Migrations
4040
# ==========================================================================
4141
migrate-python-ubuntu-system:
4242
name: Python - System (Ubuntu)
43-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-ubuntu-system.yml@main
43+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-ubuntu-system.yml@main
4444

4545
migrate-python-ubuntu-pyenv:
4646
name: Python - pyenv (Ubuntu)
47-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-ubuntu-pyenv.yml@main
47+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-ubuntu-pyenv.yml@main
4848

4949
migrate-python-macos-system:
5050
name: Python - System (macOS)
51-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-macos-system.yml@main
51+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-macos-system.yml@main
5252

5353
migrate-python-macos-pyenv:
5454
name: Python - pyenv (macOS)
55-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-macos-pyenv.yml@main
55+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-macos-pyenv.yml@main
5656

5757
migrate-python-windows-system:
5858
name: Python - System (Windows)
59-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-windows-system.yml@main
59+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-windows-system.yml@main
6060

6161
migrate-python-windows-pyenv:
6262
name: Python - pyenv-win (Windows)
63-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-windows-pyenv.yml@main
63+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-windows-pyenv.yml@main
6464

6565
# ==========================================================================
6666
# Ruby Migrations
6767
# ==========================================================================
6868
migrate-ruby-ubuntu-system:
6969
name: Ruby - System (Ubuntu)
70-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-ubuntu-system.yml@main
70+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-ubuntu-system.yml@main
7171

7272
migrate-ruby-ubuntu-rbenv:
7373
name: Ruby - rbenv (Ubuntu)
74-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-ubuntu-rbenv.yml@main
74+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-ubuntu-rbenv.yml@main
7575

7676
migrate-ruby-macos-system:
7777
name: Ruby - System (macOS)
78-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-macos-system.yml@main
78+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-macos-system.yml@main
7979

8080
migrate-ruby-macos-rbenv:
8181
name: Ruby - rbenv (macOS)
82-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-macos-rbenv.yml@main
82+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-macos-rbenv.yml@main
8383

8484
migrate-ruby-windows-system:
8585
name: Ruby - System (Windows)
86-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-windows-system.yml@main
86+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-windows-system.yml@main
8787

8888
migrate-ruby-windows-uru:
8989
name: Ruby - uru (Windows)
90-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-windows-uru.yml@main
90+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-windows-uru.yml@main

.github/workflows/integration-test-runtimes.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ permissions:
1010
jobs:
1111
node:
1212
name: Node.js
13-
uses: dtvem/.github/.github/workflows/integration-test-node.yml@main
13+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-node.yml@main
1414
with:
1515
version1: '20.18.0'
1616
version2: '22.11.0'
1717

1818
python:
1919
name: Python
20-
uses: dtvem/.github/.github/workflows/integration-test-python.yml@main
20+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-python.yml@main
2121
with:
2222
version1: '3.11.9'
2323
version2: '3.12.7'
2424

2525
ruby:
2626
name: Ruby
27-
uses: dtvem/.github/.github/workflows/integration-test-ruby.yml@main
27+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-ruby.yml@main
2828
with:
2929
version1: '3.3.6'
3030
version2: '3.4.1'

.github/workflows/integration-test.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ jobs:
1616
# ==========================================================================
1717
node:
1818
name: Node.js
19-
uses: dtvem/.github/.github/workflows/integration-test-node.yml@main
19+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-node.yml@main
2020
with:
2121
version1: '20.18.0'
2222
version2: '22.11.0'
2323

2424
python:
2525
name: Python
26-
uses: dtvem/.github/.github/workflows/integration-test-python.yml@main
26+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-python.yml@main
2727
with:
2828
version1: '3.11.9'
2929
version2: '3.12.7'
3030

3131
ruby:
3232
name: Ruby
33-
uses: dtvem/.github/.github/workflows/integration-test-ruby.yml@main
33+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-ruby.yml@main
3434
with:
3535
version1: '3.3.6'
3636
version2: '3.4.1'
@@ -40,72 +40,72 @@ jobs:
4040
# ==========================================================================
4141
migrate-node-ubuntu-system:
4242
name: Migrate Node.js from System (Ubuntu)
43-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-ubuntu-system.yml@main
43+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-ubuntu-system.yml@main
4444

4545
migrate-node-ubuntu-nvm:
4646
name: Migrate Node.js from nvm (Ubuntu)
47-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-ubuntu-nvm.yml@main
47+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-ubuntu-nvm.yml@main
4848

4949
migrate-node-macos-system:
5050
name: Migrate Node.js from System (macOS)
51-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-macos-system.yml@main
51+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-macos-system.yml@main
5252

5353
migrate-node-windows-system:
5454
name: Migrate Node.js from System (Windows)
55-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-windows-system.yml@main
55+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-windows-system.yml@main
5656

5757
migrate-node-macos-fnm:
5858
name: Migrate Node.js from fnm (macOS)
59-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-macos-fnm.yml@main
59+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-macos-fnm.yml@main
6060

6161
migrate-node-windows-nvm:
6262
name: Migrate Node.js from nvm-windows (Windows)
63-
uses: dtvem/.github/.github/workflows/integration-test-migrate-node-windows-nvm.yml@main
63+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-node-windows-nvm.yml@main
6464

6565
migrate-python-ubuntu-system:
6666
name: Migrate Python from System (Ubuntu)
67-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-ubuntu-system.yml@main
67+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-ubuntu-system.yml@main
6868

6969
migrate-python-ubuntu-pyenv:
7070
name: Migrate Python from pyenv (Ubuntu)
71-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-ubuntu-pyenv.yml@main
71+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-ubuntu-pyenv.yml@main
7272

7373
migrate-python-macos-system:
7474
name: Migrate Python from System (macOS)
75-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-macos-system.yml@main
75+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-macos-system.yml@main
7676

7777
migrate-python-macos-pyenv:
7878
name: Migrate Python from pyenv (macOS)
79-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-macos-pyenv.yml@main
79+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-macos-pyenv.yml@main
8080

8181
migrate-python-windows-system:
8282
name: Migrate Python from System (Windows)
83-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-windows-system.yml@main
83+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-windows-system.yml@main
8484

8585
migrate-python-windows-pyenv:
8686
name: Migrate Python from pyenv-win (Windows)
87-
uses: dtvem/.github/.github/workflows/integration-test-migrate-python-windows-pyenv.yml@main
87+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-python-windows-pyenv.yml@main
8888

8989
migrate-ruby-ubuntu-system:
9090
name: Migrate Ruby from System (Ubuntu)
91-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-ubuntu-system.yml@main
91+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-ubuntu-system.yml@main
9292

9393
migrate-ruby-ubuntu-rbenv:
9494
name: Migrate Ruby from rbenv (Ubuntu)
95-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-ubuntu-rbenv.yml@main
95+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-ubuntu-rbenv.yml@main
9696

9797
migrate-ruby-macos-system:
9898
name: Migrate Ruby from System (macOS)
99-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-macos-system.yml@main
99+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-macos-system.yml@main
100100

101101
migrate-ruby-macos-rbenv:
102102
name: Migrate Ruby from rbenv (macOS)
103-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-macos-rbenv.yml@main
103+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-macos-rbenv.yml@main
104104

105105
migrate-ruby-windows-system:
106106
name: Migrate Ruby from System (Windows)
107-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-windows-system.yml@main
107+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-windows-system.yml@main
108108

109109
migrate-ruby-windows-uru:
110110
name: Migrate Ruby from uru (Windows)
111-
uses: dtvem/.github/.github/workflows/integration-test-migrate-ruby-windows-uru.yml@main
111+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/integration-test-migrate-ruby-windows-uru.yml@main

.github/workflows/preview-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
generate:
1010
name: Generate
11-
uses: dtvem/.github/.github/workflows/generate-changelog.yml@main
11+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/generate-changelog.yml@main
1212
secrets: inherit
1313

1414
preview:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ jobs:
229229
changelog:
230230
name: Generate Changelog
231231
needs: build
232-
uses: dtvem/.github/.github/workflows/generate-changelog.yml@main
232+
uses: CodingWithCalvin/.github/.github/workflows/dtvem/generate-changelog.yml@main
233233
secrets: inherit
234234

235235
release:

0 commit comments

Comments
 (0)