Skip to content

Commit c959546

Browse files
committed
🐛 fix(.github/workflows/test.yml): removed secret, not required for public repos
removed codecov token
1 parent 360126d commit c959546

File tree

2 files changed

+27
-26
lines changed

2 files changed

+27
-26
lines changed

Diff for: .github/workflows/test.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,10 @@ jobs:
4646
- name: 📤 📊 Upload coverage reports to Codecov
4747
uses: codecov/codecov-action@v4.0.1
4848
with:
49-
token: ${{ secrets.CODECOV_TOKEN }}
49+
#token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
5050
#fail_ci_if_error: true # optional (default = false)
51+
#file: ./coverage.xml # optional
5152
#files: ./coverage1.xml,./coverage2.xml # optional
52-
flags: unittests # optional
53+
#flags: unittests # optional
5354
name: ☂️ codecov-umbrella # optional
5455
verbose: true # optional (default = false)

Diff for: package.json

+24-24
Original file line numberDiff line numberDiff line change
@@ -131,15 +131,15 @@
131131
"cz-gitmoji-adapter": {
132132
"scopes": [
133133
".depcheckrc.json",
134-
".eslintignore",
135134
".eslintrc.json",
135+
".eslintignore",
136136
".gitignore",
137-
".prettierignore",
138137
".prettierrc.json",
139138
"license",
140-
"readme.md",
139+
".prettierignore",
141140
"commit-template.hbs",
142141
"commitlint.config.ts",
142+
"readme.md",
143143
"default-template.hbs",
144144
"emojitypescommitmessages.txt",
145145
"jest.config.json",
@@ -151,24 +151,17 @@
151151
"typedoc.json",
152152
".vscode/settings.json",
153153
"public/.gitkeep",
154-
"repo_management_files/cz-emoji-type-extract.js",
155154
"repo_management_files/cz-type-extract.js",
156155
"repo_management_files/directorystructuredocument.md",
157156
"repo_management_files/extractfilescopes.js",
157+
"repo_management_files/cz-emoji-type-extract.js",
158158
"repo_management_files/genericcommitmessages.md",
159-
"repo_management_files/gitmojisemver-extract.js",
160159
"repo_management_files/issues.sh",
161160
"repo_management_files/labels.sh",
161+
"repo_management_files/gitmojisemver-extract.js",
162162
"repo_management_files/packagejsondocument.md",
163-
".github/dependabot.yml",
164-
".github/workflows/build.yml",
165-
".github/workflows/docs.yml",
166-
".github/workflows/lint.yml",
167-
".github/workflows/pr.yml",
168-
".github/workflows/release.yml",
169-
".github/workflows/test.yml",
170-
".husky/commit-msg",
171163
".husky/prepare-commit-msg",
164+
".husky/commit-msg",
172165
".husky/_/.gitignore",
173166
".husky/_/applypatch-msg",
174167
".husky/_/commit-msg",
@@ -178,32 +171,39 @@
178171
".husky/_/post-commit",
179172
".husky/_/post-merge",
180173
".husky/_/post-rewrite",
181-
".husky/_/pre-applypatch",
182174
".husky/_/pre-auto-gc",
183175
".husky/_/pre-commit",
184176
".husky/_/pre-push",
185-
".husky/_/pre-rebase",
177+
".husky/_/pre-applypatch",
186178
".husky/_/prepare-commit-msg",
179+
".husky/_/pre-rebase",
180+
".github/dependabot.yml",
181+
".github/workflows/build.yml",
182+
".github/workflows/docs.yml",
183+
".github/workflows/lint.yml",
184+
".github/workflows/pr.yml",
185+
".github/workflows/release.yml",
186+
".github/workflows/test.yml",
187187
"src/app.ts",
188188
"src/bin/.gitkeep",
189-
"src/configs/.gitkeep",
190189
"src/controllers/.gitkeep",
191190
"src/middleware/.gitkeep",
192-
"src/models/.gitkeep",
193191
"src/plugins/.gitkeep",
192+
"src/models/.gitkeep",
193+
"src/configs/.gitkeep",
194+
"src/views/.gitkeep",
194195
"src/routes/.gitkeep",
195196
"src/utils/.gitkeep",
196-
"src/views/.gitkeep",
197197
"test/.gitkeep",
198-
"test/bin/.gitkeep",
199-
"test/configs/.gitkeep",
200198
"test/controllers/.gitkeep",
201-
"test/middleware/.gitkeep",
202-
"test/models/.gitkeep",
203199
"test/plugins/.gitkeep",
200+
"test/models/.gitkeep",
201+
"test/configs/.gitkeep",
202+
"test/middleware/.gitkeep",
204203
"test/routes/.gitkeep",
205-
"test/utils/.gitkeep",
206-
"test/views/.gitkeep"
204+
"test/views/.gitkeep",
205+
"test/bin/.gitkeep",
206+
"test/utils/.gitkeep"
207207
],
208208
"questions": {
209209
"scope": "Specify a scope: "

0 commit comments

Comments
 (0)