Skip to content

Commit a6be38b

Browse files
takanuva15hsz
authored andcommitted
Fix missing codecov configuration (#487)
1 parent 2430382 commit a6be38b

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

.github/template-cleanup/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- [ ] Set the [Plugin Signing](https://plugins.jetbrains.com/docs/intellij/plugin-signing.html?from=IJPluginTemplate) related [secrets](https://github.com/JetBrains/intellij-platform-plugin-template#environment-variables).
1616
- [ ] Set the [Deployment Token](https://plugins.jetbrains.com/docs/marketplace/plugin-upload.html?from=IJPluginTemplate).
1717
- [ ] Click the <kbd>Watch</kbd> button on the top of the [IntelliJ Platform Plugin Template][template] to be notified about releases containing new features and fixes.
18+
- [ ] Configure the [CODECOV_TOKEN](https://docs.codecov.com/docs/quick-start) secret for automated test coverage reports on PRs
1819

1920
<!-- Plugin description -->
2021
This Fancy IntelliJ Platform Plugin is going to be your implementation of the brilliant ideas that you have.

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ jobs:
141141
uses: codecov/codecov-action@v5
142142
with:
143143
files: ${{ github.workspace }}/build/reports/kover/report.xml
144+
token: ${{ secrets.CODECOV_TOKEN }}
144145

145146
# Run Qodana inspections and provide a report
146147
inspectCode:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
- Dependencies (GitHub Actions) - upgrade `jlumbroso/free-disk-space` to `v1.3.1`
2828
- Gradle - upgrade `org.gradle.toolchains.foojay-resolver-convention` to `1.0.0`
2929
- Change since build to `243` (2024.3)
30+
- Update codecov configuration based on new required upload token
3031

3132
## [2.1.0] - 2025-03-28
3233

codecov.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
coverage:
2+
status:
3+
project:
4+
default:
5+
informational: true
6+
threshold: 0%
7+
base: auto
8+
patch:
9+
default:
10+
informational: true

0 commit comments

Comments
 (0)