Skip to content

Commit 10992d2

Browse files
fix
1 parent 8bef953 commit 10992d2

13 files changed

Lines changed: 199 additions & 1 deletion

File tree

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Bug Report
2+
description: Report a bug you encountered
3+
labels: [ bug ]
4+
body:
5+
- type: textarea
6+
id: problem
7+
attributes:
8+
label: Describe the bug?
9+
description: |
10+
Please be as detailed as possible. This will help us address the bug in a timely manner.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: expected
16+
attributes:
17+
label: What is expected to happen?
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: actual
23+
attributes:
24+
label: What is the actual behavior?
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: repro
30+
attributes:
31+
label: Reproduction Steps?
32+
description: |
33+
Please provide as much detail as possible to help us reproduce your bug.
34+
A reproduction repo is very helpful for us as well.
35+
validations:
36+
required: true
37+
38+
- type: textarea
39+
id: additional
40+
attributes:
41+
label: Additional Information?
42+
43+
- type: textarea
44+
id: osVersion
45+
attributes:
46+
label: OS version
47+
description: |
48+
```console
49+
# On Linux:
50+
$ cat /etc/os-release
51+
# paste output here
52+
53+
# On Mac:
54+
$ uname -a
55+
# paste output here
56+
57+
# On Windows:
58+
C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
59+
# paste output here
60+
```
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Feature Request
2+
description: Request a new feature?
3+
labels: [ enhancement ]
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Describe the feature request?
9+
description: |
10+
Please leave a helpful description of the feature request here.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: documentation
16+
attributes:
17+
label: Provide a documentation link
18+
description: |
19+
Please provide any links to the documentation. This will help us with this
20+
feature request.
21+
22+
- type: textarea
23+
id: additional
24+
attributes:
25+
label: Additional Information?

.github/dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
updates:
3+
# GitHub Actions dependencies
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
# Docker dependencies
9+
- package-ecosystem: "docker"
10+
directory: "/docker/openldap"
11+
schedule:
12+
interval: "weekly"
13+
- package-ecosystem: "docker"
14+
directory: "/docker/okta-ldap-agent"
15+
schedule:
16+
interval: "weekly"

.github/stale.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
daysUntilStale: 60
2+
daysUntilClose: 14
3+
exemptLabels:
4+
- postponed
5+
staleLabel: stale
6+
markComment: >
7+
This issue has been automatically marked as stale because it has not had
8+
recent activity. It will be closed if no further activity occurs. Thank you
9+
for your contributions.
10+
closeComment:
11+
This issue has been automatically closed as stale it has not had recent
12+
activity.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Dependency Review
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
dependency-review:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/dependency-review-action@master
10+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Markdown Lint
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
markdown-lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: DavidAnson/markdownlint-cli2-action@v16
11+
with:
12+
globs: '**/*.md'

.github/workflows/release.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*.*.*'
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Create Release
14+
uses: softprops/action-gh-release@master

.github/workflows/secret-scan.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Secret Scan
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
secret-scan:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: trufflesecurity/trufflehog@main

.github/workflows/shellcheck.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Lint Shell Scripts
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
shellcheck:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Run ShellCheck
11+
uses: ludeeus/action-shellcheck@master
12+
with:
13+
severity: warning
14+
additional_files: '**/*.sh'
15+

.github/workflows/shfmt.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Shell Script Formatting
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
shfmt:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Install shfmt
11+
run: sudo apt-get install -y shfmt
12+
- name: Run shfmt
13+
run: shfmt -d .

0 commit comments

Comments
 (0)