FAQ
| This is a
LIVE
service |
Changelog
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Gitlab Triage
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Information Services
DevOps
Continuous Delivery
Gitlab Triage
Commits
fe948db9
Commit
fe948db9
authored
5 days ago
by
Andrew Vella
Browse files
Options
Downloads
Plain Diff
Merge branch 'dev-triage-dry-run' into 'main'
feat: set dry-run via env var See merge request
!14
parents
d717a379
ec58a359
No related branches found
No related tags found
1 merge request
!14
feat: set dry-run via env var
Pipeline
#725011
passed
5 days ago
Stage: build
Stage: test
Stage: development
Stage: production
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+3
-2
3 additions, 2 deletions
Dockerfile
README.md
+1
-0
1 addition, 0 deletions
README.md
with
4 additions
and
2 deletions
Dockerfile
+
3
−
2
View file @
fe948db9
...
...
@@ -25,13 +25,14 @@ ENV GITLAB_URL=""
ENV
TRIAGE_SOURCE_ID=""
ENV
TRIAGE_SOURCE_TYPE=""
ENV
TRIAGE_POLICY_FILE=""
ENV
TRIAGE_DRY_RUN="true"
###############################################################################
# A development focused image that does not include the triage policies since these are mounted
# as a volume.
FROM
install-deps
AS
development
CMD
["sh", "-c", "bundle exec gitlab-triage
--dry-run
--token ${GITLAB_TOKEN} --host-url ${GITLAB_URL} --source ${TRIAGE_SOURCE_TYPE} --source-id ${TRIAGE_SOURCE_ID} --policies-file ${TRIAGE_POLICY_FILE}"]
CMD
["sh", "-c", "bundle exec gitlab-triage --token ${GITLAB_TOKEN} --host-url ${GITLAB_URL} --source ${TRIAGE_SOURCE_TYPE} --source-id ${TRIAGE_SOURCE_ID} --policies-file ${TRIAGE_POLICY_FILE}
$(if [ \"$TRIAGE_DRY_RUN\" != \"false\" ]; then echo '--dry-run'; fi)
"]
###############################################################################
# The last target is the "default" one and in our case the `production` image that includes all
...
...
@@ -40,4 +41,4 @@ FROM install-deps AS production
COPY
triage-policies/ triage-policies/
CMD
["sh", "-c", "bundle exec gitlab-triage
--dry-run
--token ${GITLAB_TOKEN} --host-url ${GITLAB_URL} --source ${TRIAGE_SOURCE_TYPE} --source-id ${TRIAGE_SOURCE_ID} --policies-file ${TRIAGE_POLICY_FILE}"]
CMD
["sh", "-c", "bundle exec gitlab-triage --token ${GITLAB_TOKEN} --host-url ${GITLAB_URL} --source ${TRIAGE_SOURCE_TYPE} --source-id ${TRIAGE_SOURCE_ID} --policies-file ${TRIAGE_POLICY_FILE}
$(if [ \"$TRIAGE_DRY_RUN\" != \"false\" ]; then echo '--dry-run'; fi)
"]
This diff is collapsed.
Click to expand it.
README.md
+
1
−
0
View file @
fe948db9
...
...
@@ -11,6 +11,7 @@ The following settings are used to configure the `gitlab-triage` tool:
*
`TRIAGE_SOURCE_ID`
the id of the target GitLab
`project`
or
`group`
.
*
`TRIAGE_SOURCE_TYPE`
can be either
`projects`
or
`groups`
corresponding to the associated
`TRIAGE_SOURCE_ID`
.
*
`TRIAGE_POLICY_FILE`
a YAML file containing a valid triage policy.
*
`TRIAGE_DRY_RUN`
if set to
`true`
(or any value other than
`false`
) dry-run mode is enabled. Defaults to
`false`
.
## Local Development
...
...
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