-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit fbbd702
Showing
52 changed files
with
3,132 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners | ||
|
||
# SECTION: Owner(s) for everything in the repo, unless a later match takes precedence | ||
# FILE PATTERN OWNER(S) | ||
* @NONE | ||
|
||
# SECTION: Owner(s) for specific directories | ||
# FILE PATTERN OWNER(S) | ||
|
||
# SECTION: Owner(s) for files/directories related to `semantic-release` | ||
# FILE PATTERN OWNER(S) | ||
/.github/workflows/ @saltstack-formulas/ssf | ||
/bin/install-hooks @saltstack-formulas/ssf | ||
/bin/kitchen @saltstack-formulas/ssf | ||
/docs/AUTHORS.rst @saltstack-formulas/ssf | ||
/docs/CHANGELOG.rst @saltstack-formulas/ssf | ||
/docs/TOFS_pattern.rst @saltstack-formulas/ssf | ||
/template/libsaltcli.jinja @saltstack-formulas/ssf | ||
/template/libtofs.jinja @saltstack-formulas/ssf | ||
/test/integration/**/inspec.yml @saltstack-formulas/ssf | ||
/test/integration/**/README.md @saltstack-formulas/ssf | ||
/.gitignore @saltstack-formulas/ssf | ||
/.cirrus.yml @saltstack-formulas/ssf | ||
/.pre-commit-config.yaml @saltstack-formulas/ssf | ||
/.rstcheck.cfg @saltstack-formulas/ssf | ||
/.rubocop.yml @saltstack-formulas/ssf | ||
/.salt-lint @saltstack-formulas/ssf | ||
/.travis.yml @saltstack-formulas/ssf | ||
/.yamllint @saltstack-formulas/ssf | ||
/AUTHORS.md @saltstack-formulas/ssf | ||
/CHANGELOG.md @saltstack-formulas/ssf | ||
/CODEOWNERS @saltstack-formulas/ssf | ||
/commitlint.config.js @saltstack-formulas/ssf | ||
/FORMULA @saltstack-formulas/ssf | ||
/Gemfile @saltstack-formulas/ssf | ||
/Gemfile.lock @saltstack-formulas/ssf | ||
/kitchen.yml @saltstack-formulas/ssf | ||
/pre-commit_semantic-release.sh @saltstack-formulas/ssf | ||
/release-rules.js @saltstack-formulas/ssf | ||
/release.config.js @saltstack-formulas/ssf | ||
|
||
# SECTION: Owner(s) for specific files | ||
# FILE PATTERN OWNER(S) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: airflow | ||
os: Debian, Ubuntu, Raspbian, RedHat, Fedora, CentOS, Amazon, Oracle, Suse, openSUSE, Gentoo, Funtoo, Arch, Manjaro, Alpine, FreeBSD, OpenBSD, Solaris, SmartOS, Windows, MacOS | ||
os_family: Debian, RedHat, Suse, Gentoo, Arch, Alpine, FreeBSD, OpenBSD, Solaris, Windows, MacOS | ||
version: 1.0.0 | ||
release: 1 | ||
minimum_version: 2019.2 | ||
summary: airflow formula | ||
description: Formula to use as a template for other formulas | ||
top_level_dir: airflow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
|
||
# Use the latest version of `inspec` prior to `4.23.4`, which introduces a | ||
# regression where the diff isn't displayed when comparing using `eq`. | ||
gem 'inspec', '~> 4.22.22' | ||
# Install the `kitchen-docker` gem from GitHub because the latest version | ||
# currently available (`2.10.0`) doesn't include a recent fix for Gentoo. | ||
gem 'kitchen-docker', github: 'test-kitchen/kitchen-docker', ref: '41e80fe' | ||
gem 'kitchen-inspec', '>= 2.2.1' | ||
gem 'kitchen-salt', '>= 0.6.3' |
Oops, something went wrong.