Skip to content

Commit

Permalink
Fix yaml for dependabot
Browse files Browse the repository at this point in the history
Incorrect indentation

Signed-off-by: David Schall <[email protected]>
  • Loading branch information
dhschall committed Aug 17, 2023
0 parents commit 801b0c9
Show file tree
Hide file tree
Showing 662 changed files with 108,886 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
benchmarks/gg/examples/excamera/drop.avi filter=lfs diff=lfs merge=lfs -text
benchmarks/gg/examples/llvm/llvm.tar.gz filter=lfs diff=lfs merge=lfs -text
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior.

**Expected behavior**
A clear and concise description of what you expected to happen.

**Logs**
Please add relevant excerpts from the following logs: `vhive`, `firecracker-containerd`,
and if used with Kubernetes additionally `containerd` and/or other relevant
logs of Kubernetes containers and setup scripts.

**Notes**
Currently, we support only Ubuntu 18 (x86) bare-metal hosts, however
we encourage the users to reports Issues that appear in different settings.
We will try to help and potentially include these scenarios into our CI
if given enough interest from the community.
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Enhancement
about: Create a report to help us improve
title: ''
labels: enhancement
assignees: ''

---

**Describe the enhancement**
A clear and concise description of what the enhancement is.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
19 changes: 19 additions & 0 deletions .github/configs/commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const Configuration = {

// The configuration array contains:

// Level [0..2]: 0 disables the rule. For 1 it will be considered a warning for 2 an error.
// Applicable [always|never]: never inverts the rule.
// Value: value to use for this rule.
// Source:
// https://commitlint.js.org/#/reference-rules

// Any rules defined here will override rules from @commitlint/config-conventional
rules: {
"header-max-length": [2, "always", 72],
"header-min-length": [2, "always", 10],
"signed-off-by": [2, "always", "Signed-off-by:"],
},
};

module.exports = Configuration;
33 changes: 33 additions & 0 deletions .github/configs/linkcheck.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"ignorePatterns": [
{
"pattern": "^http://localhost:*"
},
{
"pattern": "^http://127.0.0.1:*"
},
{
"pattern": "^https://opensource.org*"
},
{
"pattern": "^https://twitter.com/"
},
{
"pattern": "^https://www.intel.com/content/www/us/en/develop/documentation/vtune-cookbook/top/methodologies/top-down-microarchitecture-analysis-method.html"
}
],
"replacementPatterns": [
{
"pattern": "^/",
"replacement": "/github/workspace/"
}
],
"httpHeaders": [
{
"urls": ["https://docs.github.com/"],
"headers": {
"Accept-Encoding": "zstd, br, gzip, deflate"
}
}
]
}
18 changes: 18 additions & 0 deletions .github/configs/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
matrix:
- name: Markdown
aspell:
lang: en
dictionary:
wordlists:
- ./.github/configs/wordlist.txt
encoding: utf-8
pipeline:
- pyspelling.filters.markdown:
- pyspelling.filters.html:
comments: false
ignores:
- code
- pre
sources:
- '**/*.md'
default_encoding: utf-8
Loading

0 comments on commit 801b0c9

Please sign in to comment.