Skip to content

Commit 01e5b61

Browse files
committed
2 parents c50486b + 8a51adb commit 01e5b61

File tree

3 files changed

+57
-8
lines changed

3 files changed

+57
-8
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Expected Behavior
2+
=================
3+
4+
5+
6+
---
7+
Actual Behavior
8+
=================
9+
10+
11+
12+
---
13+
Steps to Reproduce the Problem
14+
===============================
15+
<!---
16+
Open an issue and provide enough cotext information to
17+
repro the condition. Don't worry if it's not possible to
18+
reproduce (reliably). Submit an issue anyways including
19+
the information you do have. The version information
20+
should be provided in all bug reports.
21+
-->
22+
23+
1.
24+
1.
25+
1.
26+
27+
---
28+
Specifications
29+
=================
30+
- Version:
31+
- Platform:

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[Fixes-###](https://github.com/docker-slim/docker-slim/issues/###)
2+
==================================================================
3+
4+
What
5+
===============
6+
7+
8+
Why
9+
===============
10+
11+
12+
How Tested
13+
===============
14+
15+

Makefile

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
1-
default: build_in_docker
1+
default: build_in_docker ## build docker-slim in docker by default
22

3-
build_in_docker:
3+
build_in_docker: ## build docker-slim in docker
44
rm -rfv bin
55
'$(CURDIR)/scripts/docker-builder.run.sh'
66

7-
build:
7+
build: ## build docker-slim
88
'$(CURDIR)/scripts/src.build.sh'
99

10-
fmt:
10+
fmt: ## format all golang files
1111
'$(CURDIR)/scripts/src.fmt.sh'
1212

13-
inspect:
13+
help: ## prints out the menu of command options
14+
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
15+
16+
inspect: ## report suspicious constructs and linting errors
1417
'$(CURDIR)/scripts/src.inspect.sh'
1518

16-
tools:
19+
tools: ## install necessary tools
1720
'$(CURDIR)/scripts/tools.get.sh'
1821

19-
clean:
22+
clean: ## clean up
2023
'$(CURDIR)/scripts/src.cleanup.sh'
2124

22-
.PHONY: default build_in_docker build fmt inspect tools clean
25+
.PHONY: default help build_in_docker build fmt inspect tools clean

0 commit comments

Comments
 (0)