-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gitlab CI collapsible sections use unique section header name. #3787
Comments
Or make use of e.g. |
@antonmedv Can you make a new release with this change? I would like to test it but cannot apply it as patch since |
Will do a release. |
Unfortunately this still doesn't work well with tasks like this: desc('Clean up old local releases');
task('local:cleanup', function () {
on(localhost(), function (): void {
invoke('deploy:cleanup');
});
})->once(); Our task('deploy', [
// ...
'deploy:cleanup',
'local:cleanup',
// ...
]); So strictly speaking the |
@antonmedv Would you accept an adjustment so that |
I think yes. I'm now in big refactoring so we can introduce those changes. |
Currently script uses unix timestamp ($start) as both start time + section name (same goes for section_end - using $start).
This causes collision within multiple tasks running in the same second cause it's used by gitlab for grouping.
I think better solution is to use slug of task name:
or to be more "unique" - combination of task name slug + startTime:
The text was updated successfully, but these errors were encountered: