We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22d0382 commit d4ab3e1Copy full SHA for d4ab3e1
2 files changed
MAINTAINER.md
@@ -0,0 +1 @@
1
+OriHoch
Makefile
@@ -0,0 +1,14 @@
+.PHONY: all list templates
2
+
3
4
+MAINTAINER := $(shell head -n 1 MAINTAINER.md)
5
6
7
+all: list
8
9
+list:
10
+ @grep '^\.PHONY' Makefile | cut -d' ' -f2- | tr ' ' '\n'
11
12
+templates:
13
+ sed -i -E "s/@(\w*)/@$(MAINTAINER)/" .github/issue_template.md
14
+ sed -i -E "s/@(\w*)/@$(MAINTAINER)/" .github/pull_request_template.md
0 commit comments