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
70489dd4
Commit
70489dd4
authored
Mar 01, 2021
by
Gabe Berke-Williams
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo in pipeline status
parent
446fc0e5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
app/mailers/emails/pipelines.rb
app/mailers/emails/pipelines.rb
+1
-1
changelogs/unreleased/55412-typo-in-pipeline-status-email.yml
...gelogs/unreleased/55412-typo-in-pipeline-status-email.yml
+5
-0
spec/mailers/emails/pipelines_spec.rb
spec/mailers/emails/pipelines_spec.rb
+1
-1
No files found.
app/mailers/emails/pipelines.rb
View file @
70489dd4
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
module
Emails
module
Emails
module
Pipelines
module
Pipelines
def
pipeline_success_email
(
pipeline
,
recipients
)
def
pipeline_success_email
(
pipeline
,
recipients
)
pipeline_mail
(
pipeline
,
recipients
,
'Succesful'
)
pipeline_mail
(
pipeline
,
recipients
,
'Succes
s
ful'
)
end
end
def
pipeline_failed_email
(
pipeline
,
recipients
)
def
pipeline_failed_email
(
pipeline
,
recipients
)
...
...
changelogs/unreleased/55412-typo-in-pipeline-status-email.yml
0 → 100644
View file @
70489dd4
---
title
:
Fix typo in pipeline status email
merge_request
:
55412
author
:
Gabriel Berke-Williams
type
:
fixed
spec/mailers/emails/pipelines_spec.rb
View file @
70489dd4
...
@@ -89,7 +89,7 @@ RSpec.describe Emails::Pipelines do
...
@@ -89,7 +89,7 @@ RSpec.describe Emails::Pipelines do
let
(
:sha
)
{
project
.
commit
(
ref
).
sha
}
let
(
:sha
)
{
project
.
commit
(
ref
).
sha
}
it_behaves_like
'correct pipeline information'
do
it_behaves_like
'correct pipeline information'
do
let
(
:status
)
{
'Succesful'
}
let
(
:status
)
{
'Succes
s
ful'
}
let
(
:status_text
)
{
"Pipeline #
#{
pipeline
.
id
}
has passed!"
}
let
(
:status_text
)
{
"Pipeline #
#{
pipeline
.
id
}
has passed!"
}
end
end
end
end
...
...
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