Skip to content

Commit 4e7b192

Browse files
committed
chore(monorepo): Updated Github org name to storm-software
1 parent 2cdef19 commit 4e7b192

File tree

77 files changed

+2181
-2192
lines changed

Some content is hidden

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

77 files changed

+2181
-2192
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ DEFAULT_TIMEZONE="America/New_York"
2020
CI_REPO_OWNER="sullivanpj"
2121
CI_REPO_WORKER="🤖 Storm Bot"
2222
CI_REPO_NAME="stormstack"
23-
CI_REPO_URL="https://github.com/stormstack/stormstack"
23+
CI_REPO_URL="https://github.com/storm-software/stormstack"
2424
CI_BRANCH="main"
2525
CI_PRE_MAJOR=true
2626

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
If you want to make a small change, go ahead and raise a pull request, otherwise follow these steps:
66

7-
1. View the [Issues](https://github.com/stormstack/stormstack/issues) page to see a To-Do list of things to be implemented.
7+
1. View the [Issues](https://github.com/storm-software/stormstack/issues) page to see a To-Do list of things to be implemented.
88
2. Raise an issue or comment on an existing issue with what you want to contribute if one does not already exist.
99
3. When you get the go ahead, follow the coding guidelines and raise a pull request.
1010
4. Include a link to the issue in your pull request.

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ body:
6565
id: terms
6666
attributes:
6767
label: Code of Conduct
68-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/stormstack/stormstack/blob/main/CODE_OF_CONDUCT.md)
68+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/storm-software/stormstack/blob/main/CODE_OF_CONDUCT.md)
6969
options:
7070
- label: I agree to follow this project's Code of Conduct
7171
required: true

.github/ISSUE_TEMPLATE/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ body:
5050
id: terms
5151
attributes:
5252
label: Code of Conduct
53-
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/stormstack/stormstack/blob/main/CODE_OF_CONDUCT.md)
53+
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/storm-software/stormstack/blob/main/CODE_OF_CONDUCT.md)
5454
options:
5555
- label: I agree to follow this project's Code of Conduct
5656
required: true

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ body:
5151
label: Contribution
5252
description: Willingness to contribute
5353
options:
54-
- label: I'd be willing to implement this feature ([contributing guide](https://github.com/stormstack/stormstack/blob/main/CONTRIBUTING.md))
54+
- label: I'd be willing to implement this feature ([contributing guide](https://github.com/storm-software/stormstack/blob/main/CONTRIBUTING.md))
5555
required: false
5656
- type: checkboxes
5757
id: terms
5858
attributes:
5959
label: Code of Conduct
60-
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/stormstack/stormstack/blob/main/CODE_OF_CONDUCT.md)
60+
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/storm-software/stormstack/blob/main/CODE_OF_CONDUCT.md)
6161
options:
6262
- label: I agree to follow this project's Code of Conduct
6363
required: true

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Thank you good citizen for your hard work! Please provide the below details describing your PR.
66

7-
**Note:** Please read the [contributing guide](https://github.com/stormstack/stormstack/blob/main/.github/CONTRIBUTING.md) before raising a pull request.
7+
**Note:** Please read the [contributing guide](https://github.com/storm-software/stormstack/blob/main/.github/CONTRIBUTING.md) before raising a pull request.
88

99
## Pull request type
1010

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ env:
2424

2525
jobs:
2626
build-and-release:
27-
if: github.repository == 'stormstack/stormstack' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta')
27+
if: github.repository == 'storm-software/stormstack' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta')
2828
name: "Build & Release"
2929
runs-on: ubuntu-latest
3030
steps:

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ env:
3131

3232
jobs:
3333
deploy-docs:
34-
if: github.repository == 'stormstack/stormstack' && github.ref == 'refs/heads/main'
34+
if: github.repository == 'storm-software/stormstack' && github.ref == 'refs/heads/main'
3535
environment:
3636
name: github-pages
3737
url: ${{ steps.deployment.outputs.page_url }}

.storybook/themes/storm.theme.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ export default create({
2828
inputBorderRadius: 2,
2929

3030
brandTitle: "StormStack",
31-
brandUrl: "https://github.com/stormstack/stormstack",
32-
brandImage: require("../../assets/logo/storm-logo.svg"),
31+
brandUrl: "https://github.com/storm-software/stormstack",
32+
brandImage: require("../../assets/logo/storm-logo.svg")
3333
});

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div align="center"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/logo-banner.png" width="100%" altText="StormStack" /></div>
22

33
<div align="center">
4-
<a href="https://stormcloud.dev" target="_blank">Website</a> | <a href="https://stormcloud.dev/contact" target="_blank">Contact</a> | <a href="https://github.com/stormstack/stormstack" target="_blank">Repository</a> | <a href="https://stormstack.github.io/stormstack/" target="_blank">Documentation</a> | <a href="https://github.com/stormstack/stormstack/issues/new?assignees=&labels=bug&template=bug-report.yml&title=Bug Report%3A+">Report a Bug</a> | <a href="https://github.com/stormstack/stormstack/issues/new?assignees=&labels=enhancement&template=feature-request.yml&title=Feature Request%3A+">Request a Feature</a> | <a href="https://github.com/stormstack/stormstack/issues/new?assignees=&labels=documentation&template=documentation.yml&title=Documentation Request%3A+">Request Documentation</a> | <a href="https://github.com/stormstack/stormstack/discussions">Ask a Question</a>
4+
<a href="https://stormcloud.dev" target="_blank">Website</a> | <a href="https://stormcloud.dev/contact" target="_blank">Contact</a> | <a href="https://github.com/storm-software/stormstack" target="_blank">Repository</a> | <a href="https://stormstack.github.io/stormstack/" target="_blank">Documentation</a> | <a href="https://github.com/storm-software/stormstack/issues/new?assignees=&labels=bug&template=bug-report.yml&title=Bug Report%3A+">Report a Bug</a> | <a href="https://github.com/storm-software/stormstack/issues/new?assignees=&labels=enhancement&template=feature-request.yml&title=Feature Request%3A+">Request a Feature</a> | <a href="https://github.com/storm-software/stormstack/issues/new?assignees=&labels=documentation&template=documentation.yml&title=Documentation Request%3A+">Request Documentation</a> | <a href="https://github.com/storm-software/stormstack/discussions">Ask a Question</a>
55
</div>
66

77
<br />
@@ -11,13 +11,13 @@ StormStack is built using <a href="https://nx.dev/" target="_blank">Nx</a>, a se
1111

1212
<h3 align="center">💻 Visit <a href="https://stormcloud.dev" target="_blank">stormcloud.dev</a> to stay up to date with this developer<br /><br /></h3>
1313

14-
[![github](https://img.shields.io/github/package-json/v/stormstack/stormstack?style=for-the-badge&color=1fb2a6)](https://github.com/stormstack/stormstack)&nbsp;[![Nx](https://img.shields.io/badge/Nx-14.4.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-13.0.5-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![codecov.io](https://img.shields.io/codecov/c/github/commitizen/cz-cli.svg?style=for-the-badge&color=1fb2a6)](https://codecov.io/github/commitizen/cz-cli?branch=master)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)
14+
[![github](https://img.shields.io/github/package-json/v/storm-software/stormstack?style=for-the-badge&color=1fb2a6)](https://github.com/storm-software/stormstack)&nbsp;[![Nx](https://img.shields.io/badge/Nx-14.4.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-13.0.5-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![codecov.io](https://img.shields.io/codecov/c/github/commitizen/cz-cli.svg?style=for-the-badge&color=1fb2a6)](https://codecov.io/github/commitizen/cz-cli?branch=master)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)
1515

1616
<h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ - This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.<br /><br /></h3>
1717

1818
<!--#if GitHubActions-->
1919

20-
[![GitHub Actions Build History](https://buildstats.info/github/chart/stormstack/stormstack?branch=main&includeBuildsFromPullRequest=false)](https://github.com/stormstack/stormstack/actions)
20+
[![GitHub Actions Build History](https://buildstats.info/github/chart/storm-software/stormstack?branch=main&includeBuildsFromPullRequest=false)](https://github.com/storm-software/stormstack/actions)
2121

2222
<!--#endif-->
2323

@@ -185,11 +185,11 @@ Visit [Nx Cloud](https://nx.app/) to learn more.
185185

186186
# Roadmap
187187

188-
See the [open issues](https://github.com/stormstack/stormstack/issues) for a list of proposed features (and known issues).
188+
See the [open issues](https://github.com/storm-software/stormstack/issues) for a list of proposed features (and known issues).
189189

190-
- [Top Feature Requests](https://github.com/stormstack/stormstack/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc) (Add your votes using the 👍 reaction)
191-
- [Top Bugs](https://github.com/stormstack/stormstack/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Areactions-%2B1-desc) (Add your votes using the 👍 reaction)
192-
- [Newest Bugs](https://github.com/stormstack/stormstack/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
190+
- [Top Feature Requests](https://github.com/storm-software/stormstack/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc) (Add your votes using the 👍 reaction)
191+
- [Top Bugs](https://github.com/storm-software/stormstack/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Areactions-%2B1-desc) (Add your votes using the 👍 reaction)
192+
- [Newest Bugs](https://github.com/storm-software/stormstack/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
193193
<br /><br />
194194

195195
# Contributing
@@ -205,15 +205,15 @@ Please try to create bug reports that are:
205205

206206
Please adhere to this project's [code of conduct](.github/CODE_OF_CONDUCT.md).
207207

208-
You can use [markdownlint-cli](https://github.com/stormstack/stormstack/markdownlint-cli) to check for common markdown style inconsistency.
208+
You can use [markdownlint-cli](https://github.com/storm-software/stormstack/markdownlint-cli) to check for common markdown style inconsistency.
209209
<br /><br />
210210

211211
# Support
212212

213213
Reach out to the maintainer at one of the following places:
214214

215215
- [Contact](https://stormcloud.dev/contact)
216-
- [GitHub discussions](https://github.com/stormstack/stormstack/discussions)
216+
- [GitHub discussions](https://github.com/storm-software/stormstack/discussions)
217217
218218

219219
# License
@@ -232,7 +232,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
232232
<table>
233233
<tbody>
234234
<tr>
235-
<td align="center"><a href="http://www.sullypat.com/"><img src="https://avatars.githubusercontent.com/u/99053093?v=4?s=100" width="100px;" alt="Patrick Sullivan"/><br /><sub><b>Patrick Sullivan</b></sub></a><br /><a href="#design-sullivanpj" title="Design">🎨</a> <a href="https://github.com/stormstack/stormstack/commits?author=sullivanpj" title="Code">💻</a> <a href="#tool-sullivanpj" title="Tools">🔧</a> <a href="https://github.com/stormstack/stormstack/commits?author=sullivanpj" title="Documentation">📖</a> <a href="https://github.com/stormstack/stormstack/commits?author=sullivanpj" title="Tests">⚠️</a></td>
235+
<td align="center"><a href="http://www.sullypat.com/"><img src="https://avatars.githubusercontent.com/u/99053093?v=4?s=100" width="100px;" alt="Patrick Sullivan"/><br /><sub><b>Patrick Sullivan</b></sub></a><br /><a href="#design-sullivanpj" title="Design">🎨</a> <a href="https://github.com/storm-software/stormstack/commits?author=sullivanpj" title="Code">💻</a> <a href="#tool-sullivanpj" title="Tools">🔧</a> <a href="https://github.com/storm-software/stormstack/commits?author=sullivanpj" title="Documentation">📖</a> <a href="https://github.com/storm-software/stormstack/commits?author=sullivanpj" title="Tests">⚠️</a></td>
236236
<td align="center"><a href="https://tylerbenning.com/"><img src="https://avatars.githubusercontent.com/u/7265547?v=4?s=100" width="100px;" alt="Tyler Benning"/><br /><sub><b>Tyler Benning</b></sub></a><br /><a href="#design-tbenning" title="Design">🎨</a></td>
237237
</tr>
238238
</tbody>

0 commit comments

Comments
 (0)