Skip to content

Commit fecd632

Browse files
committed
init commit
1 parent 2bcc8db commit fecd632

File tree

327 files changed

+69975
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

327 files changed

+69975
-1
lines changed

.VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(tag: v0.28.7)

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.VERSION export-subst
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug", "needs triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: textarea
11+
id: steps
12+
attributes:
13+
label: Steps to Reproduce
14+
description: Tell us how to reproduce this issue.
15+
placeholder: These are the steps!
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: your-env
20+
attributes:
21+
label: Your Environment
22+
value: |-
23+
* OS -
24+
* `step` CLI Version -
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: expected-behavior
29+
attributes:
30+
label: Expected Behavior
31+
description: What did you expect to happen?
32+
validations:
33+
required: true
34+
- type: textarea
35+
id: actual-behavior
36+
attributes:
37+
label: Actual Behavior
38+
description: What happens instead?
39+
validations:
40+
required: true
41+
- type: textarea
42+
id: context
43+
attributes:
44+
label: Additional Context
45+
description: Add any other context about the problem here.
46+
validations:
47+
required: false
48+
- type: textarea
49+
id: contributing
50+
attributes:
51+
label: Contributing
52+
value: |
53+
Vote on this issue by adding a 👍 reaction.
54+
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).
55+
validations:
56+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Ask on Discord
4+
url: https://discord.gg/7xgjhVAg6g
5+
about: You can ask for help here!
6+
- name: Want to contribute to step CLI?
7+
url: https://github.com/smallstep/cli/blob/master/docs/CONTRIBUTING.md
8+
about: Be sure to read contributing guidelines!
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Documentation Request
3+
about: Request documentation for a feature
4+
title: '[docs]:'
5+
labels: docs, needs triage
6+
assignees: ''
7+
8+
---
9+
10+
## Hello!
11+
<!-- Please leave this section as-is, it's designed to help others in the community know how to interact with our GitHub issues. -->
12+
13+
- Vote on this issue by adding a 👍 reaction
14+
- If you want to document this feature, comment to let us know (we'll work with you on design, scheduling, etc.)
15+
16+
## Affected area/feature
17+
18+
<!---
19+
Tell us which feature you'd like to see documented.
20+
- Where would you like that documentation to live (command line usage output, website, github markdown on the repo)?
21+
- If there are specific attributes or options you'd like to see documented, please include those in the request.
22+
-->
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Enhancement
3+
about: Suggest an enhancement to step cli
4+
title: ''
5+
labels: enhancement, needs triage
6+
assignees: ''
7+
8+
---
9+
10+
## Hello!
11+
<!-- Please leave this section as-is,
12+
it's designed to help others in the community know how to interact with our GitHub issues. -->
13+
14+
- Vote on this issue by adding a 👍 reaction
15+
- If you want to implement this feature, comment to let us know (we'll work with you on design, scheduling, etc.)
16+
17+
## Issue details
18+
19+
<!-- Enhancement requests are most helpful when they describe the problem you're having
20+
as well as articulating the potential solution you'd like to see built. -->
21+
22+
## Why is this needed?
23+
24+
<!-- Let us know why you think this enhancement would be good for the project or community. -->

.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"

.github/workflows/actionlint.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Lint GitHub Actions workflows
2+
on:
3+
push:
4+
workflow_call:
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
8+
cancel-in-progress: true
9+
10+
permissions:
11+
contents: write
12+
pull-requests: write
13+
14+
jobs:
15+
actionlint:
16+
uses: smallstep/workflows/.github/workflows/actionlint.yml@main
17+
secrets: inherit

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
tags-ignore:
6+
- 'v*'
7+
branches:
8+
- "master"
9+
pull_request:
10+
workflow_call:
11+
secrets:
12+
CODECOV_TOKEN:
13+
required: true
14+
15+
concurrency:
16+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
17+
cancel-in-progress: true
18+
19+
jobs:
20+
ci:
21+
permissions:
22+
actions: read
23+
contents: read
24+
security-events: write
25+
uses: smallstep/workflows/.github/workflows/goCI.yml@main
26+
with:
27+
only-latest-golang: false
28+
run-codeql: true
29+
secrets: inherit

0 commit comments

Comments
 (0)