@storm-software/workspace-tools 1.270.2 → 1.271.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/README.md +1 -1
- package/dist/chunk-4QYM3VS4.mjs +282 -0
- package/dist/{chunk-ZP76EMBE.js → chunk-FYXWAGK3.js} +97 -27
- package/dist/chunk-MJMN2T4N.mjs +166 -0
- package/dist/chunk-RZVF4LHT.js +282 -0
- package/dist/executors.js +3 -3
- package/dist/executors.mjs +2 -2
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +4 -4
- package/dist/src/executors/npm-publish/executor.js +3 -3
- package/dist/src/executors/npm-publish/executor.mjs +2 -2
- package/dist/src/generators/preset/files/LICENSE +201 -0
- package/dist/src/utils/index.d.mts +1 -1
- package/dist/src/utils/index.d.ts +1 -1
- package/dist/src/utils/index.js +2 -2
- package/dist/src/utils/index.mjs +3 -3
- package/dist/src/utils/pnpm-deps-update.d.mts +3 -3
- package/dist/src/utils/pnpm-deps-update.d.ts +3 -3
- package/dist/src/utils/pnpm-deps-update.js +2 -2
- package/dist/src/utils/pnpm-deps-update.mjs +3 -3
- package/docs/api/base/base-executor.schema.md +16 -0
- package/docs/api/base/base-generator.schema.md +15 -0
- package/docs/api/base/cargo-base-executor.schema.md +90 -0
- package/docs/api/base/typescript-build-executor.schema.md +126 -0
- package/docs/api/base/typescript-library-generator.schema.md +129 -0
- package/docs/api/executors/cargo-build/schema.md +89 -0
- package/docs/api/executors/cargo-check/schema.md +90 -0
- package/docs/api/executors/cargo-clippy/schema.md +99 -0
- package/docs/api/executors/cargo-doc/schema.md +130 -0
- package/docs/api/executors/cargo-format/schema.md +90 -0
- package/docs/api/executors/cargo-publish/schema.md +117 -0
- package/docs/api/executors/clean-package/schema.md +65 -0
- package/docs/api/executors/esbuild/schema.md +126 -0
- package/docs/api/executors/npm-publish/schema.md +64 -0
- package/docs/api/executors/size-limit/schema.md +25 -0
- package/docs/api/executors/typia/schema.md +46 -0
- package/docs/api/executors/unbuild/schema.md +222 -0
- package/docs/api/generators/browser-library/files/README.md +58 -0
- package/docs/api/generators/browser-library/schema.md +129 -0
- package/docs/api/generators/config-schema/schema.md +25 -0
- package/docs/api/generators/init/schema.md +15 -0
- package/docs/api/generators/neutral-library/files/README.md +58 -0
- package/docs/api/generators/neutral-library/schema.md +129 -0
- package/docs/api/generators/node-library/files/README.md +63 -0
- package/docs/api/generators/node-library/schema.md +129 -0
- package/docs/api/generators/preset/schema.md +110 -0
- package/docs/api/generators/release-version/schema.md +160 -0
- package/package.json +13 -35
- package/dist/chunk-CMH2A42G.js +0 -467
- package/dist/chunk-HMJTTE4A.mjs +0 -96
- package/dist/chunk-I54IKCIV.mjs +0 -467
- package/docs/executors/rollup.md +0 -88
- package/executors.ts +0 -23
- package/generators.ts +0 -14
- package/index.ts +0 -5
- package/project.json +0 -58
- package/src/base/base-executor.ts +0 -200
- package/src/base/base-executor.untyped.ts +0 -18
- package/src/base/base-generator.ts +0 -130
- package/src/base/base-generator.untyped.ts +0 -16
- package/src/base/cargo-base-executor.untyped.ts +0 -73
- package/src/base/index.ts +0 -8
- package/src/base/typescript-build-executor.untyped.ts +0 -153
- package/src/base/typescript-library-generator.ts +0 -415
- package/src/base/typescript-library-generator.untyped.ts +0 -106
- package/src/executors/cargo-build/executor.spec.ts +0 -18
- package/src/executors/cargo-build/executor.ts +0 -28
- package/src/executors/cargo-build/untyped.ts +0 -18
- package/src/executors/cargo-check/executor.spec.ts +0 -18
- package/src/executors/cargo-check/executor.ts +0 -27
- package/src/executors/cargo-check/untyped.ts +0 -11
- package/src/executors/cargo-clippy/executor.spec.ts +0 -18
- package/src/executors/cargo-clippy/executor.ts +0 -28
- package/src/executors/cargo-clippy/untyped.ts +0 -18
- package/src/executors/cargo-doc/executor.spec.ts +0 -18
- package/src/executors/cargo-doc/executor.ts +0 -39
- package/src/executors/cargo-doc/untyped.ts +0 -44
- package/src/executors/cargo-format/executor.spec.ts +0 -18
- package/src/executors/cargo-format/executor.ts +0 -28
- package/src/executors/cargo-format/untyped.ts +0 -11
- package/src/executors/cargo-publish/executor.spec.ts +0 -11
- package/src/executors/cargo-publish/executor.ts +0 -139
- package/src/executors/cargo-publish/untyped.ts +0 -33
- package/src/executors/clean-package/constants.ts +0 -99
- package/src/executors/clean-package/executor.spec.ts +0 -18
- package/src/executors/clean-package/executor.ts +0 -214
- package/src/executors/clean-package/types.ts +0 -6
- package/src/executors/clean-package/untyped.ts +0 -60
- package/src/executors/clean-package/utils.ts +0 -85
- package/src/executors/esbuild/executor.spec.ts +0 -11
- package/src/executors/esbuild/executor.ts +0 -67
- package/src/executors/esbuild/untyped.ts +0 -20
- package/src/executors/npm-publish/executor.spec.ts +0 -11
- package/src/executors/npm-publish/executor.ts +0 -680
- package/src/executors/npm-publish/untyped.ts +0 -56
- package/src/executors/size-limit/executor.spec.ts +0 -18
- package/src/executors/size-limit/executor.ts +0 -88
- package/src/executors/size-limit/untyped.ts +0 -22
- package/src/executors/typia/executor.ts +0 -54
- package/src/executors/typia/untyped.ts +0 -48
- package/src/executors/unbuild/executor.spec.ts +0 -11
- package/src/executors/unbuild/executor.ts +0 -136
- package/src/executors/unbuild/untyped.ts +0 -152
- package/src/generators/browser-library/generator.spec.ts +0 -20
- package/src/generators/browser-library/generator.ts +0 -109
- package/src/generators/browser-library/untyped.ts +0 -29
- package/src/generators/config-schema/generator.spec.ts +0 -20
- package/src/generators/config-schema/generator.ts +0 -90
- package/src/generators/config-schema/untyped.ts +0 -19
- package/src/generators/init/init.ts +0 -32
- package/src/generators/init/untyped.ts +0 -16
- package/src/generators/neutral-library/generator.spec.ts +0 -20
- package/src/generators/neutral-library/generator.ts +0 -81
- package/src/generators/neutral-library/untyped.ts +0 -29
- package/src/generators/node-library/generator.spec.ts +0 -20
- package/src/generators/node-library/generator.ts +0 -84
- package/src/generators/node-library/untyped.ts +0 -29
- package/src/generators/preset/files/.all-contributorsrc.template +0 -48
- package/src/generators/preset/files/.editorconfig +0 -454
- package/src/generators/preset/files/.env.template +0 -38
- package/src/generators/preset/files/.gitattributes +0 -52
- package/src/generators/preset/files/.github/.nvmrc +0 -1
- package/src/generators/preset/files/.github/CODEOWNERS +0 -3
- package/src/generators/preset/files/.github/CODE_OF_CONDUCT.md +0 -125
- package/src/generators/preset/files/.github/CONTRIBUTING.md.template +0 -15
- package/src/generators/preset/files/.github/FUNDING.yml +0 -3
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/bug-report.yml.template +0 -102
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/documentation.yml.template +0 -56
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/feature-request.yml.template +0 -60
- package/src/generators/preset/files/.github/PULL_REQUEST_TEMPLATE.md.template +0 -39
- package/src/generators/preset/files/.github/SECURITY.md +0 -9
- package/src/generators/preset/files/.github/codecov.yml +0 -29
- package/src/generators/preset/files/.github/dependabot.yml +0 -64
- package/src/generators/preset/files/.github/labels.yml +0 -84
- package/src/generators/preset/files/.github/renovate.json +0 -4
- package/src/generators/preset/files/.github/renovate.json.template +0 -63
- package/src/generators/preset/files/.github/stale.yml +0 -55
- package/src/generators/preset/files/.github/workflows/build-release.yml.template +0 -25
- package/src/generators/preset/files/.github/workflows/code-review.yml +0 -18
- package/src/generators/preset/files/.github/workflows/codeql.yml +0 -84
- package/src/generators/preset/files/.github/workflows/dependabot-update.yml +0 -32
- package/src/generators/preset/files/.github/workflows/git-guardian.yml +0 -23
- package/src/generators/preset/files/.github/workflows/greetings.yml +0 -31
- package/src/generators/preset/files/.github/workflows/labels.yml +0 -31
- package/src/generators/preset/files/.github/workflows/lock.yml +0 -26
- package/src/generators/preset/files/.log4brains.yml.template +0 -5
- package/src/generators/preset/files/.markdownlint.json +0 -155
- package/src/generators/preset/files/.verdaccio/config.yml.template +0 -40
- package/src/generators/preset/files/.vscode/README.md +0 -32
- package/src/generators/preset/files/.vscode/cspell.json +0 -3
- package/src/generators/preset/files/.vscode/extensions.json +0 -14
- package/src/generators/preset/files/.vscode/launch.json +0 -37
- package/src/generators/preset/files/.vscode/settings.json +0 -401
- package/src/generators/preset/files/.vscode/tasks.json +0 -4
- package/src/generators/preset/files/.whitesource +0 -14
- package/src/generators/preset/files/assets/diagrams/.gitkeep +0 -0
- package/src/generators/preset/files/assets/icons/dark/.gitkeep +0 -0
- package/src/generators/preset/files/assets/icons/light/.gitkeep +0 -0
- package/src/generators/preset/files/assets/logos/.gitkeep +0 -0
- package/src/generators/preset/files/docs/api-reference/.gitkeep +0 -0
- package/src/generators/preset/generator.spec.ts +0 -20
- package/src/generators/preset/generator.ts +0 -315
- package/src/generators/preset/untyped.ts +0 -88
- package/src/generators/release-version/generator.spec.ts +0 -20
- package/src/generators/release-version/generator.ts +0 -920
- package/src/generators/release-version/untyped.ts +0 -156
- package/src/plugins/rust/cargo-toml.ts +0 -434
- package/src/plugins/rust/index.ts +0 -1
- package/src/plugins/typescript/index.ts +0 -1
- package/src/plugins/typescript/project-config.ts +0 -564
- package/src/plugins/typescript/tsup.ts +0 -198
- package/src/types.ts +0 -130
- package/src/utils/apply-workspace-tokens.ts +0 -73
- package/src/utils/cargo.ts +0 -219
- package/src/utils/create-cli-options.ts +0 -23
- package/src/utils/get-project-configurations.ts +0 -27
- package/src/utils/index.ts +0 -12
- package/src/utils/lock-file.ts +0 -159
- package/src/utils/package-helpers.ts +0 -54
- package/src/utils/plugin-helpers.ts +0 -112
- package/src/utils/pnpm-deps-update.ts +0 -111
- package/src/utils/project-tags.ts +0 -162
- package/src/utils/toml.ts +0 -204
- package/src/utils/typia-transform.ts +0 -8
- package/src/utils/versions.ts +0 -19
- package/tsconfig.json +0 -30
- package/tsup.config.ts +0 -36
- /package/{src/generators/preset/files/LICENSE → LICENSE} +0 -0
- /package/{src → dist/src}/base/base-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/base-executor.schema.json +0 -0
- /package/{src → dist/src}/base/base-executor.schema.md +0 -0
- /package/{src → dist/src}/base/base-generator.schema.d.ts +0 -0
- /package/{src → dist/src}/base/base-generator.schema.json +0 -0
- /package/{src → dist/src}/base/base-generator.schema.md +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.json +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.md +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.json +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.md +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.d.ts +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.json +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.md +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.json +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.md +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.json +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.md +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.json +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.md +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.json +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.md +0 -0
- /package/{src → dist/src}/executors/typia/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/typia/schema.json +0 -0
- /package/{src → dist/src}/executors/typia/schema.md +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.json +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.md +0 -0
- /package/{src → dist/src}/generators/browser-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/browser-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/browser-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/browser-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.json +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.md +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.json +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.md +0 -0
- /package/{src → dist/src}/generators/init/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/init/schema.json +0 -0
- /package/{src → dist/src}/generators/init/schema.md +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.json +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.md +0 -0
- /package/{src → dist/src}/generators/node-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/node-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/node-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/node-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/node-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/node-library/schema.json +0 -0
- /package/{src → dist/src}/generators/node-library/schema.md +0 -0
- /package/{src → dist/src}/generators/preset/files/README.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/docs/readme-templates/README.footer.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/docs/readme-templates/README.header.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/eslint.config.js.template +0 -0
- /package/{src → dist/src}/generators/preset/files/knip.json +0 -0
- /package/{src → dist/src}/generators/preset/files/lefthook.json +0 -0
- /package/{src → dist/src}/generators/preset/files/nx.json +0 -0
- /package/{src → dist/src}/generators/preset/files/pnpm-workspace.yaml +0 -0
- /package/{src → dist/src}/generators/preset/files/socket.yaml +0 -0
- /package/{src → dist/src}/generators/preset/files/storm.json.template +0 -0
- /package/{src → dist/src}/generators/preset/files/tsconfig.base.json.template +0 -0
- /package/{src → dist/src}/generators/preset/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/preset/schema.json +0 -0
- /package/{src → dist/src}/generators/preset/schema.md +0 -0
- /package/{src → dist/src}/generators/release-version/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/release-version/schema.json +0 -0
- /package/{src → dist/src}/generators/release-version/schema.md +0 -0
- /package/{src → dist/src}/plugins/typescript/untyped-schema.ts +0 -0
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# All contributions, however small are valued
|
|
2
|
-
|
|
3
|
-
## Steps to contribute
|
|
4
|
-
|
|
5
|
-
If you want to make a small change, go ahead and raise a pull request, otherwise follow these steps:
|
|
6
|
-
|
|
7
|
-
1. View the [Issues](https://github.com/<%= organization %>/<%= name %>/issues) page to see a To-Do list of things to be implemented.
|
|
8
|
-
2. Raise an issue or comment on an existing issue with what you want to contribute if one does not already exist.
|
|
9
|
-
3. When you get the go ahead, follow the coding guidelines and raise a pull request.
|
|
10
|
-
4. Include a link to the issue in your pull request.
|
|
11
|
-
|
|
12
|
-
## Coding Guidelines
|
|
13
|
-
|
|
14
|
-
- Projects use StyleCop and .editorconfig to produce style warnings. Please fix all warnings in any code you submit.
|
|
15
|
-
- Write unit tests for any code written.
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
name: 🐞 Bug Report
|
|
2
|
-
description: Report a bug.
|
|
3
|
-
title: "[Bug]: "
|
|
4
|
-
labels: ["bug", "triage"]
|
|
5
|
-
assignees:
|
|
6
|
-
- sullivanpj
|
|
7
|
-
body:
|
|
8
|
-
- type: markdown
|
|
9
|
-
attributes:
|
|
10
|
-
value: |
|
|
11
|
-
Thanks for taking the time to fill out this bug report!
|
|
12
|
-
- type: input
|
|
13
|
-
id: contact
|
|
14
|
-
attributes:
|
|
15
|
-
label: Contact Details
|
|
16
|
-
description: How can we get in touch with you if we need more info?
|
|
17
|
-
placeholder: ex. email@example.com
|
|
18
|
-
validations:
|
|
19
|
-
required: true
|
|
20
|
-
- type: textarea
|
|
21
|
-
id: actual-results
|
|
22
|
-
attributes:
|
|
23
|
-
label: Current Behavior
|
|
24
|
-
description: What behavior are you currently experiencing?
|
|
25
|
-
placeholder: What behavior are you currently experiencing?
|
|
26
|
-
value: "What behavior are you currently experiencing?"
|
|
27
|
-
validations:
|
|
28
|
-
required: true
|
|
29
|
-
- type: textarea
|
|
30
|
-
id: expected-results
|
|
31
|
-
attributes:
|
|
32
|
-
label: Expected Behavior
|
|
33
|
-
description: What behavior are you expecting to experience?
|
|
34
|
-
placeholder: What behavior are you expecting to experience?
|
|
35
|
-
value: "What behavior are you expecting to experience?"
|
|
36
|
-
validations:
|
|
37
|
-
required: true
|
|
38
|
-
- type: dropdown
|
|
39
|
-
id: package
|
|
40
|
-
attributes:
|
|
41
|
-
label: Package Name
|
|
42
|
-
description: Which package are you experiencing this error with?
|
|
43
|
-
multiple: true
|
|
44
|
-
options:
|
|
45
|
-
- create-storm-workspace
|
|
46
|
-
- Linting Tools
|
|
47
|
-
- Git Tools
|
|
48
|
-
- Workspace Tools
|
|
49
|
-
validations:
|
|
50
|
-
required: true
|
|
51
|
-
- type: dropdown
|
|
52
|
-
id: version
|
|
53
|
-
attributes:
|
|
54
|
-
label: Version
|
|
55
|
-
description: What version of our software are you running?
|
|
56
|
-
options:
|
|
57
|
-
- 1.0.0
|
|
58
|
-
validations:
|
|
59
|
-
required: false
|
|
60
|
-
- type: dropdown
|
|
61
|
-
id: operating-system
|
|
62
|
-
attributes:
|
|
63
|
-
label: What platform(s) are you seeing the problem in?
|
|
64
|
-
multiple: true
|
|
65
|
-
options:
|
|
66
|
-
- Microsoft Windows
|
|
67
|
-
- MacOS
|
|
68
|
-
- ChromeOS
|
|
69
|
-
- iOS
|
|
70
|
-
- Android
|
|
71
|
-
- Ubuntu
|
|
72
|
-
- Debian
|
|
73
|
-
- Fedora
|
|
74
|
-
- CentOS
|
|
75
|
-
- Linux (General)
|
|
76
|
-
- Other
|
|
77
|
-
validations:
|
|
78
|
-
required: false
|
|
79
|
-
- type: dropdown
|
|
80
|
-
id: browsers
|
|
81
|
-
attributes:
|
|
82
|
-
label: What browsers are you seeing the problem on (if applicable)?
|
|
83
|
-
multiple: true
|
|
84
|
-
options:
|
|
85
|
-
- Firefox
|
|
86
|
-
- Chrome
|
|
87
|
-
- Safari
|
|
88
|
-
- Microsoft Edge
|
|
89
|
-
- type: textarea
|
|
90
|
-
id: logs
|
|
91
|
-
attributes:
|
|
92
|
-
label: Relevant log output
|
|
93
|
-
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
|
94
|
-
render: TypeScript
|
|
95
|
-
- type: checkboxes
|
|
96
|
-
id: agreed
|
|
97
|
-
attributes:
|
|
98
|
-
label: Code of Conduct
|
|
99
|
-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CODE_OF_CONDUCT.md)
|
|
100
|
-
options:
|
|
101
|
-
- label: I agree to follow this project's Code of Conduct
|
|
102
|
-
required: true
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
name: 📖 Documentation issue
|
|
2
|
-
description: Help improve our docs.
|
|
3
|
-
title: "[Documentation]: "
|
|
4
|
-
labels: ["documentation"]
|
|
5
|
-
assignees:
|
|
6
|
-
- sullivanpj
|
|
7
|
-
body:
|
|
8
|
-
- type: markdown
|
|
9
|
-
attributes:
|
|
10
|
-
value: |
|
|
11
|
-
Thanks for taking the time to help us improve the ⚡Storm Docs!
|
|
12
|
-
- type: input
|
|
13
|
-
id: contact
|
|
14
|
-
attributes:
|
|
15
|
-
label: Contact Details
|
|
16
|
-
description: How can we get in touch with you if we need more info?
|
|
17
|
-
placeholder: ex. email@example.com
|
|
18
|
-
validations:
|
|
19
|
-
required: true
|
|
20
|
-
- type: dropdown
|
|
21
|
-
id: type
|
|
22
|
-
attributes:
|
|
23
|
-
label: Documentation issue
|
|
24
|
-
description: Reason for this request
|
|
25
|
-
multiple: true
|
|
26
|
-
options:
|
|
27
|
-
- Reporting a typo
|
|
28
|
-
- Reporting a documentation bug
|
|
29
|
-
- Documentation improvement
|
|
30
|
-
- Documentation feedback
|
|
31
|
-
validations:
|
|
32
|
-
required: true
|
|
33
|
-
- type: input
|
|
34
|
-
id: description
|
|
35
|
-
attributes:
|
|
36
|
-
label: Is there a specific documentation page you are reporting?
|
|
37
|
-
description: Enter the URL or documentation section here.
|
|
38
|
-
placeholder: Enter the URL or documentation section here.
|
|
39
|
-
validations:
|
|
40
|
-
required: true
|
|
41
|
-
- type: textarea
|
|
42
|
-
id: additional-details
|
|
43
|
-
attributes:
|
|
44
|
-
label: Additional context or description
|
|
45
|
-
description: Provide any additional details here as needed.
|
|
46
|
-
placeholder: Provide any additional details here as needed.
|
|
47
|
-
validations:
|
|
48
|
-
required: false
|
|
49
|
-
- type: checkboxes
|
|
50
|
-
id: agreed
|
|
51
|
-
attributes:
|
|
52
|
-
label: Code of Conduct
|
|
53
|
-
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CODE_OF_CONDUCT.md)
|
|
54
|
-
options:
|
|
55
|
-
- label: I agree to follow this project's Code of Conduct
|
|
56
|
-
required: true
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
name: 🎁 Feature Request
|
|
2
|
-
description: Suggest a new feature.
|
|
3
|
-
title: "[Feature]: "
|
|
4
|
-
labels: ["enhancement"]
|
|
5
|
-
assignees:
|
|
6
|
-
- sullivanpj
|
|
7
|
-
body:
|
|
8
|
-
- type: markdown
|
|
9
|
-
attributes:
|
|
10
|
-
value: |
|
|
11
|
-
Thanks for taking the time to fill out this feature request!
|
|
12
|
-
Use this issue type for concrete suggestions, otherwise, open a discussion type issue instead.
|
|
13
|
-
- type: input
|
|
14
|
-
id: contact
|
|
15
|
-
attributes:
|
|
16
|
-
label: Contact Details
|
|
17
|
-
description: How can we get in touch with you if we need more info?
|
|
18
|
-
placeholder: ex. email@example.com
|
|
19
|
-
validations:
|
|
20
|
-
required: true
|
|
21
|
-
- type: textarea
|
|
22
|
-
id: description
|
|
23
|
-
attributes:
|
|
24
|
-
label: Description
|
|
25
|
-
description: What is the behavior that you would like to see introduced?
|
|
26
|
-
placeholder: What is the behavior that you would like to see introduced?
|
|
27
|
-
validations:
|
|
28
|
-
required: true
|
|
29
|
-
- type: textarea
|
|
30
|
-
id: motivation
|
|
31
|
-
attributes:
|
|
32
|
-
label: Motivation
|
|
33
|
-
description: Why do you believe this behavior would be beneficial?
|
|
34
|
-
placeholder: Why do you believe this behavior would be beneficial?
|
|
35
|
-
validations:
|
|
36
|
-
required: false
|
|
37
|
-
- type: textarea
|
|
38
|
-
id: implementation
|
|
39
|
-
attributes:
|
|
40
|
-
label: Suggested Implementation
|
|
41
|
-
description: How do you imagine this might work?
|
|
42
|
-
placeholder: How do you imagine this might work?
|
|
43
|
-
validations:
|
|
44
|
-
required: false
|
|
45
|
-
- type: checkboxes
|
|
46
|
-
id: contribute
|
|
47
|
-
attributes:
|
|
48
|
-
label: Contribution
|
|
49
|
-
description: Willingness to contribute
|
|
50
|
-
options:
|
|
51
|
-
- label: I'd be willing to implement this feature ([contributing guide](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CONTRIBUTING.md))
|
|
52
|
-
required: false
|
|
53
|
-
- type: checkboxes
|
|
54
|
-
id: agreed
|
|
55
|
-
attributes:
|
|
56
|
-
label: Code of Conduct
|
|
57
|
-
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CODE_OF_CONDUCT.md)
|
|
58
|
-
options:
|
|
59
|
-
- label: I agree to follow this project's Code of Conduct
|
|
60
|
-
required: true
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
<!--- Please provide a general summary of your changes in the title above -->
|
|
2
|
-
|
|
3
|
-
# Pull request
|
|
4
|
-
|
|
5
|
-
Thank you good citizen for your hard work! Please provide the below details describing your PR.
|
|
6
|
-
|
|
7
|
-
**Note:** Please read the [contributing guide](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CONTRIBUTING.md) before raising a pull request.
|
|
8
|
-
|
|
9
|
-
## Pull request type
|
|
10
|
-
|
|
11
|
-
<!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. -->
|
|
12
|
-
|
|
13
|
-
Please check the type of change your PR introduces:
|
|
14
|
-
|
|
15
|
-
- [ ] Bugfix
|
|
16
|
-
- [ ] Feature
|
|
17
|
-
- [ ] Code style update (formatting, renaming)
|
|
18
|
-
- [ ] Refactoring (no functional changes, no api changes)
|
|
19
|
-
- [ ] Build related changes
|
|
20
|
-
- [ ] Documentation content changes
|
|
21
|
-
- [ ] Other (please describe):
|
|
22
|
-
|
|
23
|
-
## What is the current behavior?
|
|
24
|
-
|
|
25
|
-
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
|
|
26
|
-
|
|
27
|
-
Issue Number: N/A
|
|
28
|
-
|
|
29
|
-
## What is the new behavior?
|
|
30
|
-
|
|
31
|
-
<!-- Please describe the behavior or changes that are being added by this PR. -->
|
|
32
|
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
|
|
37
|
-
## Other information
|
|
38
|
-
|
|
39
|
-
<!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# Reporting Security Issues
|
|
2
|
-
|
|
3
|
-
If you believe you have found a security vulnerability in this repository, we encourage you to let us know right away.
|
|
4
|
-
|
|
5
|
-
We will investigate all legitimate reports and do our best to quickly fix the problem.
|
|
6
|
-
|
|
7
|
-
Email `admin@stormsoftware.com` to disclose any security vulnerabilities.
|
|
8
|
-
|
|
9
|
-
<https://stormsoftware.com/security>
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
codecov:
|
|
2
|
-
notify:
|
|
3
|
-
require_ci_to_pass: yes
|
|
4
|
-
|
|
5
|
-
coverage:
|
|
6
|
-
status:
|
|
7
|
-
project:
|
|
8
|
-
default:
|
|
9
|
-
target: 90%
|
|
10
|
-
threshold: 2%
|
|
11
|
-
precision: 2
|
|
12
|
-
round: down
|
|
13
|
-
range: "70...100"
|
|
14
|
-
|
|
15
|
-
parsers:
|
|
16
|
-
gcov:
|
|
17
|
-
branch_detection:
|
|
18
|
-
conditional: yes
|
|
19
|
-
loop: yes
|
|
20
|
-
method: no
|
|
21
|
-
macro: no
|
|
22
|
-
|
|
23
|
-
comment:
|
|
24
|
-
layout: "reach, diff, flags, files"
|
|
25
|
-
behavior: default
|
|
26
|
-
require_changes: false # if true: only post the comment if coverage changes
|
|
27
|
-
require_base: false # [yes :: must have a base report to post]
|
|
28
|
-
require_head: true # [yes :: must have a head report to post]
|
|
29
|
-
branches: ["main"]
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
#################################
|
|
2
|
-
# GitHub Dependabot Config info #
|
|
3
|
-
#################################
|
|
4
|
-
|
|
5
|
-
# Please see the documentation for all configuration options:
|
|
6
|
-
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
7
|
-
|
|
8
|
-
version: 2
|
|
9
|
-
updates:
|
|
10
|
-
# Maintain dependencies for npm
|
|
11
|
-
- package-ecosystem: "npm"
|
|
12
|
-
assignees:
|
|
13
|
-
- "@sullivanpj"
|
|
14
|
-
- "@storm-software/operations"
|
|
15
|
-
reviewers:
|
|
16
|
-
- "@sullivanpj"
|
|
17
|
-
- "@storm-software/operations"
|
|
18
|
-
commit-message:
|
|
19
|
-
prefix: "deps(monorepo):"
|
|
20
|
-
directory: "/"
|
|
21
|
-
schedule:
|
|
22
|
-
interval: "monthly"
|
|
23
|
-
ignore:
|
|
24
|
-
- dependency-name: "{@storm-software/*,@storm-stack/*,@cyclone-ui/*,@acidic/*,@nx/*,nx}"
|
|
25
|
-
open-pull-requests-limit: 5
|
|
26
|
-
labels:
|
|
27
|
-
- "dependencies"
|
|
28
|
-
- "dependabot"
|
|
29
|
-
|
|
30
|
-
# Maintain dependencies for GitHub Actions
|
|
31
|
-
- package-ecosystem: "github-actions"
|
|
32
|
-
assignees:
|
|
33
|
-
- "@sullivanpj"
|
|
34
|
-
- "@storm-software/operations"
|
|
35
|
-
reviewers:
|
|
36
|
-
- "@sullivanpj"
|
|
37
|
-
- "@storm-software/operations"
|
|
38
|
-
commit-message:
|
|
39
|
-
prefix: "deps(monorepo):"
|
|
40
|
-
directory: "/"
|
|
41
|
-
schedule:
|
|
42
|
-
interval: "monthly"
|
|
43
|
-
open-pull-requests-limit: 5
|
|
44
|
-
labels:
|
|
45
|
-
- "dependencies"
|
|
46
|
-
- "dependabot"
|
|
47
|
-
|
|
48
|
-
# Maintain dependencies for bundler
|
|
49
|
-
- package-ecosystem: "bundler"
|
|
50
|
-
assignees:
|
|
51
|
-
- "@sullivanpj"
|
|
52
|
-
- "@storm-software/operations"
|
|
53
|
-
reviewers:
|
|
54
|
-
- "@sullivanpj"
|
|
55
|
-
- "@storm-software/operations"
|
|
56
|
-
commit-message:
|
|
57
|
-
prefix: "deps(monorepo):"
|
|
58
|
-
directory: "/"
|
|
59
|
-
schedule:
|
|
60
|
-
interval: "monthly"
|
|
61
|
-
open-pull-requests-limit: 5
|
|
62
|
-
labels:
|
|
63
|
-
- "dependencies"
|
|
64
|
-
- "dependabot"
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
- name: "breaking-change"
|
|
3
|
-
color: ee0701
|
|
4
|
-
description: "A breaking change for existing users."
|
|
5
|
-
- name: "bug"
|
|
6
|
-
color: ee0701
|
|
7
|
-
description: "Inconsistencies or issues which will cause a problem for users or implementors."
|
|
8
|
-
- name: "documentation"
|
|
9
|
-
color: 0052cc
|
|
10
|
-
description: "Solely about the documentation of the project."
|
|
11
|
-
- name: "enhancement"
|
|
12
|
-
color: 1d76db
|
|
13
|
-
description: "Enhancement of the code, not introducing new features."
|
|
14
|
-
- name: "refactor"
|
|
15
|
-
color: 1d76db
|
|
16
|
-
description: "Improvement of existing code, not introducing new features."
|
|
17
|
-
- name: "performance"
|
|
18
|
-
color: 1d76db
|
|
19
|
-
description: "Improving performance, not introducing new features."
|
|
20
|
-
- name: "new-feature"
|
|
21
|
-
color: 0e8a16
|
|
22
|
-
description: "New features or options."
|
|
23
|
-
- name: "maintenance"
|
|
24
|
-
color: 2af79e
|
|
25
|
-
description: "Generic maintenance tasks."
|
|
26
|
-
- name: "ci"
|
|
27
|
-
color: 1d76db
|
|
28
|
-
description: "Work that improves the continue integration."
|
|
29
|
-
- name: "dependencies"
|
|
30
|
-
color: 1d76db
|
|
31
|
-
description: "Upgrade or downgrade of project dependencies."
|
|
32
|
-
- name: "dependabot"
|
|
33
|
-
color: 00404D
|
|
34
|
-
description: "Dependabot dependency update automation."
|
|
35
|
-
|
|
36
|
-
- name: "in-progress"
|
|
37
|
-
color: fbca04
|
|
38
|
-
description: "Issue is currently being resolved by a developer."
|
|
39
|
-
- name: "stale"
|
|
40
|
-
color: fef2c0
|
|
41
|
-
description: "There has not been activity on this issue or PR for quite some time."
|
|
42
|
-
- name: "no-stale"
|
|
43
|
-
color: fef2c0
|
|
44
|
-
description: "This issue or PR is exempted from the stable bot."
|
|
45
|
-
- name: "confirmed"
|
|
46
|
-
color: fbca04
|
|
47
|
-
description: "The issue has been confirmed by a developer."
|
|
48
|
-
|
|
49
|
-
- name: "security"
|
|
50
|
-
color: ee0701
|
|
51
|
-
description: "Marks a security issue that needs to be resolved ASAP."
|
|
52
|
-
- name: "incomplete"
|
|
53
|
-
color: fef2c0
|
|
54
|
-
description: "Marks a PR or issue that is missing information."
|
|
55
|
-
- name: "invalid"
|
|
56
|
-
color: fef2c0
|
|
57
|
-
description: "Marks a PR or issue that is missing information."
|
|
58
|
-
|
|
59
|
-
- name: "beginner-friendly"
|
|
60
|
-
color: 0e8a16
|
|
61
|
-
description: "Good first issue for people wanting to contribute to the project."
|
|
62
|
-
- name: "help-wanted"
|
|
63
|
-
color: 0e8a16
|
|
64
|
-
description: "We need some extra helping hands or expertise in order to resolve this."
|
|
65
|
-
|
|
66
|
-
- name: "priority-critical"
|
|
67
|
-
color: ee0701
|
|
68
|
-
description: "This should be dealt with ASAP. Not fixing this issue would be a serious error."
|
|
69
|
-
- name: "priority-high"
|
|
70
|
-
color: b60205
|
|
71
|
-
description: "After critical issues are fixed, these should be dealt with before any further issues."
|
|
72
|
-
- name: "priority-medium"
|
|
73
|
-
color: 0e8a16
|
|
74
|
-
description: "This issue may be useful, and needs some attention."
|
|
75
|
-
- name: "priority-low"
|
|
76
|
-
color: e4ea8a
|
|
77
|
-
description: "Nice addition, maybe... someday..."
|
|
78
|
-
|
|
79
|
-
- name: "major"
|
|
80
|
-
color: b60205
|
|
81
|
-
description: "This PR causes a major version bump in the version number."
|
|
82
|
-
- name: "minor"
|
|
83
|
-
color: 0e8a16
|
|
84
|
-
description: "This PR causes a minor version bump in the version number."
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
{
|
|
3
|
-
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
4
|
-
"extends": [
|
|
5
|
-
"config:base",
|
|
6
|
-
"group:monorepos",
|
|
7
|
-
"schedule:weekly",
|
|
8
|
-
":semanticCommits",
|
|
9
|
-
":automergePatch",
|
|
10
|
-
":noUnscheduledUpdates",
|
|
11
|
-
":pinAllExceptPeerDependencies"
|
|
12
|
-
],
|
|
13
|
-
"semanticCommits": "enabled",
|
|
14
|
-
"reviewers": ["@sullivanpj"],
|
|
15
|
-
"rebaseWhen": "conflicted",
|
|
16
|
-
"rangeStrategy": "pin",
|
|
17
|
-
"automerge": true,
|
|
18
|
-
"major": {
|
|
19
|
-
"automerge": false
|
|
20
|
-
},
|
|
21
|
-
"minor": {
|
|
22
|
-
"automerge": false
|
|
23
|
-
},
|
|
24
|
-
"packageRules": [
|
|
25
|
-
{
|
|
26
|
-
"matchPackagePatterns": ["^@storm-software/"],
|
|
27
|
-
"enabled": true
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"matchPackagePatterns": [
|
|
31
|
-
"tsup",
|
|
32
|
-
"chalk",
|
|
33
|
-
"p-limit",
|
|
34
|
-
"request",
|
|
35
|
-
"@cypress/request",
|
|
36
|
-
"@humanfs/node"
|
|
37
|
-
],
|
|
38
|
-
"enabled": false
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"matchPackageNames": ["@nx"],
|
|
42
|
-
"postUpgradeTasks": {
|
|
43
|
-
"commands": [
|
|
44
|
-
"pnpm nx migrate latest --run-migrations --create-commits --commit-message='chore(<%= name %>): update @nx dependencies [skip ci]'"
|
|
45
|
-
]
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"groupName": "dependencies-non-major",
|
|
50
|
-
"matchUpdateTypes": ["digest", "minor", "patch", "pin"]
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"groupName": "patch & minor dev dependencies",
|
|
54
|
-
"depTypeList": ["devDependencies"],
|
|
55
|
-
"updateTypes": ["digest", "minor", "patch", "pin"]
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"groupName": "patch prod dependencies",
|
|
59
|
-
"depTypeList": ["dependencies"],
|
|
60
|
-
"updateTypes": ["patch", "pin"]
|
|
61
|
-
}
|
|
62
|
-
]
|
|
63
|
-
}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
# Configuration for probot-stale - https://github.com/probot/stale
|
|
2
|
-
|
|
3
|
-
# Number of days of inactivity before an Issue or Pull Request becomes stale
|
|
4
|
-
daysUntilStale: 60
|
|
5
|
-
|
|
6
|
-
# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
|
|
7
|
-
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
|
|
8
|
-
daysUntilClose: 7
|
|
9
|
-
|
|
10
|
-
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
|
|
11
|
-
exemptLabels: []
|
|
12
|
-
|
|
13
|
-
# Set to true to ignore issues in a project (defaults to false)
|
|
14
|
-
exemptProjects: false
|
|
15
|
-
|
|
16
|
-
# Set to true to ignore issues in a milestone (defaults to false)
|
|
17
|
-
exemptMilestones: false
|
|
18
|
-
|
|
19
|
-
# Label to use when marking as stale
|
|
20
|
-
staleLabel: wontfix
|
|
21
|
-
|
|
22
|
-
# Comment to post when marking as stale. Set to `false` to disable
|
|
23
|
-
markComment: >
|
|
24
|
-
This issue has been automatically marked as stale because it has not had
|
|
25
|
-
recent activity. It will be closed if no further activity occurs. Thank you
|
|
26
|
-
for your contributions.
|
|
27
|
-
|
|
28
|
-
# Comment to post when removing the stale label.
|
|
29
|
-
unmarkComment: >
|
|
30
|
-
The issue has been closed due to inactivity. Please feel free to reopen with
|
|
31
|
-
additional information if you still face this issue.
|
|
32
|
-
|
|
33
|
-
# Comment to post when closing a stale Issue or Pull Request.
|
|
34
|
-
closeComment: >
|
|
35
|
-
This issue is being closed due to inactivity. If you still face this issue,
|
|
36
|
-
please feel free to reopen with additional information. Thank you for your
|
|
37
|
-
contributions.
|
|
38
|
-
|
|
39
|
-
# Limit the number of actions per hour, from 1-30. Default is 30
|
|
40
|
-
limitPerRun: 30
|
|
41
|
-
# Limit to only `issues` or `pulls`
|
|
42
|
-
only: issues
|
|
43
|
-
|
|
44
|
-
Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
|
|
45
|
-
pulls:
|
|
46
|
-
daysUntilStale: 30
|
|
47
|
-
markComment: >
|
|
48
|
-
This pull request has been automatically marked as stale because it has not had
|
|
49
|
-
recent activity. It will be closed if no further activity occurs. Thank you
|
|
50
|
-
for your contributions.
|
|
51
|
-
|
|
52
|
-
issues:
|
|
53
|
-
exemptLabels:
|
|
54
|
-
- "no-stale"
|
|
55
|
-
- "confirmed"
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
name: "Release"
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
workflow_dispatch:
|
|
5
|
-
inputs:
|
|
6
|
-
tag:
|
|
7
|
-
description: override release tag
|
|
8
|
-
required: false
|
|
9
|
-
pull_request:
|
|
10
|
-
branches:
|
|
11
|
-
- "main"
|
|
12
|
-
- "next"
|
|
13
|
-
- "alpha"
|
|
14
|
-
- "beta"
|
|
15
|
-
|
|
16
|
-
jobs:
|
|
17
|
-
release:
|
|
18
|
-
uses: storm-software/storm-ops/.github/workflows/release.yml@main
|
|
19
|
-
with:
|
|
20
|
-
tag: ${{ env.TAG }}
|
|
21
|
-
stormBot: stormie-bot
|
|
22
|
-
secrets:
|
|
23
|
-
githubToken: ${{ github.token }}
|
|
24
|
-
npmToken: ${{ secrets.STORM_BOT_NPM_TOKEN }}
|
|
25
|
-
cargoToken: ${{ secrets.STORM_BOT_CARGO_TOKEN }}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
name: "Code Review"
|
|
2
|
-
permissions:
|
|
3
|
-
contents: read
|
|
4
|
-
pull-requests: write
|
|
5
|
-
on:
|
|
6
|
-
pull_request:
|
|
7
|
-
types:
|
|
8
|
-
- opened
|
|
9
|
-
- reopened
|
|
10
|
-
- synchronize
|
|
11
|
-
jobs:
|
|
12
|
-
test:
|
|
13
|
-
runs-on: ubuntu-latest
|
|
14
|
-
steps:
|
|
15
|
-
- uses: anc95/ChatGPT-CodeReview@main
|
|
16
|
-
env:
|
|
17
|
-
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
18
|
-
OPENAI_API_KEY: "${{ secrets.OPENAI_API_KEY }}"
|