ci: fix TICS report action - #1431
Merged
Merged
Conversation
denisonbarbosa
force-pushed
the
fix-tics-action
branch
5 times, most recently
from
July 14, 2026 12:43
4dad16b to
0203738
Compare
denisonbarbosa
force-pushed
the
fix-tics-action
branch
2 times, most recently
from
July 17, 2026 11:18
caedea6 to
e9b5769
Compare
denisonbarbosa
marked this pull request as ready for review
July 17, 2026 12:34
There was a problem hiding this comment.
Pull request overview
This PR updates the TiCS reporting workflow so that the nightly/periodic code-quality scan can still run even when E2E/PAM coverage artifacts are missing (due to current E2E infrastructure issues).
Changes:
- Makes PAM (E2E) coverage download best-effort while keeping QA coverage required.
- Improves robustness of coverage artifact discovery (explicit checks + warnings).
- Switches the TiCS invocation from an inline install/script approach to
tiobe/tics-github-action@v3with a per-run temporary directory.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
denisonbarbosa
force-pushed
the
fix-tics-action
branch
2 times, most recently
from
July 23, 2026 10:30
e7aa334 to
8b65c27
Compare
Our e2e tests are not running for a while now due to infrastructure issues; While we fix it, we should allow the reports to continue without necessarily having to merge the coverages.
This is what is recommended by our policies
Instead of installing the tool ourselves, let's use the tiobe official workflow
Pass the TiCS action's `tmpdir` input so the analysis log is written to a retained directory that the action uploads as an artifact automatically. A previous attempt globbed for the log under TMPDIR, but the TiCS CLI writes it into a self-generated temp dir that is removed on exit, so the file was gone by the time a separate upload step ran. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
The new names should better convey the intent of the workflow
denisonbarbosa
force-pushed
the
fix-tics-action
branch
from
July 23, 2026 10:41
8b65c27 to
7dc3cca
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Our e2e tests are not running for a while now due to infrastructure issues; While we fix it, we should allow the reports to continue without necessarily having to merge the coverages.