commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
e33e598fdfa53e56c2ebb0126be0986934687a08 | beets/.config/beets/config.yaml | beets/.config/beets/config.yaml | directory: ~/Music/Music
library: ~/Music/beets.blb
per_disc_numbering: yes
asciify_paths: yes
plugins: chroma convert edit embedart fetchart lyrics ftintitle inline lastgenre play replaygain scrub info
ui:
color: yes
import:
write: yes
copy: yes
move: no
link: no
resume: no
paths:
default: Albums/$al... | directory: ~/Music/Music
library: ~/Music/beets.blb
per_disc_numbering: yes
asciify_paths: yes
plugins: chroma convert edit embedart fetchart lyrics ftintitle inline lastgenre play replaygain scrub info badfiles
ui:
color: yes
import:
write: yes
copy: yes
move: no
link: no
resume: no
paths:
default: A... | Add badfiles plugin to beets | Add badfiles plugin to beets
| YAML | mit | 9seconds/dotfiles,9seconds/dotfiles |
85b61ebade83f495dd0eb28de813182f24870ef8 | .github/workflows/code-checks.yml | .github/workflows/code-checks.yml | name: 'Tests & Formatting'
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# Run weekly; github deletes caches that haven't been used in a week.
- cron: '0 0 * * 0'
jobs:
checks:
runs-on: ubuntu-latest
env:
imagemagick_version: 7.0.10-46
steps:
... | name: 'Tests & Formatting'
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# Run weekly; github deletes caches that haven't been used in a week.
- cron: '0 0 * * 0'
jobs:
checks:
runs-on: ubuntu-20.04
steps:
- name: Install system dependencies
... | Update workflow to use libvips | Update workflow to use libvips
| YAML | bsd-3-clause | robwierzbowski/jekyll-picture-tag |
cb804029e80bf14a8e5104f7bee07fdb5bb523ae | .github/workflows/npm-publish.yml | .github/workflows/npm-publish.yml | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
release:
types: [created]
jobs:
build:
runs-on: ... | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
release:
types: [created]
jobs:
build:
runs-on: ... | Remove package publishing to github | Remove package publishing to github
It's been broken for a really long time, and no one uses it, so let's net waste computer cycles building it, eh? | YAML | agpl-3.0 | internetarchive/bookreader,internetarchive/bookreader |
da13744333eb85fcf267ffcc77010bdfd3232ffd | .github/workflows/rust-1.12.yml | .github/workflows/rust-1.12.yml | name: Rust 1.12 compile test
on:
push:
pull_request:
schedule:
- cron: "35 2 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Work around incompatible crates.io
shell: bash
# Point cargo at a rewound copy of crates.io that would be ... | name: Rust 1.12 compile test
on:
push:
pull_request:
schedule:
- cron: "35 2 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Work around incompatible crates.io
shell: bash
# Point cargo at a rewound copy of crates.io that would be ... | Remove unneccesary deletion of Cargo.lock | Remove unneccesary deletion of Cargo.lock
Given that Cargo.lock is removed earlier in this series, we also have to
remove the deletion here otherwise fail the test.
| YAML | apache-2.0 | mcgoo/vcpkg-rs,mcgoo/vcpkg-rs,mcgoo/vcpkg-rs |
d10045ecd7a37d140463dc54ca3cd7428ec914df | .github/workflows/unitTests.yml | .github/workflows/unitTests.yml | name: UnitTests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [7.3, 7.4]
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v5
- name: PHPUnit Tests
... | name: UnitTests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [7.3, 7.4]
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v6
- name: PHPUnit Tests
... | Change composer version to v6 | Change composer version to v6 | YAML | mit | plivo/plivo-php |
17593f89767cf381c7ccad5070a9d301e0346cdd | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/frippz.se
docker:
- image: circleci/ruby:2.4.5
- image: circleci/node:10.15.0
steps:
- checkout
- run: sudo apt install rsync rubygems
- run: sudo gem install bundler
- run: sudo npm install -g yarn@latest
- run: yarn
... | version: 2
jobs:
build:
working_directory: ~/frippz.se
docker:
- image: circleci/ruby:2.4.5
- image: circleci/node:10.15.0
steps:
- checkout
# - run: sudo apt install rsync rubygems
# - run: sudo gem install bundler
- run: sudo npm install -g yarn@latest
- run: ya... | Remove rubygems & bundler install steps | Remove rubygems & bundler install steps
| YAML | mit | frippz/frippz.se,frippz/frippz.se,frippz/frippz.se |
3cb06a9ffc900735302a6fbb12a7ec1421dd0287 | .circleci/config.yml | .circleci/config.yml | # JavaScript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
jobs:
build:
docker:
- image: circleci/node:14.2
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore... | # JavaScript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
jobs:
build:
docker:
- image: circleci/node:14.3
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore... | Update circleci/node Docker tag to v14.3 | Update circleci/node Docker tag to v14.3
Signed-off-by: Renovate Bot <c71e7261d37a4f6ae4cfb0cbd79081310a237e67@renovateapp.com>
| YAML | mit | paazmaya/tozan |
c8fa06466f9c3b2c3b22dd3af65e46cee41f2a09 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: openchemistry/mongochemserver:latest
environment:
- CIRCLE_BRANCH: ${CIRCLE_BRANCH}
- CIRCLE_BUILD_NUM: ${CIRCLE_BUILD_NUM}
- image: mongo:latest
- image: openchemistry/openbabel:latest
- image: openchemistry/avogadro:lat... | version: 2
jobs:
build:
docker:
- image: openchemistry/mongochemserver:latest
environment:
- CIRCLE_BRANCH: ${CIRCLE_BRANCH}
- CIRCLE_BUILD_NUM: ${CIRCLE_BUILD_NUM}
- image: mongo:latest
- image: openchemistry/openbabel:latest
- image: openchemistry/avogadro:lat... | Update various packages to avoid ContextualVersionConflict | Update various packages to avoid ContextualVersionConflict
See: https://github.com/girder/girder/issues/3298
| YAML | bsd-3-clause | OpenChemistry/mongochemserver |
baad9c126b43a6d5c1ab2503b382cd12300ccf7f | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/golang:1.13.8
working_directory: /go/src/github.com/candid82/joker
steps:
- checkout
- run:
name: go get readline
command: go get -d -v github.com/chzyer/readline
- run:
name: go get profile
c... | version: 2
jobs:
build:
docker:
- image: circleci/golang:1.14.0
working_directory: /go/src/github.com/candid82/joker
steps:
- checkout
- run:
name: go get readline
command: go get -d -v github.com/chzyer/readline
- run:
name: go get profile
c... | Use Go 1.14 in CircleCI | Use Go 1.14 in CircleCI
| YAML | epl-1.0 | candid82/joker,candid82/joker,candid82/joker |
6abd8e7f88aad9e0ad20f06d62f4e8a9b2b76ec9 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: theasp/clojurescript-nodejs:alpine
working_directory: ~/repo
environment:
LEIN_ROOT: "true"
JVM_OPTS: -Xmx3200m
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependenc... | version: 2
jobs:
build:
docker:
- image: theasp/clojurescript-nodejs:alpine
working_directory: ~/repo
environment:
LEIN_ROOT: "true"
JVM_OPTS: -Xmx3200m
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependenc... | Exclude command for code coverage for now | Exclude command for code coverage for now
| YAML | epl-1.0 | athos/Pinpointer |
b2e1e298bcf0035d3851938752dc1b7b861279a1 | roles/marathon/handlers/main.yml | roles/marathon/handlers/main.yml | ---
# handlers file for marathon
# Restart service marathon, in all cases
- name: Restart marathon
sudo: yes
service:
name: marathon
state: restarted
| ---
# handlers file for marathon
# Restart service marathon, in all cases
- name: Restart marathon
sudo: yes
service:
name: marathon
state: restarted
notify:
- wait for marathon to listen
- name: wait for marathon to listen
sudo: yes
command: "curl -s http://localhost:{{ marathon_port }}/ping"
... | Add a wait for marathon to be able to be pinged | Add a wait for marathon to be able to be pinged
| YAML | mit | mehulsbhatt/Apollo,Capgemini/Apollo,siliconmeadow/Apollo,Capgemini/Apollo,phungmanhcuong/Appolo,atsaki/Apollo,mehulsbhatt/Apollo,enxebre/Apollo,atsaki/Apollo,ravbaba/Apollo,Capgemini/Apollo,enxebre/Apollo,ravbaba/Apollo,phungmanhcuong/Appolo,siliconmeadow/Apollo |
ba804afd7d7f1af7371886f803ae5a0af5f43e99 | roles/zsh/tasks/main.yml | roles/zsh/tasks/main.yml | ---
- name: Install ZSH with Aptitude
become: true
apt: pkg=zsh state=latest update_cache=yes cache_valid_time={{ aptcachetime }}
- name: Gather default shell facts
shell: 'echo $SHELL'
register: default_shell
changed_when: false
- name: Make ZSH default shell
shell: chsh -s /bin/zsh
when: default_shel... | ---
- name: Install ZSH with Aptitude
become: true
apt: pkg=zsh state=latest update_cache=yes cache_valid_time={{ aptcachetime }}
- name: Gather default shell facts
shell: 'echo $SHELL'
register: default_shell
changed_when: false
- name: Make ZSH default shell
shell: chsh -s /bin/zsh
when: default_shel... | Update ZSH role to also update root shell | Update ZSH role to also update root shell
| YAML | mit | ivannieto/ansible-ubuntu,Benoth/ansible-ubuntu,ivannieto/ansible-ubuntu,Benoth/ansible-ubuntu |
61d9b1eee62ca0f08ed933f92cc049400edd4483 | playbooks/init/base_packages.yml | playbooks/init/base_packages.yml | ---
# l_base_packages_hosts may be passed in via prerequisites.yml during scaleup plays
# and upgrade_control_plane.yml upgrade plays.
- name: Install packages necessary for installer
hosts: "{{ l_base_packages_hosts | default('oo_all_hosts') }}"
any_errors_fatal: true
tasks:
- when:
- not openshift_is_ato... | ---
# l_base_packages_hosts may be passed in via prerequisites.yml during scaleup plays
# and upgrade_control_plane.yml upgrade plays.
- name: Install packages necessary for installer
hosts: "{{ l_base_packages_hosts | default('oo_all_hosts') }}"
any_errors_fatal: true
tasks:
- when:
- not openshift_is_ato... | Add libsemanage-python to base packages prerequisites | Add libsemanage-python to base packages prerequisites
Without libsemanage-python, the task
"Set seboolean to allow nfs storage plugin access from containers"
fails with this message:
"This module requires libsemanage-python support""
Signed-off-by: Tristan Cacqueray <199c5e9faa6f8941e63354b190eba8678dfac942@redhat.co... | YAML | apache-2.0 | kwoodson/openshift-ansible,sosiouxme/openshift-ansible,maxamillion/openshift-ansible,miminar/openshift-ansible,miminar/openshift-ansible,ewolinetz/openshift-ansible,liggitt/openshift-ansible,jwhonce/openshift-ansible,maxamillion/openshift-ansible,tagliateller/openshift-ansible,openshift/openshift-ansible,markllama/open... |
b0b11e28ac7cebbdb04adb2f98c203bea4226d3b | tasks/install-alert_manager.yml | tasks/install-alert_manager.yml | - include_vars: 'alertmanager.yml'
- name: Creating alert manager directories
file:
path: "{{ item }}"
state: directory
owner: "{{ prometheus_owner }}"
group: "{{ prometheus_group }}"
mode: 0750
with_items:
- "{{ prometheus_config_dir }}"
- "{{ prometheus_alert_manager_data_dir }}"
... | - include_vars: 'alertmanager.yml'
- name: Creating alert manager directories
file:
path: "{{ item }}"
state: directory
owner: "{{ prometheus_owner }}"
group: "{{ prometheus_group }}"
mode: 0750
with_items:
- "{{ prometheus_lib_dir }}"
- "{{ prometheus_config_dir }}"
- "{{ prometheu... | Create prometheus_lib_dir during alert_manager installation | Create prometheus_lib_dir during alert_manager installation
| YAML | bsd-3-clause | ernestas-poskus/ansible-prometheus,ernestas-poskus/ansible-prometheus |
297ee3bd5ea17ff8f1c92447c040b46386e0ec3a | manifests/cf-manifest/runtime-config/runtime-config-base.yml | manifests/cf-manifest/runtime-config/runtime-config-base.yml | ---
releases:
- name: os-conf
version: commit-3c5609485a57b1314a0114b1e4157e6426fbf14a
addons:
- name: os-configuration
jobs:
- name: set_mtu
release: os-conf
- name: collectd
jobs:
- name: collectd
release: collectd
properties:
collectd: (( grab meta.collectd ))
- nam... | ---
releases:
- name: os-conf
version: commit-3c5609485a57b1314a0114b1e4157e6426fbf14a
addons:
- name: os-configuration
jobs:
- name: set_mtu
release: os-conf
- name: collectd
jobs:
- name: collectd
release: collectd
properties:
collectd: (( grab meta.collectd ))
- nam... | Switch rsyslog from RELP to TCP | Switch rsyslog from RELP to TCP
There is an issue in our configuration when sending logs via RELP
protocol from syslog to logstash via an ELB. If the ingestor is
temporarily disconnected, the messages aren't logged anymore.
We may investigate the root cause but in the meantime, we revert to the
default TCP configurati... | YAML | mit | alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf |
25de4e32cd387b4e3c236893628b47d8a51f04e8 | .github/workflows/merge-bot.yml | .github/workflows/merge-bot.yml | name: Merge me!
on:
check_suite:
types:
- completed
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- name: Merge me!
uses: ridedott/merge-me-action@v2.8.37
with:
# Depending on branch protection rules, a manually populated
# `GITHUB_T... | name: Merge me!
on:
check_suite:
types:
- completed
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- name: Merge me!
uses: ridedott/merge-me-action@v2.9.6
with:
# Depending on branch protection rules, a manually populated
# `GITHUB_TO... | Bump ridedott/merge-me-action from 2.8.37 to 2.9.6 | Bump ridedott/merge-me-action from 2.8.37 to 2.9.6
| YAML | bsd-3-clause | lcobucci/jwt |
4018291957d26764b8da9864afc83eef5b385f6c | continuous_integration/environment.yaml | continuous_integration/environment.yaml | name: test
channels:
- conda-forge
dependencies:
- pyyaml
- pytest
- python=3.9
| name: test
channels:
- conda-forge
dependencies:
- pyyaml
- pytest
- pytest-cov
- python=3.9
| Add missing pytest-cov CI dependency | Add missing pytest-cov CI dependency
| YAML | mit | pytroll/donfig |
a2c6b773d6674fd8a5c13949de6cafecf0b45145 | src/Sylius/Bundle/ApiBundle/Resources/config/routing/order_item.yml | src/Sylius/Bundle/ApiBundle/Resources/config/routing/order_item.yml | # This file is part of the Sylius package.
# (c) Paweł Jędrzejewski
sylius_api_order_item_index:
path: /
methods: [GET]
defaults:
_controller: sylius.controller.order_item:indexAction
_sylius:
repository:
method: findByOrder
arguments: [$orderId]
... | # This file is part of the Sylius package.
# (c) Paweł Jędrzejewski
sylius_api_order_item_index:
path: /
methods: [GET]
defaults:
_controller: sylius.controller.order_item:indexAction
_sylius:
repository:
method: findByOrder
arguments: [$orderId]
... | Fix index order items endpoint | Fix index order items endpoint
| YAML | mit | axelvnk/Sylius,TeamNovatek/Sylius,venyii/Sylius,Mozan/Sylius,torinaki/Sylius,kayue/Sylius,Zales0123/Sylius,psyray/Sylius,pamil/Sylius,xantrix/Sylius,itinance/Sylius,tuka217/Sylius,tuka217/Sylius,PWalkow/Sylius,Ejobs/Sylius,Rvanlaak/Sylius,mheki/Sylius,ezecosystem/Sylius,axelvnk/Sylius,bitbager/Sylius,steffenbrem/Sylius... |
04730c8c292377c63115fa295f74639d7ec43e3f | .github/workflows/jekyll.yml | .github/workflows/jekyll.yml | name: My blog's CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:... | name: My blog's CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:... | Create a step for assigning the cname. | Create a step for assigning the cname.
| YAML | mit | EmmanuelCorrales/EmmanuelCorrales.github.io,EmmanuelCorrales/blog.emmanuelcorrales.com,EmmanuelCorrales/blog.emmanuelcorrales.com |
bb23ed8642ed6f15ff1254578c67feaa9f37a039 | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-vers... | name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-vers... | Use 'npm ci' instead of 'npm install' | Use 'npm ci' instead of 'npm install'
| YAML | mit | adamgruber/mochawesome,adamgruber/mochawesome,adamgruber/mochawesome |
19d1ef138b08d7347b73481dc697b0fdf281c4cc | install.conf.yaml | install.conf.yaml | - defaults:
link:
# Create new symlinks when they do not exist
create: true
# Relink old symlinks when they are changed
relink: true
# Directories to be checked for broken symlinks
- clean: ['~', '~/.config']
# <destination>: <source (relative to root dotfiles directory)>
- link:
~/.ba... | - defaults:
link:
# Create new symlinks when they do not exist
create: true
# Relink old symlinks when they are changed
relink: true
# Directories to be checked for broken symlinks
- clean: ['~', '~/.config', '~/bin']
# <destination>: <source (relative to root dotfiles directory)>
- link:
... | Clean broken symlinks from bin too | Clean broken symlinks from bin too
| YAML | mit | ben01189998819991197253/dotfiles |
c0e0e93f4580e124e58729c159fbe0a03b8839ee | recipes/databroker/dev/meta.yaml | recipes/databroker/dev/meta.yaml | package:
name: databroker
version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }}
source:
git_url: https://github.com/NSLS-II/databroker
git_rev: master
build:
# Note that this will override the default build string with the Python
# and NumPy versions
string: {{ environ.get(... | package:
name: databroker
version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }}
source:
git_url: https://github.com/NSLS-II/databroker
git_rev: master
build:
# Note that this will override the default build string with the Python
# and NumPy versions
string: {{ environ.get(... | Add singledispatch for py27 builds | MNT: Add singledispatch for py27 builds
| YAML | bsd-3-clause | tacaswell/conda-prescriptions,ericdill/conda-prescriptions,tacaswell/conda-prescriptions,ericdill/conda-prescriptions,ericdill/conda-prescriptions,tacaswell/conda-prescriptions |
ba1774c8d978c3585fd9f1a004e400565024dfa4 | releasenotes/notes/zaqar-notification-a4d240bbf31b7440.yaml | releasenotes/notes/zaqar-notification-a4d240bbf31b7440.yaml | ---
features:
- New ``OS::Zaqar::Notification`` and ``OS::Zaqar::MistralTrigger`` resource types allow users to attach to Zaqar queues (respectively) notifications in general, and notifications that trigger Mistral workflow executions in particular.
| ---
features:
- New ``OS::Zaqar::Subscription`` and ``OS::Zaqar::MistralTrigger``
resource types allow users to attach to Zaqar queues (respectively)
notifications in general, and notifications that trigger Mistral
workflow executions in particular.
| Correct resource type in zaqar notification releasenotes | Correct resource type in zaqar notification releasenotes
Change-Id: I5cfb56204c57fca60936e6e0873eb5b5bebdfe6c
| YAML | apache-2.0 | noironetworks/heat,noironetworks/heat,openstack/heat,openstack/heat |
2916781e30921ca60c691ebc2490d39b3dbcdb27 | build.yaml | build.yaml | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0
| repositories:
remote:
- https://repo1.maven.org/maven2
artifacts:
javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0
| Use SSL to access maven repository. | Use SSL to access maven repository.
| YAML | apache-2.0 | realityforge/gwt-cache-filter,realityforge/gwt-cache-filter,realityforge/gwt-cache-filter |
7bf29585115cec277bf03dc9eb87689d2486dfca | .travis.yml | .travis.yml | sudo: true
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
before_script:
- pip install -r requirements.txt
script:
- python setup.py install
| sudo: true
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
before_script:
- pip install -r requirements.txt
script:
- python setup.py install
| Remove python3.7 from build tests | Remove python3.7 from build tests | YAML | mit | mmetering/mmetering-cli |
abbd44c76323a2911b769a9d0a6fdd4ee3381385 | .travis.yml | .travis.yml | language: node_js
node_js:
- 8
- 10
- 12
script: npm run build && npm test
| language: node_js
node_js:
- 10
- 12
script: npm run build && npm test
| Drop testing on node.js 8 | Drop testing on node.js 8
| YAML | mit | josdejong/lossless-json,josdejong/lossless-json,josdejong/lossless-json |
4eb0aefdf78f56dc98c3bb649a96f6f5d04661eb | data/transition-sites/bis.yml | data/transition-sites/bis.yml | ---
site: bis
whitehall_slug: department-for-business-innovation-skills
host: www.bis.gov.uk
redirection_date: 13th December 2012
tna_timestamp: 20121212135622 # Partial: update with care - TNA will have pages from www.gov.uk
title: Department for Business, Innovation & Skills
furl: www.gov.uk/bis
homepage: https:/... | ---
site: bis
whitehall_slug: department-for-business-innovation-skills
host: www.bis.gov.uk
redirection_date: 13th December 2012
tna_timestamp: 20121212135622 # Partial: update with care - TNA will have pages from www.gov.uk
title: Department for Business, Innovation & Skills
furl: www.gov.uk/bis
homepage: https:/... | Add extra organisations for BIS main site | Add extra organisations for BIS main site
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
33ae6a5e607597894b6bbccaf5058e311771e529 | .nycrc.yml | .nycrc.yml | all: true
include:
- app.js
- lib/**/*.js
exclude:
- lib/handlers/asm-docs.js
- lib/compilers/fake-for-test.js
report-dir: ./out/coverage
reporter:
- lcov
require:
- esm
| all: true
include:
- app.js
- lib/**/*.js
exclude:
- lib/handlers/asm-docs-amd64.js
- lib/handlers/asm-docs-arm32.js
- lib/compilers/fake-for-test.js
report-dir: ./out/coverage
reporter:
- lcov
require:
- esm
| Update excluded nycc asm-doc files | Update excluded nycc asm-doc files | YAML | bsd-2-clause | mattgodbolt/compiler-explorer,mattgodbolt/compiler-explorer,mattgodbolt/compiler-explorer,mattgodbolt/compiler-explorer,mattgodbolt/compiler-explorer,mattgodbolt/compiler-explorer,mattgodbolt/compiler-explorer,mattgodbolt/compiler-explorer |
3fb26d4b99711a47b101be75e923d9b7f32470dd | .zuul.yaml | .zuul.yaml | - project:
templates:
- check-requirements
- publish-openstack-docs-pti
- openstack-python35-jobs
- openstack-python3-wallaby-jobs
| - project:
templates:
- check-requirements
- publish-openstack-docs-pti
- openstack-python35-jobs
- openstack-python3-xena-jobs
| Switch testing to Xena testing runtime | Switch testing to Xena testing runtime
Upating the tetsing template to Xena testing runtime:
https://governance.openstack.org/tc/reference/runtimes/xena.html
Change-Id: I18fa6b0f12114df57376c47f6e185796505572dc
| YAML | apache-2.0 | openstack/os-performance-tools |
e7f37f9f71101be5d26e0cf5c77a4cf3fb46a7ee | scripts/upgrade-utilities/playbooks/lbaas-version-check.yml | scripts/upgrade-utilities/playbooks/lbaas-version-check.yml | ---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... | ---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... | Remove assumption that the neutron_lbaas var is set | Remove assumption that the neutron_lbaas var is set
This removes the upgrade assumption that the neutron_lbaas is set.
In many cases this variable will be undefined and we need to cater
to that possibility.
Change-Id: Ib011c2be2eb64ccf0a6d2ba0ad50b034a6694dbc
Signed-off-by: Kevin Carter <ffb54fded2f22052678e45d78b58d... | YAML | apache-2.0 | weezer/openstack-ansible,BjoernT/os-ansible-deployment,yanyao/openstack-ansible,robb-romans/openstack-ansible,bunchc/openstack-ansible,cloudnull/os-ansible-deployment,robb-romans/openstack-ansible,BjoernT/openstack-ansible,stackforge/os-ansible-deployment,openstack/openstack-ansible,yanyao/openstack-ansible,BjoernT/os-... |
e0e95d88dbc874a12f329288bddd9369cec297ad | roles/qb.git_repo/tasks/main.yml | roles/qb.git_repo/tasks/main.yml | ---
# tasks file for qb.git_repo
- name: initialize git
command: git init
args:
chdir: "{{ git_repo_dest }}"
creates: "{{ git_repo_dest }}/.git"
- name: Tell Git to ignore OSX artifacts
when: ansible_distribution == "MacOSX"
include_role:
name: qb.gitignore
vars:
gitignore_name: Global/macO... | ---
# tasks file for qb.git_repo
- name: >-
Create {{ git_repo_dest }} directory
file:
dest: >-
{{ git_repo_dest }}
state: directory
- name: >-
Initialize git
command: git init
args:
chdir: >-
{{ git_repo_dest }}
creates: >-
{{ git_repo_dest }}/.git
- name: >-
Tell... | Fix git_repo to create dest dir if doesn't exists. | Fix git_repo to create dest dir if doesn't exists.
| YAML | mit | nrser/qb,nrser/qb,nrser/qb,nrser/qb |
f54f7e3c243bd8c400e8eadb9d1e467be9921d85 | .bmi/ku/api.yaml | .bmi/ku/api.yaml | name: Ku_model
language: python
package: permamodel
class: Ku_method
build:
- python setup.py install | name: KuModel
language: python
package: permamodel.components.bmi_Ku_component
class: BmiKuMethod
| Update name and path to component class | Update name and path to component class
| YAML | mit | permamodel/permamodel,permamodel/permamodel |
209e1e2f78491e178c17a3341d89057e43c227b2 | .codeclimate.yml | .codeclimate.yml | ---
engines:
duplication:
enabled: true
config:
languages:
- javascript
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
exclude_paths:
- "*.md"
- "*.png"
- "*.json"
- config/*
- tests/*
- tests/helpers/*
| ---
engines:
duplication:
enabled: true
config:
languages:
- javascript
eslint:
enabled: true
channel: "eslint-2"
fixme:
enabled: true
ratings:
paths:
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
exclude_paths:
- "*.md"
- "*.png"
- "*.json"
- config/*
- tests/*
- tests/h... | Use eslint-2 channel on Code Climate | lint: Use eslint-2 channel on Code Climate
Per: https://github.com/codeclimate/codeclimate-eslint/issues/76
| YAML | isc | mbland/slack-github-issues,mbland/slack-github-issues |
2e280d55cb9f8945d98fab2cc185722a181f62b9 | .codeclimate.yml | .codeclimate.yml | ---
engines:
duplication:
enabled: true
config:
languages:
php:
mass_threshold: 30
phpcodesniffer:
enabled: true
config:
standard: PSR2
ratings:
paths:
- "**.php"
exclude_paths:
- "tests/"
- "migrations/"
| ---
engines:
duplication:
enabled: true
config:
languages:
php:
mass_threshold: 30
phpcodesniffer:
enabled: true
config:
standard: PSR2
phpmd:
enabled: true
ratings:
paths:
- "**.php"
exclude_paths:
- "tests/"
- "migrations/"
| Add PHP mess detector to code climate | Add PHP mess detector to code climate
This should give some more insight as to where work is needed on the
code.
| YAML | mit | PHPBenelux/opencfp,GrUSP/opencfp,mdwheele/opencfp,mdwheele/opencfp,mdwheele/opencfp,PHPBenelux/opencfp,localheinz/opencfp,localheinz/opencfp,GrUSP/opencfp,PHPBenelux/opencfp,opencfp/opencfp,localheinz/opencfp,PHPBenelux/opencfp,mdwheele/opencfp,GrUSP/opencfp,GrUSP/opencfp,opencfp/opencfp,opencfp/opencfp,localheinz/open... |
36ea8c0d40f1b8e850558b674cbdbdfedaabf2fe | circle.yml | circle.yml | machine:
environment:
PATH: $HOME/go/bin:$HOME/gopath/bin:$PATH
GOPATH: $HOME/gopath
dependencies:
pre:
- sudo apt-get update; sudo apt-get install libusb-1.0-0-dev; cd ~/; git clone https://github.com/jpoirier/librtlsdr; cd librtlsdr; mkdir build; cd build; cmake ../; make; sudo make install; sudo ldc... | machine:
environment:
PATH: $HOME/go/bin:$HOME/gopath/bin:$PATH
GOPATH: $HOME/gopath
dependencies:
pre:
- sudo apt-get update; sudo apt-get install libusb-1.0-0-dev; cd ~/; git clone https://github.com/jpoirier/librtlsdr; cd librtlsdr; mkdir build; cd build; cmake ../; make; sudo make install; sudo ldc... | Upgrade golang version in CircleCI from 1.6 to 1.9.2. | Upgrade golang version in CircleCI from 1.6 to 1.9.2.
| YAML | bsd-3-clause | westphae/stratux,cyoung/stratux,westphae/stratux,cyoung/stratux,cyoung/stratux,cyoung/stratux,westphae/stratux,westphae/stratux,cyoung/stratux,cyoung/stratux,westphae/stratux,westphae/stratux |
40c0844735522eb36da1bec43816de27f50031a5 | circle.yml | circle.yml | dependencies:
override:
- npm install
- bower install
- ./node_modules/.bin/gulp
cache_directories:
- "~/.cache/bower"
deployment:
master:
branch: master
commands:
- ./publish.sh
| machine:
node:
version: 4.4.7
dependencies:
override:
- npm install
- bower install
- ./node_modules/.bin/gulp
cache_directories:
- "~/.cache/bower"
deployment:
master:
branch: master
commands:
- ./publish.sh
| Update Node version on CircleCI | Update Node version on CircleCI
| YAML | mit | dogancelik/links,dogancelik/links |
f8d032be89260e0dd17809f02aec06adb181c6cb | circle.yml | circle.yml | machine:
node:
version: "stable"
dependencies:
pre:
- npm install -g bower
post:
- bower install
|
machine:
node:
version: "stable"
dependencies:
pre:
# <Yarn>
- sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg
- echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
- sudo apt-get update -qq
- sudo apt-get install -y -qq ya... | Update Circle config to use Yarn | Update Circle config to use Yarn
| YAML | mit | dockyard/ember-one-way-input,dockyard/ember-one-way-controls,dockyard/ember-one-way-controls,dockyard/ember-one-way-input |
fab8ae3f23c5ce9c031afedea4ab00d01823791b | circle.yml | circle.yml | machine:
node:
version: 5.6.0
environment:
PATH: "$HOME/.asdf/bin:$HOME/.asdf/shims:$PATH"
MIX_ENV: "test"
general:
artifacts:
- "screenshots"
dependencies:
cache_directories:
- ~/.asdf
- _build
- deps
pre:
- if ! asdf | grep version; then git clone https://github.com/HashNuke/... | machine:
node:
version: 5.6.0
environment:
PATH: "$HOME/.asdf/bin:$HOME/.asdf/shims:$PATH"
MIX_ENV: "test"
general:
artifacts:
- "screenshots"
dependencies:
cache_directories:
- ~/.asdf
- _build
- deps
pre:
- if ! asdf | grep version; then git clone https://github.com/HashNuke/... | Update CircleCI such that the end-to-end tests are run post unit-tests | Update CircleCI such that the end-to-end tests are run post unit-tests
| YAML | mit | samdec11/remote_retro,tnewell5/remote_retro,tnewell5/remote_retro,stride-nyc/remote_retro,stride-nyc/remote_retro,stride-nyc/remote_retro |
fefcca84378f0b76440ddeb685fd6ba3e2ab9a83 | circle.yml | circle.yml | dependencies:
override:
- rvm-exec 2.0.0-p645 bundle install
- rvm-exec 2.1.6 bundle install
- rvm-exec 2.2.2 bundle install
test:
override:
- rvm-exec 2.0.0-p645 bundle exec rspec
- rvm-exec 2.1.6 bundle exec rspec
- rvm-exec 2.2.2 bundle exec rspec
| dependencies:
override:
- rvm-exec 2.0.0-p645 bundle install
- rvm-exec 2.1.6 bundle install
- rvm-exec 2.2.2 bundle install
test:
override:
- rvm-exec 2.0.0-p645 bundle exec rspec
- rvm-exec 2.1.6 bundle exec rspec
- rvm-exec 2.2.2 bundle exec rspec
| Test is a top-level key not a subkey of dependencies | Test is a top-level key not a subkey of dependencies
| YAML | mit | gaqzi/remote_rails_rake_runner,gaqzi/remote_rails_rake_runner,gaqzi/remote_rails_rake_runner |
6a551e765195159688187fbde9d69a3a30670d94 | circle.yml | circle.yml | ---
machine:
ruby:
version: '2.2.7'
dependencies:
pre:
- gem install bundler
database:
override:
- bundle install
test:
override:
- bundle exec rake spec
| ---
machine:
ruby:
version: '2.2.7'
environment:
CC_TEST_REPORTER_ID: e0db6fd6beb8208980b2908947735982fb5a4e8a9a3cb742dc194e00df79f388
dependencies:
pre:
- gem install bundler
post:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
... | Set u CircleCO to send test coverage | Set u CircleCO to send test coverage
| YAML | mit | tjchambers/paper_trail_scrapbook |
fe51fe6dcc8639470c40beb1e1c9698f65b191d2 | circle.yml | circle.yml | machine:
node:
version: 8
environment:
PATH: ${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin
dependencies:
cache_directories:
- ~/.cache/yarn
override:
- yarn
test:
pre:
- yarn lint
override:
- yarn test
| machine:
node:
version: 8
environment:
PATH: ${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin
dependencies:
cache_directories:
- ~/.cache/yarn
override:
- yarn
- yarn run clean
- yarn run build
test:
pre:
- yarn lint
override:
- yarn test
| Clean and build the packages before testing | Clean and build the packages before testing
| YAML | mit | negativetwelve/jolt |
be20282013b5d5929842458ab731da1122cdbd26 | circle.yml | circle.yml | machine:
services:
- riak
machine:
post:
- sudo sed -i 's/storage_backend.*/storage_backend = leveldb/' /etc/riak/riak.conf
- sudo service riak restart
- sudo riak version
- sudo riak-admin bucket-type create maps '{"props":{"datatype":"map","backend":"leveldb"}}'
- sudo riak-admin bucket-t... | machine:
services:
- riak
machine:
post:
- curl -s https://packagecloud.io/install/repositories/basho/riak/script.deb.sh | sudo bash
- sudo apt-get install riak=2.2.0-1
- sudo sed -i 's/storage_backend.*/storage_backend = leveldb/' /etc/riak/riak.conf
- sudo service riak restart
- sudo ria... | Install Riak KV 2.2.0 during setup | CircleCI: Install Riak KV 2.2.0 during setup
| YAML | mit | zegl/goriak |
a6dcb1087f54a3a1b033183f61b23d3c7fff8740 | recipes/bioconda_curl/meta.yaml | recipes/bioconda_curl/meta.yaml | about:
home: http://www.curl.haxx.se/
license: MIT
summary: curl is an open source command line tool and library for transferring data with URL syntax
build:
number: 0
package:
name: bioconda_curl
version: 7.46.0
requirements:
build:
- curl
source:
fn: curl-7.46.0.tar.gz
sha256: df9e7d4883abdd... | about:
home: http://www.curl.haxx.se/
license: MIT
summary: curl is an open source command line tool and library for transferring data with URL syntax
build:
number: 0
always_include_files:
- bin/curl-config
- include/curl/*.h
- lib/pkgconfig/libcurl.pc
- lib/libcurl.*
package:
name: bioc... | Use always_include_files with bioconda_curl, or else only man pages are included | Use always_include_files with bioconda_curl, or else only man pages are included
| YAML | mit | zachcp/bioconda-recipes,rvalieris/bioconda-recipes,acaprez/recipes,mdehollander/bioconda-recipes,ivirshup/bioconda-recipes,shenwei356/bioconda-recipes,yesimon/bioconda-recipes,jasper1918/bioconda-recipes,oena/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,abims-sbr/bioconda-recipes,dmaticzka/bioconda-recipes,gregvonkus... |
d638b7391b8f6a2dea1d2ffcdd99176fe81db1b3 | .readthedocs.yml | .readthedocs.yml | # Read the Docs Configuration File
# Build PDF aswell as HTML and JSON
formats:
- pdf
# Requirements file
requirements_file:
requirements_dev.txt
python:
version: 3.6
setup_py_install: true
# From extras_require in setup.py
extra_requirements:
- dev
- tests
- docs
| # Read the Docs Configuration File
# Build PDF aswell as HTML and JSON
formats:
- pdf
# Requirements file
requirements_file:
requirements_dev.txt
build:
image: latest
python:
version: 3.6
setup_py_install: true
# From extras_require in setup.py
extra_requirements:
- dev
-... | Change build image for python 3.6 | Change build image for python 3.6
| YAML | mit | jason-neal/eniric,jason-neal/eniric |
428a94e32950785253f8c408b37f04a579e7f079 | _data/cs61a/fa17.yml | _data/cs61a/fa17.yml | resources:
- number: 0
description: Intro and Lost on the Moon
downloads:
- name: Slides
type: slides
link: /cs61a/fa17/assets/Disc00.pdf
locations:
- type: Office Hours
time: TBD
location: TBD
- type: Discussion
time: Th 15:30-17:00
location: 243 Dwinelle
- type: ... | resources:
- number: 0
description: Intro and Lost on the Moon
downloads:
- name: Slides
type: slides
link: /cs61a/fa17/assets/Disc00.pdf
locations:
- type: Office Hours
time: M 19:30-20:00
location: 521 Cory
- type: Office Hours
time: W 18:30-19:30
location: 400 Cor... | Update office hours for fall 17 | Update office hours for fall 17
| YAML | mit | cjerry/cjerry.github.io,cjerry/cjerry.github.io,cjerry/cjerry.github.io,cjerry/cjerry.github.io |
9ea5222d53e947dbd33d74442d273a7d23dbebd2 | deployment/operations/cf-kibana.yml | deployment/operations/cf-kibana.yml | ---
- type: replace
path: /instance_groups/name=maintenance/jobs/-
value:
name: cf-kibana
release: logsearch-for-cloudfoundry
lifecycle: errand
consumes:
elasticsearch: {from: elasticsearch_master}
cloud_controller: {from: cloud_controller, deployment: cf}
properties:
cloudfoun... | ---
- type: replace
path: /instance_groups/name=maintenance/jobs/-
value:
name: cf-kibana
release: logsearch-for-cloudfoundry
lifecycle: errand
consumes:
elasticsearch: {from: elasticsearch_master}
cloud_controller: {from: cloud_controller, deployment: cf}
properties:
cloudfoun... | Change default index name to not interfere with regular Kibana | Change default index name to not interfere with regular Kibana
| YAML | apache-2.0 | cloudfoundry-community/logsearch-boshrelease,cloudfoundry-community/logsearch-boshrelease,cloudfoundry-community/logsearch-boshrelease,cloudfoundry-community/logsearch-boshrelease |
60b657094a001dbfdc20d8ac685c69f1a7e31b1c | .kitchen.yml | .kitchen.yml | driver:
name: vagrant
provisioner:
name: chef_solo
require_chef_omnibus: 11.4.4
platforms:
- name: centos-5.11
- name: centos-6.7
- name: centos-7.2
- name: debian-7.9
run_list: apt::default
- name: debian-8.2
run_list: apt::default
- name: ubuntu-12.04
run_list: apt::default
- name: u... | driver:
name: vagrant
provisioner:
name: chef_solo
require_chef_omnibus: 11.4.4
platforms:
- name: centos-5.11
- name: centos-6.7
- name: centos-7.2
- name: debian-7.10
run_list: apt::default
- name: debian-8.4
run_list: apt::default
- name: ubuntu-12.04
run_list: apt::default
- name: ... | Update platforms in Test Kitchen | Update platforms in Test Kitchen [skip-ci]
| YAML | apache-2.0 | opscode-cookbooks/chef-reporting,chef-cookbooks/chef-reporting |
9e7a1d1844156cd36f37005e8b4186804fd50a11 | .kitchen.yml | .kitchen.yml | ---
driver:
name: vagrant
provisioner:
name: chef_zero
verifier:
name: inspec
platforms:
- name: ubuntu-16.04
- name: ubuntu-14.04
- name: debian-8.5
- name: centos-6.8
- name: centos-7.2
suites:
- name: recursor
run_list:
- recipe[pdns_test::recursor_install_single]
attributes:
- ... | ---
driver:
name: vagrant
provisioner:
name: chef_zero
verifier:
name: inspec
platforms:
- name: ubuntu-16.04
- name: ubuntu-14.04
- name: debian-8.5
- name: centos-6.8
- name: centos-7.2
suites:
- name: recursor
run_list:
- recipe[pdns_test::recursor_install_single]
attributes:
- ... | Test cookbook has been renamed | Test cookbook has been renamed
| YAML | apache-2.0 | dnsimple/chef-pdns,aetrion/pdns,dnsimple/chef-pdns,aetrion/pdns,aetrion/pdns |
03842a046b9d8a48032a53cc83986a88fecfc3b6 | .rubocop.yml | .rubocop.yml | AllCops:
Exclude:
- '**/*.gemspec'
Metrics/CyclomaticComplexity:
Max: 20
Metrics/MethodLength:
Max: 20
Style/AccessorMethodName:
Enabled: False
Style/SignalException:
Enabled: False
Style/GuardClause:
Enabled: False
Metrics/PerceivedComplexity:
Max: 20
Metrics/AbcSize:
Max: 50
Metrics... | AllCops:
Exclude:
- '**/*.gemspec'
Metrics/CyclomaticComplexity:
Max: 20
Metrics/MethodLength:
Max: 20
Style/AccessorMethodName:
Enabled: False
Style/HashSyntax:
Enabled: false
Style/SignalException:
Enabled: False
Style/GuardClause:
Enabled: False
Metrics/PerceivedComplexity:
Max: 20
... | Disable 1.9 hash syntax checks | Disable 1.9 hash syntax checks
| YAML | bsd-3-clause | arista-eosplus/puppet-eos,arista-eosplus/puppet-eos,arista-eosplus/puppet-eos |
fefa69c1e176289c4d7d6e9fd8f3ef9ca17f1de9 | .rubocop.yml | .rubocop.yml | AllCops:
Include:
- '**/Rakefile'
- '**.gemspec'
- '**/config.ru'
- '.simplecov'
Style/Documentation:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/TrailingComma:
Enabled: false
| AllCops:
Include:
- '**/Rakefile'
- '**.gemspec'
- '**/config.ru'
- '.simplecov'
Style/Documentation:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/TrailingComma:
Enabled: false
Metrics/MethodLength:
Max: 64
| Bump Rubocop's method length limit | Bump Rubocop's method length limit
| YAML | mit | 3ofcoins/cardea,3ofcoins/cardea,3ofcoins/cardea,3ofcoins/cardea,3ofcoins/cardea,3ofcoins/cardea |
8375461214a67b3ff0bcc7b6b76bebc79e7e485c | .rubocop.yml | .rubocop.yml | AllCops:
Exclude:
- '*.gemspec'
Lint/EndAlignment:
AlignWith: variable
Metrics/AbcSize:
Max: 30
Metrics/ClassLength:
Max: 150
Metrics/CyclomaticComplexity:
Max: 10
Metrics/MethodLength:
Max: 20
Metrics/PerceivedComplexity:
Max: 10
Style/AccessModifierIndentation:
EnforcedStyle: outdent
Style... | AllCops:
Exclude:
- '*.gemspec'
Lint/EndAlignment:
AlignWith: variable
Metrics/AbcSize:
Max: 30
Metrics/ClassLength:
Max: 150
Metrics/CyclomaticComplexity:
Max: 10
Metrics/MethodLength:
Max: 20
Metrics/ModuleLength:
Max: 160
Metrics/PerceivedComplexity:
Max: 10
Style/AccessModifierIndentatio... | Allow too many lines of module | Allow too many lines of module
| YAML | mit | toy/progress |
2480d8b3a3ad1917d71ca6175e5a4bddc9bda4a2 | .rubocop.yml | .rubocop.yml | AllCops:
Exclude:
- vendor/**/*
- Guardfile
AlignParameters:
Enabled: false
ClassLength:
Enabled: false
CyclomaticComplexity:
Enabled: false
Documentation:
Enabled: false
Encoding:
Enabled: false
Style/FileName:
Enabled: false
LineLength:
Enabled: false
MethodLength:
Enabled: false
Metrics/Ab... | AllCops:
Exclude:
- vendor/**/*
- Guardfile
AlignParameters:
Enabled: false
ClassLength:
Enabled: false
CyclomaticComplexity:
Enabled: false
Documentation:
Enabled: false
Encoding:
Enabled: false
Style/FileName:
Enabled: false
LineLength:
Enabled: false
MethodLength:
Enabled: false
Metrics/Ab... | Fix Rubocop complaining about incorrect check name | Fix Rubocop complaining about incorrect check name
| YAML | apache-2.0 | opscode-cookbooks/dynect,chef-cookbooks/dynect |
e3a9603231c033e34035ef8b2646c005569a23df | ansible/roles/common/tasks/main-ubuntu.yml | ansible/roles/common/tasks/main-ubuntu.yml | ---
# https://github.com/ansible/ansible/issues/16884
- name: Install Aptitude
raw: apt-get -y install python-minimal aptitude
become: true
become_user: root
become_method: sudo
when: ansible_distribution == 'Ubuntu'
tags:
- common
- name: Install common utils
apt:
name: "{{item}}"
state: pr... | ---
# https://github.com/ansible/ansible/issues/16884
- name: Install Aptitude
raw: apt-get -y install python-minimal aptitude
become: true
become_user: root
become_method: sudo
when: ansible_distribution == 'Ubuntu'
tags:
- common
- name: Install common utils
apt:
name: "{{item}}"
state: pr... | Add python-software-properties to common utils | Add python-software-properties to common utils
| YAML | agpl-3.0 | berkmancenter/mediacloud,berkmancenter/mediacloud,berkmancenter/mediacloud,berkmancenter/mediacloud,berkmancenter/mediacloud |
cd04f33089de3eebb8290f172152e7aedd59fb8f | ansible/solr_docker_rebuild.yml | ansible/solr_docker_rebuild.yml | ---
- hosts: solr
become: yes
gather_facts: yes
vars:
role: solr
#dir_role_templates: "roles/{{ role }}/templates"
docker_image_name: ucldc/solr
dir_code: code/solr_api
dir_index: /opt/solr/data
roles:
- solr5_docker_rm
- solr5_docker
| ---
- hosts: solr
become: yes
gather_facts: yes
vars:
role: solr
#dir_role_templates: "roles/{{ role }}/templates"
docker_image_name: ucldc/solr
dir_code: code/solr_api
dir_index: /opt/solr/data
java_heap_max: "{{ (ansible_memtotal_mb * 0.75)|int|abs }}"
roles:
- solr5_docker_rm
... | Add dynamic heap size var | Add dynamic heap size var
| YAML | bsd-3-clause | mredar/ingest_deploy,mredar/ingest_deploy,ucldc/ingest_deploy,ucldc/ingest_deploy |
e3c64f415b38e8cca1ef205783c413d2eb35d70e | src/Oro/Bundle/DashboardBundle/Resources/translations/messages.en.yml | src/Oro/Bundle/DashboardBundle/Resources/translations/messages.en.yml | oro:
dashboard:
title:
main: Dashboard
quick_launchpad: Quick Launchpad
chose_dashboard: Choose dashboard
entity_label: Dashboard
entity_plural_label: Dashboards
id.label: Id
is_default.label: Is Default
... | oro:
dashboard:
title:
main: Dashboard
quick_launchpad: Quick Launchpad
chose_dashboard: Choose dashboard
entity_label: Dashboard
entity_plural_label: Dashboards
id.label: Id
is_default.label: Is Default
... | Apply widget settings in chart widgets | BAP-7841: Apply widget settings in chart widgets
| YAML | mit | morontt/platform,orocrm/platform,orocrm/platform,geoffroycochard/platform,northdakota/platform,northdakota/platform,2ndkauboy/platform,hugeval/platform,ramunasd/platform,morontt/platform,geoffroycochard/platform,morontt/platform,2ndkauboy/platform,ramunasd/platform,trustify/oroplatform,hugeval/platform,Djamy/platform,h... |
8cb1494861c0293a76bd72dd89c7815dc23ca790 | config/paypal.yml | config/paypal.yml | test: &default
# Credentials for REST APIs
client_id: EBWKjlELKMYqRNQ6sYvFo64FtaRLRR5BdHEESmha49TM
client_secret: EO422dn3gQLgDbuwqTjzrFgFtaRLRR5BdHEESmha49TM
# Mode can be 'live' or 'sandbox'
mode: sandbox
# Credentials for Classic APIs
app_id: APP-80W284485P519543T
username: jb-us-seller_api1.paypa... | test: &default
# Credentials for REST APIs
client_id: EBWKjlELKMYqRNQ6sYvFo64FtaRLRR5BdHEESmha49TM
client_secret: EO422dn3gQLgDbuwqTjzrFgFtaRLRR5BdHEESmha49TM
# Mode can be 'live' or 'sandbox'
mode: <%= ENV['PAYPAL_MODE'] || 'sandbox' %>
# Credentials for Classic APIs
app_id: <%= ENV['PAYPAL_APP_ID'] |... | Allow to tweak PayPal settings via environment variables | Allow to tweak PayPal settings via environment variables
| YAML | agpl-3.0 | asm-products/bit-commerce,asm-products/bit-commerce,asm-products/bit-commerce |
e3b7ba6b1f158d7f6f38ed67cc514821e744a979 | ql/src/qlpack.yml | ql/src/qlpack.yml | name: codeql/go-queries
version: 0.1.0-dev
groups:
- go
- queries
suites: codeql-suites
extractor: go
defaultSuiteFile: codeql-suites/go-code-scanning.qls
dependencies:
codeql/go-all: "*"
codeql/suite-helpers: ^0.1.0
| name: codeql/go-queries
version: 0.1.0-dev
groups:
- go
- queries
suites: codeql-suites
extractor: go
defaultSuiteFile: codeql-suites/go-code-scanning.qls
dependencies:
codeql/go-all: "*"
codeql/suite-helpers: ~0.0.2
| Revert "Bump version of `suite-helpers` dependency" | Revert "Bump version of `suite-helpers` dependency"
This reverts commit 49e568ed449757d11689e10454c521588cdaff6c.
| YAML | mit | github/codeql,github/codeql-go,github/codeql,github/codeql,github/codeql,github/codeql-go,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql-go,github/codeql,github/codeql-go,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql |
fc4d8a546fae7c73f1d20f07560b0d8f581bd3f5 | .github/workflows/renovate-go-mod-fix.yaml | .github/workflows/renovate-go-mod-fix.yaml | #
# DO NOT EDIT THIS FILE
#
# It is automatically copied from https://github.com/pion/.goassets repository.
# If this repository should have package specific CI config,
# remove the repository name from .goassets/.github/workflows/assets-sync.yml.
#
# If you want to update the shared CI config, send a PR to
# https://g... | #
# DO NOT EDIT THIS FILE
#
# It is automatically copied from https://github.com/pion/.goassets repository.
# If this repository should have package specific CI config,
# remove the repository name from .goassets/.github/workflows/assets-sync.yml.
#
# If you want to update the shared CI config, send a PR to
# https://g... | Update CI configs to v0.4.6 | Update CI configs to v0.4.6
Update lint scripts and CI configs.
Excluding codecov.yml.
| YAML | mit | pion/stun,pion/stun |
158eb161c250947f3f5dfb653819caa3625e626e | azure_pipelines/pr-validation.yml | azure_pipelines/pr-validation.yml | # Pipeline will be triggered for PR & any updates on the PR on all branches
pr:
autoCancel: true
branches:
include:
- '*'
drafts: true
# Trigger CI for only master/release branches
trigger:
branches:
include:
- master
- release/*
exclude:
- '*'
pool:
vmImage: 'macOS-11'
steps:
-... | # Pipeline will be triggered for PR & any updates on the PR on all branches
pr:
autoCancel: true
branches:
include:
- '*'
drafts: true
# Trigger CI for only master/release branches
trigger:
branches:
include:
- master
- release/*
exclude:
- '*'
pool:
vmImage: 'macOS-11'
timeOut... | Add ComponentGovernance task to pipeline. | Add ComponentGovernance task to pipeline.
| YAML | mit | AzureAD/azure-activedirectory-library-for-objc,AzureAD/azure-activedirectory-library-for-objc,AzureAD/azure-activedirectory-library-for-objc,AzureAD/azure-activedirectory-library-for-objc,AzureAD/azure-activedirectory-library-for-objc |
c27586e2b884ff055b363053fe5fbb38e0c12701 | manifests/ops-files/iaas/gcp/cloud-config/load-balancer-target-pools.yml | manifests/ops-files/iaas/gcp/cloud-config/load-balancer-target-pools.yml | - type: replace
path: /vm_types/name=master/cloud_properties/target_pool?
value: ((master_target_pool))
| - type: replace
path: /vm_types/name=master/cloud_properties/backend_service?
value: ((master_target_pool))
| Update gcp load-balancer ops files to use backend services | Update gcp load-balancer ops files to use backend services
[#157192294]
Signed-off-by: Mark James Hender <06cad015e53832ec406ff07a93cc5d28c4649925@pivotal.io>
| YAML | apache-2.0 | jaimegag/kubo-deployment,pivotal-cf-experimental/kubo-deployment,jaimegag/kubo-deployment,pivotal-cf-experimental/kubo-deployment |
b469c19196239c94a1cbacf3b69e8c36b3b5b797 | examples/customization/custom-configuration/nginx/nginx-load-balancer-conf.yaml | examples/customization/custom-configuration/nginx/nginx-load-balancer-conf.yaml | apiVersion: v1
data:
proxy-connect-timeout: "10"
proxy-read-timeout: "120"
proxy-send-timeout: "120"
kind: ConfigMap
metadata:
name: nginx-custom-configuration
| apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-custom-configuration
labels:
k8s-app: nginx-ingress-controller
namespace: kube-system
data:
proxy-connect-timeout: "10"
proxy-read-timeout: "120"
proxy-send-timeout: "120"
| Fix ConfigMap's namespace in custom configuration example for nginx | Fix ConfigMap's namespace in custom configuration example for nginx
| YAML | apache-2.0 | nicksardo/ingress,kubernetes/ingress-nginx,kubernetes/ingress-nginx,jcmoraisjr/ingress,caicloud/ingress,jcmoraisjr/ingress,winfield-chen-hs/ingress,jcmoraisjr/ingress,caicloud/ingress,aledbf/ingress-nginx,canhnt/ingress,caicloud/ingress,winfield-chen-hs/ingress,chentao1596/ingress,aledbf/ingress-nginx,kubernetes/ingres... |
aa58522e8b97e4639811bae9a8fb23b974a53cf3 | .zuul.yaml | .zuul.yaml | - project:
templates:
- check-requirements
- openstack-cover-jobs
- openstack-python3-antelope-jobs
- publish-openstack-docs-pti
| - project:
templates:
- check-requirements
- openstack-cover-jobs
- openstack-python3-jobs
- publish-openstack-docs-pti
| Switch to 2023.1 Python3 UT and generic template | Switch to 2023.1 Python3 UT and generic template
This patch update the template name to generic template name.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: Ic5b019fe4255c81f07602883e8bd3743c3ac9e71
| YAML | apache-2.0 | openstack/tosca-parser,openstack/tosca-parser |
51800785b2b05cca7c947842cc07521408db94bb | config/gh/config.yml | config/gh/config.yml | # What protocol to use when performing git operations. Supported values: ssh, https
git_protocol: ssh
# What editor gh should run when creating issues, pull requests, etc. If blank, will refer to environment.
editor:
# When to interactively prompt. This is a global config that cannot be overridden by hostname. Supporte... | # What protocol to use when performing git operations. Supported values: ssh, https
git_protocol: ssh
# What editor gh should run when creating issues, pull requests, etc. If blank, will refer to environment.
editor:
# When to interactively prompt. This is a global config that cannot be overridden by hostname. Supporte... | Use default pager for GitHub CLI output | Use default pager for GitHub CLI output
| YAML | mit | lee-dohm/dotfiles,lee-dohm/dotfiles,lee-dohm/dotfiles,lee-dohm/dotfiles |
6ef6e1d0d32dc8849d69a4599a852f9a7e9df33f | metadata/de.micmun.android.deufeitage.yml | metadata/de.micmun.android.deufeitage.yml | Categories:
- Time
License: GPL-3.0-or-later
WebSite: https://micmun.github.io/DeuFeiTage/
SourceCode: https://github.com/MicMun/DeuFeiTage
IssueTracker: https://github.com/MicMun/DeuFeiTage/issues
Changelog: https://github.com/MicMun/DeuFeiTage/blob/HEAD/Changelog.md
AutoName: DeuFeiTage
Description: |-
Find th... | Categories:
- Time
License: GPL-3.0-or-later
WebSite: https://micmun.github.io/DeuFeiTage/
SourceCode: https://github.com/MicMun/DeuFeiTage
IssueTracker: https://github.com/MicMun/DeuFeiTage/issues
Changelog: https://github.com/MicMun/DeuFeiTage/blob/HEAD/Changelog.md
AutoName: DeuFeiTage
Description: |-
Find th... | Update DeuFeiTage to 4.4.0 (405) | Update DeuFeiTage to 4.4.0 (405)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
2ea56f760d21f4d9cee264e51315ed4c4226edaa | metadata/me.hackerchick.raisetoanswer.yml | metadata/me.hackerchick.raisetoanswer.yml | Categories:
- Phone & SMS
License: MIT
SourceCode: https://github.com/TheLastProject/RaiseToAnswer
IssueTracker: https://github.com/TheLastProject/RaiseToAnswer/issues
AutoName: Raise To Answer
RepoType: git
Repo: https://github.com/TheLastProject/RaiseToAnswer.git
Builds:
- versionName: 1.3.4
versionCode: 9... | Categories:
- Phone & SMS
License: MIT
SourceCode: https://github.com/TheLastProject/RaiseToAnswer
IssueTracker: https://github.com/TheLastProject/RaiseToAnswer/issues
AutoName: Raise To Answer
RepoType: git
Repo: https://github.com/TheLastProject/RaiseToAnswer.git
Builds:
- versionName: 1.3.4
versionCode: 9... | Update Raise To Answer to 3.0.1 (15) | Update Raise To Answer to 3.0.1 (15)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
6bc306d9e783b3056fa062f3a4cbe539fcfdc60d | releasenotes/notes/fix-tftp-master-path-config-77face94f5db9af7.yaml | releasenotes/notes/fix-tftp-master-path-config-77face94f5db9af7.yaml | ---
fixes:
- |
Fixes an issue where the master TFTP image cache could not be disbled.
The configuration option ``[pxe]/tftp_master_path`` may now be set to
the empty string to disable the cache. For more information, see
story `2004608 <https://storyboard.openstack.org/#!/story/2004608>`_.
| ---
fixes:
- |
Fixes an issue where the master TFTP image cache could not be disabled.
The configuration option ``[pxe]/tftp_master_path`` may now be set to
the empty string to disable the cache. For more information, see
story `2004608 <https://storyboard.openstack.org/#!/story/2004608>`_.
| Fix typo in release note | Fix typo in release note
This is a follow up to 4c987aa51bda89e978d9b59eaa2ac5acc6c5a15c.
Change-Id: Ia4a42cd18fb62310a668aa71fe3ecb958af40c3c
Story: 2004608
Task: 28506
| YAML | apache-2.0 | openstack/ironic,openstack/ironic |
0085c5af1b8de4bc30ec52277ac9719fb0eb9587 | .github/workflows/ci.yaml | .github/workflows/ci.yaml | name: Java CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Build/Test
runs-on: ubuntu-latest
strategy:
matrix:
java_version: [8, 11, 17]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- ... | name: Java CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Build/Test
runs-on: ubuntu-latest
strategy:
matrix:
java_version: [8, 11, 17]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- ... | Bump actions/cache from 3.0.2 to 3.0.3 | Bump actions/cache from 3.0.2 to 3.0.3
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.2 to 3.0.3.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3.0.2...v3.0.3)
-... | YAML | apache-2.0 | spotify/missinglink,spotify/missinglink |
942a835ad5bd57ba2494d92711f2685dba5c1048 | .github/workflows/php.yml | .github/workflows/php.yml | name: PHP Composer
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-test:
strategy:
fail-fast: true
matrix:
operating-system: [ubuntu-latest]
php: ['8.0', '8.1']
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
... | name: PHP Composer
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-test:
strategy:
fail-fast: true
matrix:
operating-system: [ubuntu-latest]
php: ['8.0', '8.1']
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
... | Set PHP version from matrix. | Set PHP version from matrix. | YAML | mit | vendeka-nl/text |
943e0e650064fec62c9ed21a236f97d3a3856bae | workstation.yml | workstation.yml | ---
- hosts: localhost
roles:
- base
- desktop
- dev
- docker
- games
| ---
- hosts: localhost
roles:
- base
- desktop
- dev
# Disable Docker until they support 17.04
#- docker
- games
| Disable docker until they support 17.04 | Disable docker until they support 17.04
| YAML | mit | andornaut/ansible-workstation |
80786162cb0fe6cdbb00966312a91bc91ed6b9fe | .codeclimate.yml | .codeclimate.yml | engines:
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
- php
fixme:
enabled: true
phpmd:
enabled: true
phpcodesniffer:
enabled: true
config:
standard: "PSR2"
ratings:
paths:
- "**.css"
- "**.js"
- "**.php"
exclude_... | engines:
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
- php
fixme:
enabled: true
phpmd:
enabled: true
phpcodesniffer:
enabled: true
config:
standard: "PSR2"
ratings:
paths:
- "**.css"
- "**.js"
- "**.php"
exclude_... | Add more specific configuration to exclude config files. | Add more specific configuration to exclude config files.
| YAML | mit | MontealegreLuis/php-testing-tools,MontealegreLuis/php-testing-tools |
f9fafe463aa94565e9911936fb885632d6a4cade | .codeclimate.yml | .codeclimate.yml | engines:
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
- php
exclude_fingerprints:
- 1b0b5d0e959332464c112d47ce5ea299
- 4445a66c7fb3c57270ce96d3a612db76
- 4de2909779b782b090addc1f6ee3def2
- 3fe0629cb201d300d04309d7f... | engines:
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
- php
exclude_fingerprints:
- 1b0b5d0e959332464c112d47ce5ea299
- 4445a66c7fb3c57270ce96d3a612db76
- 4de2909779b782b090addc1f6ee3def2
- 3fe0629cb201d300d04309d7f... | Exclude unnecessary path for tests | :hammer: Exclude unnecessary path for tests
| YAML | mit | tadashi-aikawa/owlmixin |
409a03ecadd9ee2231fa0d7497c33f8af0a1bc51 | .codeclimate.yml | .codeclimate.yml | ---
engines:
duplication:
enabled: true
config:
languages:
- javascript
exclude_fingerprints:
- 3defb600b506b6472dd620f7996e3997
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- "**.js"
exclude_paths:
- "test/**/*.js"
| ---
engines:
duplication:
enabled: true
config:
languages:
- javascript
exclude_fingerprints:
- 3defb600b506b6472dd620f7996e3997
- 87c0df6b5cc83b9da18453d2568f52c5
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- "**.js"
exclude_paths:
- "test/**/*.js"... | Add ignore fingerprint for code climate | Add ignore fingerprint for code climate
| YAML | mit | svenschoenung/jshint-stylish-summary |
3d99d72349b340cf8f221f790138901583425519 | ansible/roles/common_debian/tasks/main.yml | ansible/roles/common_debian/tasks/main.yml | ---
- name: Copy sources.list for apt
template:
src: sources.list
dest: /etc/apt/sources.list
owner: root
group: root
mode: 0644
backup: yes
register: result
- name: Update apt cache
apt:
update_cache: yes
when: result is changed
| ---
- name: Copy sources.list for apt
template:
src: sources.list
dest: /etc/apt/sources.list
owner: root
group: root
mode: 0644
backup: yes
register: result
- name: Update apt cache
apt:
update_cache: yes
when: result is changed
- name: Add extra PATH directories
copy:
dest... | Allow to run phpunit from Tatoeba/vendor/bin/ | Allow to run phpunit from Tatoeba/vendor/bin/
| YAML | agpl-3.0 | Tatoeba/tatoeba2,Tatoeba/tatoeba2,Tatoeba/tatoeba2,Tatoeba/tatoeba2,Tatoeba/tatoeba2 |
e61c3e96400cebfad967e314eccf25aef67ad2bb | metadata/com.gitlab.dibdib.dib2calc.yml | metadata/com.gitlab.dibdib.dib2calc.yml | Categories:
- Science & Education
License: GPL-3.0-or-later
WebSite: https://gitlab.com/dibdib/dib2calc
SourceCode: https://gitlab.com/dibdib/dib2calc/tree/HEAD
IssueTracker: https://gitlab.com/dibdib/dib2calc/issues
AutoName: Dib2Calc
RepoType: git
Repo: https://gitlab.com/dibdib/dib2calc.git
Builds:
- versionN... | Categories:
- Science & Education
License: GPL-3.0-or-later
WebSite: https://gitlab.com/dibdib/dib2calc
SourceCode: https://gitlab.com/dibdib/dib2calc/tree/HEAD
IssueTracker: https://gitlab.com/dibdib/dib2calc/issues
AutoName: Dib2Calc
RepoType: git
Repo: https://gitlab.com/dibdib/dib2calc.git
Builds:
- versionN... | Update Dib2Calc to 0.12.62 (1262) | Update Dib2Calc to 0.12.62 (1262)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
a6100445443124043a318534bd2358c68d5b0b71 | .scrutinizer.yml | .scrutinizer.yml | build:
environment:
php:
version: 5.5.25
ini:
'short_open_tag': 'On'
memcached: true
dependencies:
# Runs before inferred commands
before: []
# Overwrites inferred commands
override: []
# Runs after inferred comman... | build:
environment:
php:
version: 5.5.25
ini:
'short_open_tag': 'On'
memcached: true
dependencies:
# Runs before inferred commands
before: []
# Overwrites inferred commands
override: []
# Runs after inferred comman... | Fix bug with scruitinizer development branch builds | Fix bug with scruitinizer development branch builds
| YAML | bsd-3-clause | nafigator/Veles |
5d5176495e1f81e305a6d741e91e016c22a999d1 | .scrutinizer.yml | .scrutinizer.yml | imports:
- php
tools:
php_code_sniffer:
filter:
excluded-paths: [ spec/*, examples/* ]
config:
standard: PSR2
php_analyzer:
filter:
excluded-paths: [ spec/*, examples/* ]
php_sim:
filter:
excluded-paths: [ spec/*, examples/* ]
build_failure_conditions:
- 'issues.l... | imports:
- php
build:
environment:
php: '5.6.16'
tools:
php_code_sniffer:
filter:
excluded-paths: [ spec/*, examples/* ]
config:
standard: PSR2
php_analyzer:
filter:
excluded-paths: [ spec/*, examples/* ]
php_sim:
filter:
excluded-paths: [ spec/*, examples/* ]
... | Make Scrut build env 5.6.16 | Make Scrut build env 5.6.16
| YAML | mit | shrikeh/php-immutable-collections |
c0ebbd84a243afef2f88811e6a06c1f1d2b36297 | catalog/Web_Apps_Services_Interaction/web_app_frameworks.yml | catalog/Web_Apps_Services_Interaction/web_app_frameworks.yml | name: Web App Frameworks
description:
projects:
- bats
- camping
- cramp
- cuba
- e
- gin
- harbor
- hobo
- lattice
- marley
- merb-core
- padrino
- pakyow
- rack
- rails
- ramaze
- rango
- raptor
- renee
- salad
- scorched
- sinatra
- strelka
- vanilla
| name: Web App Frameworks
description:
projects:
- bats
- camping
- cramp
- cuba
- e
- gin
- hanami
- harbor
- hobo
- lattice
- marley
- merb-core
- padrino
- pakyow
- rack
- rails
- ramaze
- rango
- raptor
- renee
- salad
- scorched
- sinatra
- strelka
- vanilla
| Add Hanami to the "Web App Frameworks" category | Add Hanami to the "Web App Frameworks" category
http://hanamirb.org/ | YAML | mit | rubytoolbox/catalog |
b9f62420e7d141a2b1495369e410a8b013047e48 | install_files/ansible-base/roles/common/tasks/install_tmux.yml | install_files/ansible-base/roles/common/tasks/install_tmux.yml | ---
- name: Install tmux.
apt:
pkg: tmux
state: latest
force: yes
update_cache: yes
cache_valid_time: 3600
tags:
- apt
| ---
- name: Install tmux.
apt:
pkg: tmux
state: present
update_cache: yes
cache_valid_time: 3600
tags:
- apt
| Use state=present on tmux install | Use state=present on tmux install
Makes the logic less aggressive on installing tmux. We'll still ensure
it's present, but we can rely on automatic updates via cron-apt to pull
in any security fixes on a nightly basis.
| YAML | agpl-3.0 | ageis/securedrop,conorsch/securedrop,micahflee/securedrop,heartsucker/securedrop,ageis/securedrop,ehartsuyker/securedrop,garrettr/securedrop,conorsch/securedrop,ageis/securedrop,heartsucker/securedrop,garrettr/securedrop,heartsucker/securedrop,ehartsuyker/securedrop,garrettr/securedrop,conorsch/securedrop,micahflee/sec... |
486db3e12d48e95ad842cf541a2f4d4fafcd071d | k8s/crd-samples/deployment-cstor-pool.yaml | k8s/crd-samples/deployment-cstor-pool.yaml | # The deployment for cstor-pool and cstor-pool-mgmt.
apiVersion: apps/v1
kind: Deployment
metadata:
name: cstor-deploy
labels:
app: cstor
spec:
replicas: 1
selector:
matchLabels:
app: cstor
template:
metadata:
labels:
app: cstor
spec:
containers:
- name: cstor-... | # The deployment for cstor-pool and cstor-pool-mgmt.
apiVersion: apps/v1
kind: Deployment
metadata:
name: cstor-pool-deploy
labels:
app: cstor-pool
spec:
replicas: 1
selector:
matchLabels:
app: cstor-pool
template:
metadata:
labels:
app: cstor-pool
spec:
containers:
... | Change label from cstor to cstor-pool on deployment 1. Why is this change necessary ? Deployment name is changed from cstor-deploy to cstor-pool-deploy Label name is changed from cstor to cstor-pool | Change label from cstor to cstor-pool on deployment
1. Why is this change necessary ?
Deployment name is changed from cstor-deploy to cstor-pool-deploy
Label name is changed from cstor to cstor-pool
Signed-off-by: gkGaneshR <3ffdcdce3be7a2573e21b866f581857db5c37d6e@gmail.com>
| YAML | apache-2.0 | yudaykiran/openebs |
38cba1a13588902c9dc925d1b5a1b707da7058ad | models/definition/fields.yaml | models/definition/fields.yaml | # ===================================
# Form Field Definitions
# ===================================
tabs:
stretch: true
cssClass: tabs-no-inset
fields:
items:
stretch: true
tab: rainlab.sitemap::lang.plugin.name
type: RainLab\Sitemap\FormWidgets\SitemapItems
| # ===================================
# Form Field Definitions
# ===================================
tabs:
stretch: true
cssClass: tabs-no-inset
fields:
items:
stretch: true
tab: rainlab.sitemap::lang.item.definition
type: RainLab\Sitemap\FormWidgets\SitemapIte... | Change the name of tab | Change the name of tab | YAML | mit | rainlab/sitemap-plugin,rainlab/sitemap-plugin,rainlab/sitemap-plugin |
0ebb9c1fba0aa6974f5589442031a2ac2a1b7e50 | manifests/cf-manifest/cloud-config/000-base-cloud-config.yml | manifests/cf-manifest/cloud-config/000-base-cloud-config.yml | ---
azs:
- name: z1
cloud_properties: {availability_zone: (( grab terraform_outputs.zone0 )) }
- name: z2
cloud_properties: {availability_zone: (( grab terraform_outputs.zone1 )) }
- name: z3
cloud_properties: {availability_zone: (( grab terraform_outputs.zone2 )) }
compilation:
vm_type: compilation
az: z1
... | ---
azs:
- name: z1
cloud_properties: {availability_zone: (( grab terraform_outputs.zone0 )) }
- name: z2
cloud_properties: {availability_zone: (( grab terraform_outputs.zone1 )) }
- name: z3
cloud_properties: {availability_zone: (( grab terraform_outputs.zone2 )) }
compilation:
vm_type: compilation
az: z1
... | Use compilation-vm IAM profile for compilation vms | Use compilation-vm IAM profile for compilation vms
This matches what paas-bootstrap uses, and what the bosh director is
allowed to use.
| YAML | mit | alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf |
3802e70c8f9a3c2d88ba7a9ae55ebfc1508f00bb | Magic/src/main/resources/examples/survival/mobs/arena.yml | Magic/src/main/resources/examples/survival/mobs/arena.yml | fireproof_zombie:
type: zombie
combustible: false
brain:
remove_goals:
- flee_sun
fireproof_drowned:
type: drowned
combustible: false
item: fishing_rod
brain:
remove_goals:
- flee_sun
trident_drowned:
type: drowned
combustible: false
item: trident
fireproof_stray:
type: stra... | fireproof_zombie:
type: zombie
combustible: false
brain:
remove_goals:
- flee_sun
- restrict_sun
fireproof_drowned:
type: drowned
combustible: false
item: fishing_rod
brain:
remove_goals:
- flee_sun
- restrict_sun
trident_drowned:
type: drowned
combustible: false
it... | Remove restrict_sun goal as well as flee_sun from fireproof mobs | Remove restrict_sun goal as well as flee_sun from fireproof mobs
I think only skeletons actually use these goals though .. zombies are dumb
| YAML | mit | elBukkit/MagicPlugin,elBukkit/MagicPlugin,elBukkit/MagicPlugin |
87d99e6bc7812c8868b68c0f21dfa2886a8233a3 | .github/workflows/nodejs-main.yml | .github/workflows/nodejs-main.yml | name: Node.js Main CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [10.17.0, 10.x, 12.x, 14.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-ver... | name: Node.js Main CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [10.17.0, 10.x, 12.x, 14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-ver... | Replace Node.js 17 with 18 in main ci workflow | Replace Node.js 17 with 18 in main ci workflow
| YAML | mit | okv/east,okv/east |
34e9c453cb2fba3b82252af353667900daf7da5a | packages/pr/predicate-transformers.yaml | packages/pr/predicate-transformers.yaml | homepage: ''
changelog-type: markdown
hash: 375c965437494d16c758f0821cc48edc008b5304bf99034d6c27c8afcff055a0
test-bench-deps: {}
maintainer: edmundnoble@gmail.com
synopsis: A library for writing predicates and transformations over predicates in
Haskell
changelog: |
# Revision history for predicate-transformers
#... | homepage: ''
changelog-type: markdown
hash: bc807f8cd409bdac6e85d5a7ab959ceea397badad76e7e9082a8b3cf10c27f5f
test-bench-deps: {}
maintainer: edmundnoble@gmail.com
synopsis: A library for writing predicates and transformations over predicates in
Haskell
changelog: |
# Revision history for predicate-transformers
#... | Update from Hackage at 2019-10-11T02:39:35Z | Update from Hackage at 2019-10-11T02:39:35Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
7cdc4d865028acdf72e333fb218fa3280179f299 | packages/pe/persistable-types-HDBC-pg.yaml | packages/pe/persistable-types-HDBC-pg.yaml | homepage: http://khibino.github.io/haskell-relational-record/
changelog-type: ''
hash: 380bdd0987f399d8d0bec44ef8e13c9a15e38c3013fe10be349ddb750a83a33f
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: HDBC Convertible instances and HRR persistable instances of PostgreSQL extended
types
changelog: ''
ba... | homepage: http://khibino.github.io/haskell-relational-record/
changelog-type: ''
hash: d1e45b27a6f46b144e1a3e56c2e32f7d98d2504bf46c8707c94b5eb8a439b8a2
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: HDBC Convertible instances and HRR persistable instances of PostgreSQL extended
types
changelog: ''
ba... | Update from Hackage at 2015-11-24T02:16:23+0000 | Update from Hackage at 2015-11-24T02:16:23+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
428b51912119cd0203a0fa8c485d5e1bb558f6df | manifests/cf-manifest/env-specific/prod.yml | manifests/cf-manifest/env-specific/prod.yml | ---
cell_instances: 39
router_instances: 12
api_instances: 6
doppler_instances: 33
log_api_instances: 6
cc_worker_instances: 4
cc_hourly_rate_limit: 20000
paas_region_name: ireland
| ---
cell_instances: 45
router_instances: 12
api_instances: 6
doppler_instances: 33
log_api_instances: 6
cc_worker_instances: 4
cc_hourly_rate_limit: 20000
paas_region_name: ireland
| Add 6 more cells in Ireland for Notify load test | Add 6 more cells in Ireland for Notify load test
This should be reverted when they are finished
Signed-off-by: Toby Lorne <527052641d65eef236eeef9545b2acac74c35d57@digital.cabinet-office.gov.uk>
| YAML | mit | alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf |
6486e3f220f256de9c836dff022f2b363ecb68f3 | plugins/cloud-aws/src/test/resources/rest-api-spec/test/cloud_aws/20_repository.yaml | plugins/cloud-aws/src/test/resources/rest-api-spec/test/cloud_aws/20_repository.yaml | # Integration tests for Cloud AWS components
#
"S3 repository can be registereed":
- skip:
version: "all"
reason: does not work on java9, see https://github.com/aws/aws-sdk-java/pull/432
- do:
snapshot.create_repository:
repository: test_repo_s3_1
verify: false
... | # Integration tests for Cloud AWS components
#
"S3 repository can be registereed":
- do:
snapshot.create_repository:
repository: test_repo_s3_1
verify: false
body:
type: s3
settings:
bucket: "my_bucket_name"
access_key: "AKVAI... | Revert "Disable this test (we should fix rest framework to disable based on java versions)" | Revert "Disable this test (we should fix rest framework to disable based on java versions)"
This reverts commit 6a0381b58276479c480c58581339ceba57fa9827.
| YAML | apache-2.0 | strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test |
50c2f1c88d6ba0cc34d895ed332baa2e25d307ca | tasks/build-binary-new/php74-extensions-patch.yml | tasks/build-binary-new/php74-extensions-patch.yml | ---
extensions:
exclusions:
- name: libz
- name: yaf
- name: amqp
- name: cassandra
- name: interbase
- name: recode
- name: wddx
- name: phalcon
additions:
- name: gd
version: nil
md5: nil
klass: Gd74FakePeclRecipe
| ---
extensions:
exclusions:
- name: libz
- name: yaf
- name: cassandra
- name: interbase
- name: recode
- name: wddx
- name: phalcon
additions:
- name: gd
version: nil
md5: nil
klass: Gd74FakePeclRecipe
| Include amqp in php 7.4 | Include amqp in php 7.4
[#175938835]
| YAML | apache-2.0 | cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci |
c57a67361695198f363e01c30d172646bb5348c3 | metadata/com.planes.android.yml | metadata/com.planes.android.yml | Categories:
- Games
License: MIT
AuthorName: Cristian Cucu
SourceCode: https://github.com/xxxcucus/planes
IssueTracker: https://github.com/xxxcucus/planes/issues
AutoName: Planes Android
RepoType: git
Repo: https://github.com/xxxcucus/planes
Builds:
- versionName: 0.3.6
versionCode: 9
commit: 0.3.6
s... | Categories:
- Games
License: MIT
AuthorName: Cristian Cucu
SourceCode: https://github.com/xxxcucus/planes
IssueTracker: https://github.com/xxxcucus/planes/issues
AutoName: Planes Android
RepoType: git
Repo: https://github.com/xxxcucus/planes
Builds:
- versionName: 0.3.6
versionCode: 9
commit: 0.3.6
s... | Update Planes Android to 0.3.10 (13) | Update Planes Android to 0.3.10 (13)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
429a28c701d412d43a28b069094b4ce2dc9432cf | devtools/conda-recipe/meta.yaml | devtools/conda-recipe/meta.yaml | package:
name: mbuild
version: {{ GIT_DESCRIBE_TAG }}
source:
path: ../../
build:
noarch: python
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0)}}
script_env:
- CONDA_PY
script: activate
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build... | package:
name: mbuild
version: {{ GIT_DESCRIBE_TAG }}
source:
path: ../../
build:
noarch: python
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0)}}
script_env:
- CONDA_PY
script: activate
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build... | Add nbval to conda recipe | Add nbval to conda recipe
| YAML | mit | iModels/mbuild,iModels/mbuild |
4e9904c776c55cab2745815e07da70ca56add5f1 | .github/workflows/dotnetcore.yml | .github/workflows/dotnetcore.yml | name: .NET Core build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1.7.0
with:
dotnet-version: 3.1.101
- name: Instal... | name: .NET Core build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1.7.1
with:
dotnet-version: 3.1.101
- name: Instal... | Bump actions/setup-dotnet from v1.7.0 to v1.7.1 | Bump actions/setup-dotnet from v1.7.0 to v1.7.1
Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from v1.7.0 to v1.7.1.
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](https://github.com/actions/setup-dotnet/compare/v1.7.0...7a98346f51166aa847a6eeafa446690816e007b7)... | YAML | mit | milkshakesoftware/PreMailer.Net |
b9de01447da694e69e1cfd4c3a5a6509fafdce88 | .github/workflows/pr-labeler.yml | .github/workflows/pr-labeler.yml | name: PR Labeler
on:
pull_request:
types: [opened]
jobs:
pr-labeler:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: TimonVS/pr-labeler-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
| name: PR Labeler
on:
pull_request_target:
types: [opened]
jobs:
pr-labeler:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: TimonVS/pr-labeler-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
| Fix resource not available error during PR label | Fix resource not available error during PR label | YAML | lgpl-2.1 | amolenaar/gaphor,amolenaar/gaphor |
031fdfd730389d95be170eacbf29afa97e678c35 | examples/customization/custom-vts-metrics/nginx/nginx-vts-metrics-conf.yaml | examples/customization/custom-vts-metrics/nginx/nginx-vts-metrics-conf.yaml | piVersion: v1
data:
enable-vts-status: "true"
kind: ConfigMap
metadata:
name: nginx-vts-metrics-conf
namespace: kube-system
| apiVersion: v1
data:
enable-vts-status: "true"
kind: ConfigMap
metadata:
name: nginx-vts-metrics-conf
namespace: kube-system
| Fix typo nginx configMap vts metrics customization | Fix typo nginx configMap vts metrics customization
| YAML | apache-2.0 | aledbf/ingress-nginx,nicksardo/ingress,caiyixiang/ingress,kubernetes/ingress-nginx,caicloud/ingress,canhnt/ingress,kubernetes/ingress-nginx,winfield-chen-hs/ingress,coryfklein/ingress,matthewg/ingress,caiyixiang/ingress,aledbf/ingress-nginx,coryfklein/ingress,kubernetes/ingress-nginx,matthewg/ingress,porridge/ingress,n... |
23d07b1f8221f7b89d892d784dde86718d4c4ec9 | compose/nginx/docker-compose.yml | compose/nginx/docker-compose.yml | #
# Source code address
# https://hub.docker.com/u/tranhuucuong91/
#
# Syntax: https://docs.docker.com/compose/compose-file/
#
version: "2"
services:
nginx:
image: tranhuucuong91/nginx:1.7
ports:
- "80:80"
- "443:443"
networks:
- nginx-back
volum... | #
# Source code address
# https://hub.docker.com/u/tranhuucuong91/
#
# Syntax: https://docs.docker.com/compose/compose-file/
#
version: "2"
services:
nginx:
image: tranhuucuong91/nginx:1.7
ports:
- "80:80"
- "443:443"
networks:
- nginx-back
volum... | Update compose nginx: disable network external by default | Update compose nginx: disable network external by default
| YAML | mit | tranhuucuong91/docker-training,tranhuucuong91/docker-training,tranhuucuong91/docker-training |
b7a4706864698e467863d4c99f18a79cfbe4a3a5 | spec/.rubocop.yml | spec/.rubocop.yml | inherit_from: ../.rubocop.yml
# Avoid warning "Possibly useless use of == in void context"
# for `should ==`
Void:
Enabled: false
| inherit_from: ../.rubocop.yml
# Avoid warning "Possibly useless use of == in void context"
# for `should ==`
Void:
Enabled: false
# Sometimes I want to indicate that “This is a hash” explicitly with #and_return.
BracesAroundHashParameters:
Enabled: false
| Disable BracesAroundHashParameters cop with specs | Disable BracesAroundHashParameters cop with specs
| YAML | mit | guard/guard-rubocop,backus/guard-rubocop,yujinakayama/guard-rubocop |
c2d8f0fcd9846ec9278d25a1b1db21ff4c55c4c3 | .github/actions/npmjs/action.yml | .github/actions/npmjs/action.yml | name: Build and Deploy to NPM.js
description: Build TS and deploy package to NPM.js
inputs:
NPM_TOKEN:
description: NPM.js Token
required: true
runs:
using: "composite"
steps:
- name: Create JS from TS files
run: |
npm ci --silent
npm run build
shell: bash
- name: Dep... | name: Build and Deploy to NPM.js
description: Build TS and deploy package to NPM.js
inputs:
NPM_TOKEN:
description: NPM.js Token
required: true
runs:
using: "composite"
steps:
- name: Create JS from TS files
run: |
npm install --silent
npm run build
shell: bash
- name... | Use Npm install instead of CI | Use Npm install instead of CI
| YAML | apache-2.0 | kuzzleio/kuzzle,kuzzleio/kuzzle,kuzzleio/kuzzle,kuzzleio/kuzzle |
93f355bf31def2adce8614404da1838e581fa91a | .github/workflows/python-app.yml | .github/workflows/python-app.yml | # This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
push:
branches:
- master
- main
jobs:
build... | # This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
push:
branches:
- master
- main
permissions:
... | Convert to OIDC for AWS CICD workflows. | Convert to OIDC for AWS CICD workflows.
| YAML | mit | davidski/zestimate-lambda |
60c0361a6861ef7e813b5d66cf48d37b3e99d3a1 | .github/workflows/pythonlint.yml | .github/workflows/pythonlint.yml | # This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Lint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
... | # This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Lint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
... | Add Pylint test to GitHub Action | Add Pylint test to GitHub Action
| YAML | mit | SpunkyBot/spunkybot,SpunkyBot/spunkybot |
9cb9673f855563b51ba365e3beee72f9ae3316bd | cloud/skytap/PI.yaml | cloud/skytap/PI.yaml | ---
title: Puppetizing Infrastructure
domain_name: puppetlabs.vm
master_template_id: 1037137
master_memory: 16384
master_cpus: 8
master_name: master
master_ports:
- 22
- 80
- 443
- 9090
- 9091
- 8088
- 8170
student_template_id: 887849
student_vm_id:
- 12068212
student_memory: 2048
student_cpus: 2
studen... | ---
title: Puppetizing Infrastructure
domain_name: puppetlabs.vm
master_template_id: 1037137
master_memory: 16384
master_cpus: 8
master_name: master
master_ports:
- 22
- 80
- 443
- 9090
- 9091
- 8088
- 8170
student_template_id: 887849
student_vm_id:
- 12068212
student_memory: 1024
student_cpus: 1
studen... | Set default to 1gb 1core | Set default to 1gb 1core | YAML | apache-2.0 | joshsamuelson/puppetlabs-training-bootstrap,carthik/puppetlabs-training-bootstrap,marrero984/education-builds,carthik/puppetlabs-training-bootstrap,marrero984/education-builds,samuelson/education-builds,puppetlabs/puppetlabs-training-bootstrap,samuelson/puppetlabs-training-bootstrap,carthik/puppetlabs-training-bootstra... |
c6f0d1bc66c56e55573099820a09a9d2c54f456d | .github/ISSUE_TEMPLATE/config.yml | .github/ISSUE_TEMPLATE/config.yml | blank_issues_enabled: true
contact_links:
- name: 📖 Documentation
url: https://docs.pyinfra.com
about: View the pyinfra documentation.
- name: 💬 Ask Questions on the pyinfra Reddit
url: https://reddit.com/r/pyinfra
about: Please ask and answer usage questions here.
| blank_issues_enabled: true
contact_links:
- name: 📖 Documentation
url: https://docs.pyinfra.com
about: View the pyinfra documentation.
- name: 💬 Help & Support
url: https://docs.pyinfra.com/page/support.html
about: Please ask and answer usage questions here.
| Update support link to point at docs. | Update support link to point at docs.
| YAML | mit | Fizzadar/pyinfra,Fizzadar/pyinfra |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.