Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
53d597c4
Commit
53d597c4
authored
Apr 09, 2021
by
Dennis Appelt
Committed by
Mayra Cabrera
Apr 09, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use a local definition for the untamper job
parent
bf6c493c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
1 deletion
+30
-1
.gitlab-ci.yml
.gitlab-ci.yml
+4
-1
.gitlab/ci/untamper-my-lockfile.yml
.gitlab/ci/untamper-my-lockfile.yml
+26
-0
No files found.
.gitlab-ci.yml
View file @
53d597c4
...
...
@@ -113,4 +113,7 @@ include:
-
local
:
.gitlab/ci/dast.gitlab-ci.yml
-
local
:
.gitlab/ci/workhorse.gitlab-ci.yml
-
local
:
.gitlab/ci/graphql.gitlab-ci.yml
-
remote
:
'
https://gitlab.com/gitlab-org/frontend/untamper-my-lockfile/-/raw/main/.gitlab-ci-template.yml'
# switch the remote include to a local include until this is resolved:
# https://gitlab.com/gitlab-org/gitlab/-/issues/327299
# - remote: 'https://gitlab.com/gitlab-org/frontend/untamper-my-lockfile/-/raw/main/.gitlab-ci-template.yml'
-
local
:
.gitlab/ci/untamper-my-lockfile.yml
.gitlab/ci/untamper-my-lockfile.yml
0 → 100644
View file @
53d597c4
untamper-my-lockfile
:
image
:
registry.gitlab.com/gitlab-org/frontend/untamper-my-lockfile:main
stage
:
test
needs
:
[]
before_script
:
[]
after_script
:
[]
cache
:
{}
retry
:
1
script
:
-
untamper-my-lockfile --lockfile yarn.lock
rules
:
# Create a pipeline if the branch is named 'add-untamper-my-lockfile' in
# order to have an integration check added in the MR that introduces it
-
if
:
$CI_COMMIT_REF_NAME == "add-untamper-my-lockfile"
# Create a pipeline if there are changes in yarn.lock _and_ we are in a
# merge request _or_ branch pipeline.
#
# This ensures that the pipeline isn't run in scheduled jobs for example
#
# Also our best effort to support both branch and MR pipelines. In certain
# projects this might trigger _two_ pipelines. These projects can be fixed
# by adding proper workflow:rules
# https://docs.gitlab.com/ee/ci/yaml/#workflowrules
-
if
:
$CI_PIPELINE_SOURCE == "merge_request_event" || $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH
changes
:
-
yarn.lock
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment