Skip to content

Commit 1edfd93

Browse files
committed
Merge branch 'core' of github.com:swcarpentry/lesson-template into adding-contributor-covenant
2 parents 0aa41ed + b489aa6 commit 1edfd93

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ README.html
22
LAYOUT.html
33
FAQ.html
44
DESIGN.html
5+
CONTRIBUTING.html
56
*~
67
*.pyc
78
_site

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ You also agree to abide by our
4343
[conduct]: CONDUCT.md
4444
[lesson-template-issues]: https://github.com/swcarpentry/lesson-template/issues
4545
[license]: LICENSE.md
46-
[pro-git]: http://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project
46+
[pro-git-chapter]: http://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project
4747
[swc-lessons]: http://software-carpentry.org/lessons.html
4848
[swc-maintainers]: http://software-carpentry.org/lessons.html#maintainers
4949
[swc-website]: http://software-carpentry.org

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ DST_RMD = $(patsubst %.Rmd,%.md,$(SRC_RMD))
44

55
# All Markdown files (hand-written and generated).
66
ALL_MD = $(wildcard *.md) $(DST_RMD)
7-
EXCLUDE_MD = README.md LAYOUT.md FAQ.md DESIGN.md
7+
EXCLUDE_MD = README.md LAYOUT.md FAQ.md DESIGN.md CONTRIBUTING.md
88
SRC_MD = $(filter-out $(EXCLUDE_MD),$(ALL_MD))
99
DST_HTML = $(patsubst %.md,%.html,$(SRC_MD))
1010

tools/setup-labels

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ fi
3030
OWNER=$1
3131
REPO=$2
3232
GITHUB_URL=https://github.com/${OWNER}/${REPO}
33-
LABELS=(bug defer discussion duplicate enhancement filed-by-newcomer getting-started help-wanted left-as-was suitable-for-newcomer work-in-progress)
34-
COLORS=(FF0000 66FF00 0000FF 98FB98 E0115F FFFF00 808000 89CFF0 568203 FCE883 545AA7)
35-
LABELS_TO_DELETE=(help%20wanted invalid question wontfix)
33+
LABELS=(bug build defer discussion documentation enhancement newcomer-friendly upstream work-in-progress)
34+
COLORS=(FF0000 551033 66FF00 0000FF D4318C E0115F FCE883 83F52C 545AA7)
35+
LABELS_TO_DELETE=(duplicate filed-by-newcomer getting-started help%20wanted help-wanted invalid left-as-was suitable-for-newcomer question wontfix)
3636

3737
# Test if repository exists
3838
curl -s --head ${GITHUB_URL} | head -n 1 | grep -q "HTTP/1.[01] [23].."

0 commit comments

Comments
 (0)