File tree Expand file tree Collapse file tree 13 files changed +169
-1
lines changed
Expand file tree Collapse file tree 13 files changed +169
-1
lines changed Original file line number Diff line number Diff line change 1+ * @ jef
Original file line number Diff line number Diff line change 1+ github : jef
Original file line number Diff line number Diff line change 1+ ---
2+ name : 🐛 Bug report
3+ about : Report a problem
4+ title : ' bug: '
5+ labels : ' bug'
6+ assignees : jef
7+
8+ ---
9+
10+ ### Problem
11+
12+ <!--
13+ Describe the problem here. Feel free to include any screenshots.
14+
15+ Please try to include as many details as possible.
16+ -->
17+
18+ <!--
19+ Application:
20+ Version:
21+ -->
22+
23+ ### Expected output
24+
25+ <!-- Describe the expected output here. -->
Original file line number Diff line number Diff line change 1+ ---
2+ name : 🚀 Feature request
3+ about : Suggest a new idea
4+ title : ' feat: '
5+ labels : ' enhancement'
6+ assignees : jef
7+
8+ ---
9+
10+ ### Description
11+
12+ <!-- Describe the feature here. -->
13+
14+ ### Possible solution
15+
16+ <!-- Describe the possible solution here. -->
Original file line number Diff line number Diff line change 1+ ### Description
2+
3+ <!-- Fixes #(issue) -->
4+ <!-- Please also include relevant motivation and context. -->
5+
6+ ### Testing
7+
8+ <!-- Please describe the tests that you ran to verify your changes. -->
9+ <!-- Provide instructions so we can reproduce. -->
10+ <!-- Please also list any relevant details for your test configuration -->
11+
12+ ### New dependencies
13+
14+ <!-- List any dependencies that are required for this change. -->
15+ <!-- Otherwise, delete section. -->
Original file line number Diff line number Diff line change 1+ {
2+ "labels" : [" dependencies" ],
3+ "extends" : [
4+ " config:base"
5+ ]
6+ }
Original file line number Diff line number Diff line change 1+ name : cd
2+ on :
3+ push :
4+ branches :
5+ - master
6+ jobs :
7+ cd :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v2
11+ - uses : GoogleCloudPlatform/release-please-action@v1.3.2
12+ with :
13+ token : ${{ secrets.GITHUB_TOKEN }}
14+ release-type : simple
15+ package-name : audit-org-keys
Original file line number Diff line number Diff line change 1+ name : ci
2+ on : push
3+ jobs :
4+ build :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : actions/checkout@master
8+ - uses : actions/setup-go@v2
9+ with :
10+ go-version : ' 1.14'
11+ - uses : actions/cache@v2
12+ with :
13+ path : ~/go/pkg/mod
14+ key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
15+ restore-keys : |
16+ ${{ runner.os }}-go-
17+ - name : Pull dependencies
18+ run : make build
19+ lint :
20+ runs-on : ubuntu-latest
21+ steps :
22+ - uses : actions/checkout@master
23+ - uses : actions/setup-go@v2
24+ with :
25+ go-version : ' 1.14'
26+ - uses : actions/cache@v2
27+ with :
28+ path : ~/go/pkg/mod
29+ key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
30+ restore-keys : |
31+ ${{ runner.os }}-go-
32+ - name : Pull dependencies
33+ run : make lint
Original file line number Diff line number Diff line change 1+ .idea /
2+ bin /
You can’t perform that action at this time.
0 commit comments