Skip to content

Commit 07184b4

Browse files
committed
docs: update license, readme, and ci/cd
1 parent cbefbe5 commit 07184b4

File tree

13 files changed

+169
-1
lines changed

13 files changed

+169
-1
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @jef

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: jef

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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. -->
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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. -->

.github/pull_request_template.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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. -->

.github/renovate.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"labels": ["dependencies"],
3+
"extends": [
4+
"config:base"
5+
]
6+
}

.github/workflows/cd.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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/[email protected]
12+
with:
13+
token: ${{ secrets.GITHUB_TOKEN }}
14+
release-type: simple
15+
package-name: audit-org-keys

.github/workflows/ci.yaml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea/
2+
bin/

CHANGELOG.md

Whitespace-only changes.

0 commit comments

Comments
 (0)