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
8e7eec63
Commit
8e7eec63
authored
5 years ago
by
Rhys Arkins
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
chore: remove json schema from source control (#5420)
parent
52a7519f
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
renovate-schema.json
+0
-1498
0 additions, 1498 deletions
renovate-schema.json
test/json-schema.ts
+0
-12
0 additions, 12 deletions
test/json-schema.ts
with
1 addition
and
1510 deletions
.gitignore
+
1
−
0
View file @
8e7eec63
...
...
@@ -14,3 +14,4 @@ renovate-0.0.0-semantic-release.tgz
.eslintcache
junit.xml
/test-results
renovate-schema.json
This diff is collapsed.
Click to expand it.
renovate-schema.json
deleted
100644 → 0
+
0
−
1498
View file @
52a7519f
This diff is collapsed.
Click to expand it.
test/json-schema.ts
+
0
−
12
View file @
8e7eec63
import
shell
from
'
shelljs
'
;
shell
.
exec
(
'
yarn create-json-schema
'
);
const
res
=
shell
.
exec
(
'
git status --porcelain
'
,
{
silent
:
true
});
if
(
res
.
code
===
0
&&
!
res
.
includes
(
'
renovate-schema.json
'
))
{
shell
.
echo
(
'
PASS: renovate-schema.json is up to date
'
);
shell
.
exit
(
0
);
}
else
{
shell
.
echo
(
"
ERROR: renovate-schema.json needs updating. Run 'yarn create-json-schema' and commit.
"
);
shell
.
exit
(
-
1
);
}
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