Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
1c82ddec
Unverified
Commit
1c82ddec
authored
2 months ago
by
Sergei Zharinov
Committed by
GitHub
2 months ago
Browse files
Options
Downloads
Patches
Plain Diff
refactor(bitrise): Simplify file parsing usage (#33525)
parent
6ff935ef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/modules/datasource/bitrise/index.ts
+1
-4
1 addition, 4 deletions
lib/modules/datasource/bitrise/index.ts
lib/modules/datasource/bitrise/schema.ts
+7
-4
7 additions, 4 deletions
lib/modules/datasource/bitrise/schema.ts
with
8 additions
and
8 deletions
lib/modules/datasource/bitrise/index.ts
+
1
−
4
View file @
1c82ddec
...
...
@@ -6,7 +6,6 @@ import { parseGitUrl } from '../../../util/git/url';
import
{
GithubHttp
}
from
'
../../../util/http/github
'
;
import
{
fromBase64
}
from
'
../../../util/string
'
;
import
{
joinUrlParts
}
from
'
../../../util/url
'
;
import
{
parseSingleYaml
}
from
'
../../../util/yaml
'
;
import
{
GithubContentResponse
}
from
'
../../platform/github/schema
'
;
import
semver
from
'
../../versioning/semver
'
;
import
{
Datasource
}
from
'
../datasource
'
;
...
...
@@ -111,9 +110,7 @@ export class BitriseDatasource extends Datasource {
}
const
content
=
fromBase64
(
body
.
content
);
const
{
published_at
,
source_code_url
}
=
parseSingleYaml
(
content
,
{
customSchema
:
BitriseStepFile
,
});
const
{
published_at
,
source_code_url
}
=
BitriseStepFile
.
parse
(
content
);
result
.
releases
.
push
({
version
:
versionDir
.
name
,
...
...
This diff is collapsed.
Click to expand it.
lib/modules/datasource/bitrise/schema.ts
+
7
−
4
View file @
1c82ddec
import
{
z
}
from
'
zod
'
;
import
{
Yaml
}
from
'
../../../util/schema-utils
'
;
export
const
BitriseStepFile
=
z
.
object
({
published_at
:
z
.
string
(),
source_code_url
:
z
.
string
().
optional
(),
});
export
const
BitriseStepFile
=
Yaml
.
pipe
(
z
.
object
({
published_at
:
z
.
string
(),
source_code_url
:
z
.
string
().
optional
(),
}),
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment