Skip to content

Commit b7a588f

Browse files
authored
Initial commit
0 parents  commit b7a588f

6 files changed

Lines changed: 56 additions & 0 deletions

File tree

.github/PULL_REQUEST_TEMPLATE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!---
2+
Please provide answers in the spaces below each prompt, where applicable.
3+
Not every PR requires responses for each prompt.
4+
Use your discretion.
5+
-->
6+
#### Name of feature:
7+
8+
#### Pain or issue this feature alleviates:
9+
10+
#### Why is this important to the project (if not answered above):
11+
12+
#### Is there documentation on how to use this feature? If so, where?
13+
14+
#### In what environments or workflows is this feature supported?
15+
16+
#### In what environments or workflows is this feature explicitly NOT supported (if any)?
17+
18+
#### Supporting links/other PRs/issues:
19+
20+
💔Thank you!

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "gomod" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"
12+
- package-ecosystem: "github-actions"
13+
directory: "/"
14+
schedule:
15+
interval: "weekly"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
on:
2+
schedule:
3+
- cron: '0 0 * * SUN'
4+
5+
jobs:
6+
code-scan:
7+
uses: smallstep/workflows/.github/workflows/code-scan.yml@main
8+
secrets: inherit
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Dependabot auto-merge
2+
on: pull_request
3+
4+
permissions:
5+
contents: write
6+
pull-requests: write
7+
8+
jobs:
9+
dependabot-auto-merge:
10+
uses: smallstep/workflows/.github/workflows/dependabot-auto-merge.yml@main
11+
secrets: inherit

CODEOWNERS

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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is a template repository for setting up golang projects with common workflows.

0 commit comments

Comments
 (0)