├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── config └── github_labels.json ├── delivery └── project.toml ├── tools ├── cookbook_releases.rb ├── fetch_contributors.rb ├── org-labels │ └── README.md ├── pull_all_supermarket_cookbooks.rb └── stove │ ├── .stove │ └── README.md └── vagrant_update.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/README.md -------------------------------------------------------------------------------- /config/github_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/config/github_labels.json -------------------------------------------------------------------------------- /delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/delivery/project.toml -------------------------------------------------------------------------------- /tools/cookbook_releases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/tools/cookbook_releases.rb -------------------------------------------------------------------------------- /tools/fetch_contributors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/tools/fetch_contributors.rb -------------------------------------------------------------------------------- /tools/org-labels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/tools/org-labels/README.md -------------------------------------------------------------------------------- /tools/pull_all_supermarket_cookbooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/tools/pull_all_supermarket_cookbooks.rb -------------------------------------------------------------------------------- /tools/stove/.stove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/tools/stove/.stove -------------------------------------------------------------------------------- /tools/stove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/tools/stove/README.md -------------------------------------------------------------------------------- /vagrant_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/community_cookbook_tools/HEAD/vagrant_update.sh --------------------------------------------------------------------------------