Skip to content

Commit 75ce557

Browse files
authored
Merge branch 'master' into add-network_interfaces_eni
2 parents 191f11b + 9f145b1 commit 75ce557

22 files changed

+285
-72
lines changed

.circleci/config.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
version: 2.1
3+
orbs:
4+
kitchen: sous-chefs/kitchen@2
5+
workflows:
6+
danger:
7+
jobs:
8+
- kitchen/danger:
9+
name: danger
10+
context: Danger-Minimal

.editorconfig

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root=true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
# 2 space indentation
12+
indent_style = space
13+
indent_size = 2
14+
15+
# Avoid issues parsing cookbook files later
16+
charset = utf-8
17+
18+
# Avoid cookstyle warnings
19+
trim_trailing_whitespace = true

.envrc

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

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/md-links.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: md-links
3+
4+
"on":
5+
pull_request:
6+
push:
7+
branches: [master]
8+
9+
jobs:
10+
md-links:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check out code
14+
uses: actions/checkout@master
15+
- name: markdown-link-check
16+
uses: gaurav-nelson/github-action-markdown-link-check@v1
17+
with:
18+
use-verbose-mode: "yes"
19+
folder-path: "documentation"

.github/workflows/stale.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Mark stale issues and pull requests
3+
4+
"on":
5+
schedule:
6+
- cron: "0 0 * * *"
7+
8+
jobs:
9+
stale:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/stale@v3
15+
with:
16+
repo-token: ${{ secrets.GITHUB_TOKEN }}
17+
close-issue-message: >
18+
Closing due to inactivity.
19+
If this is still an issue please reopen or open another issue.
20+
Alternatively drop by the #sous-chefs channel on the [Chef Community Slack](http://community-slack.chef.io/) and we'll be happy to help!
21+
Thanks, Sous-Chefs.
22+
days-before-close: 7
23+
days-before-stale: 365
24+
stale-issue-message: >
25+
Marking stale due to inactivity.
26+
Remove stale label or comment or this will be closed in 7 days.
27+
Alternatively drop by the #sous-chefs channel on the [Chef Community Slack](http://community-slack.chef.io/) and we'll be happy to help!
28+
Thanks, Sous-Chefs.

.gitignore

Lines changed: 37 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,49 @@
1+
*.rbc
2+
.config
3+
InstalledFiles
4+
pkg
5+
test/tmp
6+
test/version_tmp
7+
tmp
8+
_Store
19
*~
210
*#
311
.#*
412
\#*#
5-
.*.sw[a-z]
613
*.un~
714
*.tmp
815
*.bk
916
*.bkup
10-
.kitchen.local.yml
11-
Berksfile.lock
17+
18+
# editor files
19+
.idea
20+
.*.sw[a-z]
21+
22+
# ruby/bundler/rspec files
23+
.ruby-version
24+
.ruby-gemset
25+
.rvmrc
1226
Gemfile.lock
27+
.bundle
28+
*.gem
29+
coverage
30+
spec/reports
1331

14-
.bundle/
15-
.cache/
16-
.kitchen/
17-
.vagrant/
18-
.vagrant.d/
19-
.yardoc/
20-
bin/
32+
# YARD / rdoc artifacts
33+
.yardoc
34+
_yardoc
2135
doc/
22-
tmp/
36+
rdoc
37+
38+
# chef infra stuff
39+
Berksfile.lock
40+
.kitchen
41+
kitchen.local.yml
2342
vendor/
43+
.coverage/
44+
.zero-knife.rb
45+
Policyfile.lock.json
46+
47+
# vagrant stuff
48+
.vagrant/
49+
.vagrant.d/

.overcommit.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
PreCommit:
3+
TrailingWhitespace:
4+
enabled: true
5+
YamlLint:
6+
enabled: true
7+
Rspec:
8+
enabled: true
9+
required_executable: 'rspec'
10+
Cookstyle:
11+
enabled: true
12+
required_executable: 'cookstyle'
13+
command: ["cookstyle"]
14+
Delivery:
15+
enabled: true
16+
required_executable: 'delivery'
17+
flags: ['local', 'all']
18+
CommitMsg:
19+
HardTabs:
20+
enabled: true

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"chef-software.chef",
4+
"rebornix.ruby",
5+
"editorconfig.editorconfig"
6+
]
7+
}

.yamllint

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
extends: default
3+
rules:
4+
line-length:
5+
max: 256
6+
level: warning
7+
document-start: disable

0 commit comments

Comments
 (0)