Skip to content

Commit 2e07426

Browse files
author
Isaac Cohen
authored
Merge pull request #1 from birds-of-a-feather/update-readme
Update README.md
2 parents ec51f9a + e78ac09 commit 2e07426

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

CODEOWNERS

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This is a comment.
2+
# Each line is a file pattern followed by one or more owners.
3+
4+
# These owners will be the default owners for everything in
5+
# the repo. Unless a later match takes precedence,
6+
# @global-owner1 and @global-owner2 will be requested for
7+
# review when someone opens a pull request.
8+
* @issc29
9+
10+
# Order is important; the last matching pattern takes the most
11+
# precedence. When someone opens a pull request that only
12+
# modifies JS files, only @js-owner and not the global
13+
# owner(s) will be requested for a review.
14+
*.md @alewll-kevin
15+
16+
# In this example, @doctocat owns any files in the build/logs
17+
# directory at the root of the repository and any of its
18+
# subdirectories.
19+
/src/ @nathos @issc29

Jenkinsfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ def preview() {
125125
stage name: 'Deploy to Preview env', concurrency: 1
126126
step([$class: 'ArtifactArchiver', artifacts: '**/target/*.jar', fingerprint: true])
127127
def herokuApp = "${env.HEROKU_PREVIEW}"
128-
def id = createDeployment(getBranch(), "preview", "Deploying branch to test")
128+
def ref = "${env.GIT_COMMIT}"
129+
def id = createDeployment(ref, "preview", "Deploying branch to test")
129130
echo "Deployment ID: ${id}"
130131
if (id != null) {
131132
setDeploymentStatus(id, "pending", "https://${herokuApp}.herokuapp.com/", "Pending deployment to test");
@@ -205,7 +206,7 @@ def getRepoSlug() {
205206
tokens = "${env.JOB_NAME}".tokenize('/')
206207
org = tokens[tokens.size()-3]
207208
repo = tokens[tokens.size()-2]
208-
return "githubcustomers/reading-time"
209+
return "birds-of-a-feather/reading-time"
209210
//return "${org}/${repo}"
210211
}
211212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Reading Time
2-
Reading Time is a web application that lists staff recommended books, and stuff.
2+
Reading Time is a web application that lists staff recommended books, and stuff.
33

44
## Installing
55

0 commit comments

Comments
 (0)