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 |
|---|---|---|---|---|---|---|---|---|---|
2eed9db316b93eedade78962d793daa0262d6942 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: python
matrix:
include:
- python: "3.5"
- python: "3.6"
- python: "3.7"
sudo: required
dist: xenial
addons:
apt:
packages:
- dbus-x11
install:
- pip install jeepney cryptography codecov mypy
before_script:
- git clone https://gitlab.gnome.org/GN... | sudo: false
dist: trusty
language: python
matrix:
include:
- python: "3.5"
- python: "3.6"
- python: "3.7"
sudo: required
dist: xenial
addons:
apt:
packages:
- dbus-x11
install:
- pip install jeepney cryptography codecov mypy
before_script:
- git clone https://gitlab.gnome.org/GN... | Revert "Do not type check tests for now" | Revert "Do not type check tests for now"
This reverts commit e41ada50b717892981ab413933a9f3b68699a2fe.
| YAML | bsd-3-clause | mitya57/secretstorage |
3143f60f563194b6feac3707f9458cf72c78eefe | .travis.yml | .travis.yml | language: python
python:
- '2.7'
- pypy
install:
- pip install -U pytest
script: py.test
| language: python
python:
- '2.7'
- '3.4'
- pypy
install:
- pip install -U pytest
script: py.test
| Add in CI support for Python 3.4 | Add in CI support for Python 3.4
| YAML | bsd-2-clause | imgix/imgix-python |
1185a87d450395a2504d7750e36c960edd359603 | .travis.yml | .travis.yml | language: node_js
node_js:
- "8.0"
before_install:
- npm install -g yarn --cache-min 999999999
install:
- yarn install
- ls
script:
- yarn test
# # safelist
# branches:
# only:
# - master | language: node_js
node_js:
- "8.0"
before_install:
- npm install -g yarn --cache-min 999999999
install:
- yarn install
- ls
script:
# Test script runs yarn test and looks for the 'Failed Tests' string, returning an error exit code if found.
# Necessary because tap test reporters don't ever return an err... | Return an error code if yarn test result contains 'Failed Tests'. | Return an error code if yarn test result contains 'Failed Tests'.
| YAML | mit | nozzlegear/Shopify-Prime |
dffe3788c876cb962bc187cfdaeadf64f20163af | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- os: linux
addons:
chrome: stable
node_js: 8.6
- os: linux
addons:
chrome: stable
node_js: node # Latest
- os: windows
filter_secrets: false # Secrets will otherwise break Windows builds
node_js: latest
script:
-... | language: node_js
matrix:
include:
- os: linux
addons:
chrome: stable
node_js: 8.6
- os: linux
addons:
chrome: stable
node_js: node # Latest
- os: windows
filter_secrets: false # Secrets will otherwise break Windows builds
node_js: 8.6
script: n... | Test on windows with two node versions & only run `test:ava` | Test on windows with two node versions & only run `test:ava`
| YAML | mit | andywer/thread.js,andywer/threads.js,andywer/threads.js |
409112b581a33a85f9ed4d8054e409f4d20b3435 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=em... | ---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=em... | Allow 2.0 beta to fail. | Allow 2.0 beta to fail.
| YAML | mit | aansubarkah/ember-cli-twitter-typeahead,greyhwndz/ember-cli-twitter-typeahead,thefrontside/ember-cli-twitter-typeahead,greyhwndz/ember-cli-twitter-typeahead,captmorgan/ember-cli-twitter-typeahead,Dhaulagiri/ember-cli-twitter-typeahead,robneville73/ember-cli-twitter-typeahead,Dhaulagiri/ember-cli-twitter-typeahead,thefr... |
3bf3e08b59bf62e0dc4f0d16a1b18d1a0f74464b | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libasound2-dev
script:
- export CXX=g++-4.8
- ./scripts/ci.sh
| language: node_js
node_js:
- "4.1"
- "4.0"
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libasound2-dev
script:
- export CXX=g++-4.8
- ./scripts/ci.sh
| Remove support for node 0.12 | Remove support for node 0.12
| YAML | mit | madjam002/specular,madjam002/specular |
86d1445614bf1ca6fd7e0100c0cbc1964e71a083 | .travis.yml | .travis.yml | language: node_js
node_js:
- 8
- 10
- 11
- 12
- 13
cache:
directories:
- node_modules
- $HOME/.npm
notifications:
on_success: false
email: false
| language: node_js
node_js:
- 10
- 11
- 12
- 13
cache:
directories:
- node_modules
- $HOME/.npm
notifications:
on_success: false
email: false
| Remove Node.js 8 from Travis testing | tests: Remove Node.js 8 from Travis testing
| YAML | bsd-2-clause | justjohn/twig.js,justjohn/twig.js,twigjs/twig.js,justjohn/twig.js,twigjs/twig.js,twigjs/twig.js |
c79a0b6284f887a7a64abbaa01d9a44042667e6e | .travis.yml | .travis.yml | language: python
python: 2.7
env:
- TOX_ENV=py34-django18
- TOX_ENV=py34-django17
- TOX_ENV=py34-django16
- TOX_ENV=py27-django18
- TOX_ENV=py27-django17
- TOX_ENV=py27-django16
- TOX_ENV=flake8
install:
- pip install tox
script:
- tox -e $TOX_ENV
| language: python
python: 3.5
env:
- TOX_ENV=py35-django19
- TOX_ENV=py34-django19
- TOX_ENV=py27-django19
- TOX_ENV=py35-django18
- TOX_ENV=py34-django18
- TOX_ENV=py27-django18
- TOX_ENV=flake8
install:
- pip install tox
script:
- tox -e $TOX_ENV
sudo: false
| Add new environments to Travis config | Add new environments to Travis config
| YAML | bsd-3-clause | bennylope/django-email-users |
4f82d7882b7b62f9f60778c6d86aa4b4de70e692 | .travis.yml | .travis.yml | sudo: false
language: java
cache:
directories:
- $HOME/.m2
install:
- mvn clean install -Dmaven.test.skip.exec
script:
- mvn test -Pwith-lib,jacoco
jdk:
- oraclejdk8
notifications:
email:
recipients:
- antonin.stefanutti@gmail.com
after_success:
- mvn jacoco:report -pl impl
- mvn -N cov... | dist: trusty
sudo: false
language: java
cache:
directories:
- $HOME/.m2
install:
- mvn clean install -Dmaven.test.skip.exec
script:
- mvn test -Pwith-lib,jacoco
jdk:
- oraclejdk8
notifications:
email:
recipients:
- antonin.stefanutti@gmail.com
after_success:
- mvn jacoco:report -pl impl
... | Use trusty Travis CI dist | Use trusty Travis CI dist | YAML | apache-2.0 | astefanutti/metrics-aspectj |
4a20fa908f0d350f23df6824ccf8a3112491afd7 | .travis.yml | .travis.yml | language:
- ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
install:
- "travis_retry bin/setup"
script:
- "bundle exec appraisal rake"
branches:
only:
- master
- 2.0
| language:
- ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
install:
- "travis_retry bin/setup"
script:
- "bundle exec appraisal rake"
branches:
only:
- master
- 2.0
sudo: false
| Use Travis containers for faster tests | Use Travis containers for faster tests
See:
http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
| YAML | mit | janusnic/clearance,janusnic/clearance,naveed-ahmad/clearance,thoughtbot/clearance,zernie/clearance,naveed-ahmad/clearance,benlivermore/clearance,benlivermore/clearance,thoughtbot/clearance,pedrosmmoreira/clearance,zernie/clearance,pedrosmmoreira/clearance,naveed-ahmad/clearance,benlivermore/clearance,thoughtbot/clearan... |
980a0261fd42726a84a13d88be8835a3fbdce772 | .travis.yml | .travis.yml | sudo: required
cache:
directories:
- $HOME/.cache/
language:
- cpp
matrix:
include:
- os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
env:
- CACHE_KEY=trusty-gcc-6
... | sudo: required
cache:
directories:
- $HOME/.cache/
language:
- cpp
matrix:
include:
- os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
env:
- CACHE_KEY=trusty-gcc-6
... | Add OSX to build matrix | Add OSX to build matrix
| YAML | mit | lucid-otserv/core,lucid-otserv/core |
ec44483a4acdbbeaa8a433d0d0ee2c525b801fee | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- openjdk8
- oraclejdk8
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file: ./build/libs/storm-jedis.jar
skip_cleanup: true
on:
tags: true
| language: java
sudo: false
##
# OpenJDK 8 is not available (yet).
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
##
# When a release is tagged, push to GitHub Releases.
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file: ./build/libs/storm-jedis.jar
skip_cleanup: true
on:
tags: true
| Test on oracle JDK 7 and 8 on Travis | Test on oracle JDK 7 and 8 on Travis | YAML | mit | themasterchef/storm-jedis |
4d14bad22f482a14052ddb226f55a55b1a803e55 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.6"
- "3.7"
install: pip install tox-travis
script: tox
| dist: xenial
sudo: required
language: python
python:
- "2.7"
- "3.6"
- "3.7"
install: pip install tox-travis
script: tox
| Fix Travis CI to add python 3.7 support | Fix Travis CI to add python 3.7 support
| YAML | apache-2.0 | ddalu5/logs-analyzer |
832595977fb3c881bfb25d4a86b166754d0207d7 | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: go
go:
- 1.6
branches:
only:
- master
- pachd_client_reorg
before_install:
- echo 'DOCKER_OPTS="-H unix:///var/run/docker.sock -s devicemapper"' | sudo tee /etc/default/docker > /dev/null
before_script:
- wget https://storage.googleapis.com/kubernetes-releas... | sudo: required
services:
- docker
language: go
go:
- 1.6
branches:
only:
- master
- pachd_client_reorg
- vendor_reorg
before_install:
- echo 'DOCKER_OPTS="-H unix:///var/run/docker.sock -s devicemapper"' | sudo tee /etc/default/docker > /dev/null
before_script:
- wget https://storage.googleapis.co... | Enable building off vendor reorg branch | Enable building off vendor reorg branch
| YAML | apache-2.0 | pachyderm/pfs,pachyderm/pfs,pachyderm/pfs |
d0ed786605b54be4b4191a941631fa374194a294 | .travis.yml | .travis.yml | sudo: required
language: bash
services:
- docker
before_install:
- curl -L https://github.com/docker/compose/releases/download/1.4.0/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
- wget -nc -P "$HOME/cache" "http://download.geofabrik.de... | sudo: required
language: bash
services:
- docker
before_install:
- curl -L https://github.com/docker/compose/releases/download/1.4.0/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
- wget -nc -P "$HOME/cache" "http://download.geofabrik.de... | Add stable extract link of liechtenstein | Add stable extract link of liechtenstein
| YAML | mit | osm2vectortiles/osm2vectortiles,geometalab/osm2vectortiles,osm2vectortiles/osm2vectortiles,geometalab/osm2vectortiles |
72d578ff636b662c937df977aeaf3325a72492c7 | .travis.yml | .travis.yml | os:
- linux
- osx
language: node_js
node_js:
- 4
- 5
- 6
- 7
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install zmq; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8; fi
- if [[ "$TRAVIS_OS_NAME" =... | os:
- linux
- osx
dist: trusty
language: node_js
node_js:
- 4
- 5
- 6
- 7
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install zmq; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ ... | Use Ubuntu Trusty with G++ 4.8 | Travis: Use Ubuntu Trusty with G++ 4.8
| YAML | mit | mage/mage,mage/mage,stelcheck/mage,stelcheck/mage,mage/mage,stelcheck/mage |
0f2644e198a27205603dce804725cc607ffe81be | .travis.yml | .travis.yml | language: go
go:
- 1.7.1
sudo: false
install:
- make install-tools
- make install-dependencies
- make install
script:
- make lint
- make test-verbose-with-coverage
- gover
- if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then goveralls -coverprofile=gover.coverprofile -service=travis-ci -repotoken $COVE... | language: go
go:
- 1.7.x
- 1.8.x
sudo: false
install:
- make install-tools
- make install-dependencies
- make install
script:
- make lint
- make test-verbose-with-coverage
- gover
- if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then goveralls -coverprofile=gover.coverprofile -service=travis-ci -repot... | Switch to Go 1.7 and 1.8 | Switch to Go 1.7 and 1.8
We are only supporting the two latest major Go releases.
| YAML | mit | zimmski/go-mutesting,zimmski/go-mutesting |
18c318223cd0c123beb416e90936eed7c5a68f30 | roles/common/tasks/env.yml | roles/common/tasks/env.yml | ---
- name: install bash-completion
apt: name=bash-completion state=present
- name: create git directory
file: path={{ local_home }}/git state=directory
- name: remove dot files
file: path={{ local_home }}/.{{ item }} state=absent
with_items: "{{ dot_files }}"
- name: link dot files
file: src={{ role... | ---
- name: install bash-completion
apt: name=bash-completion state=present
become: true
- name: create git directory
file: path={{ local_home }}/git state=directory
- name: remove dot files
file: path={{ local_home }}/.{{ item }} state=absent
with_items: "{{ dot_files }}"
- name: link dot files
f... | Fix sudo privileges for apt-get install | Fix sudo privileges for apt-get install
| YAML | mit | wd15/env,wd15/env,wd15/env |
2a434b99a78d0ff8b22a20bb7fe78a5aa56a3a0f | roles/shell/tasks/main.yml | roles/shell/tasks/main.yml | ---
- name: Install tmux
homebrew:
name: tmux
state: latest
- name: Install shellcheck
homebrew:
name: shellcheck
state: latest
- name: Install ag
become: true
apt:
name: silversearcher-ag
state: latest
- name: Install direnv
become: true
apt:
name: direnv
| ---
- name: Shell dependencies
homebrew:
name: "{{item}}"
state: latest
with_items:
- tmux
- shellcheck
- silversearcher-ag
- direnv
| Install all shell stuff through homebrew | Install all shell stuff through homebrew
| YAML | mit | deivid-rodriguez/dotfiles,deivid-rodriguez/dotfiles |
c6a28814c1c19163af4a2e8d70f53552ed994c82 | .travis.yml | .travis.yml | language: python
python:
- "3.2"
- "3.3"
- "3.4"
install:
- pip install --use-mirrors -r test-requirements.pip
script: nosetests
| language: python
python:
- "3.4"
- "3.5"
install:
- pip install --use-mirrors -r test-requirements.pip
script: nosetests
| Drop 3.2 and 3.3 from the CI build and add 3.5 | Drop 3.2 and 3.3 from the CI build and add 3.5
| YAML | mit | renshawbay/xltable,fkarb/xltable |
5f32c7d6fa5448d416869868a29c14dd1d3611cb | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install:
- "curl -L http://git.io/ejPSng | /bin/sh"
| language: node_js
node_js:
- "0.10"
before_install:
- "curl -L https://raw.github.com/peerlibrary/travis-ci-meteor-packages/peerlibrary/configure.sh | /bin/sh"
| Use our Travis CI testing script. | Use our Travis CI testing script.
| YAML | bsd-3-clause | peerlibrary/meteor-fs |
9a6d0b419a2f4230e79247a044727f895c0b40b3 | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- 1.7
- 1.8
- tip
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y pdftk
install:
- go get -u github.com/golang/lint/golint
- go get github.com/stretchr/testify
- go get github.com/satori/go.uuid
script:
- golint
- go test -cover
| language: go
go:
- 1.6
- 1.7
- 1.8
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y pdftk
install:
- go get -u github.com/golang/lint/golint
- go get github.com/stretchr/testify
- go get github.com/satori/go.uuid
script:
- golint
- go test -cover
| Remove 1.5 & tip from the test matrix | Remove 1.5 & tip from the test matrix
| YAML | mit | StefanKjartansson/pdfhandler |
e8ac7dc82e9b5c230f6ba1f6f7a48b74b71cb974 | .travis.yml | .travis.yml | language: node_js
node_js:
- '4.0'
- '4'
- '5'
- '6.0'
- '6'
- '7'
sudo: false
script:
- npm run lint
- npm test -- -- -- --bail --timeout 5000 --reporter dot
after_success:
- npm run coveralls
notifications:
email: false
slack:
secure: jI3gt+t9s6NRCuMnEfQKqNziWpTVxKMAv2sXIukDzNgBzTl70oZcn4gGOoD+JWfPBDZV/3UFrKh... | language: node_js
node_js:
- '4.0'
- '4'
- '6.0'
- '6'
sudo: false
script:
- npm run lint
- npm test -- -- -- --bail --timeout 5000 --reporter dot
after_success:
- npm run coveralls
notifications:
email: false
slack:
secure: jI3gt+t9s6NRCuMnEfQKqNziWpTVxKMAv2sXIukDzNgBzTl70oZcn4gGOoD+JWfPBDZV/3UFrKh3kEBKfIcfMbF... | Stop testing Node v5 and v7 | Stop testing Node v5 and v7
| YAML | mit | BrandonZacharie/node-redis-server |
dff6b3cad72b556ed8efbc6185c706a212e09dd2 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake"
rvm:
- 1.9.3
- 2.0.0
- rbx
- jruby
gemfile:
- gemfiles/Gemfile.rails-3.1
- Gemfile
| language: ruby
script: "bundle exec rake"
rvm:
- 1.9.3
- 2.0.0
- rbx-19mode
- jruby
gemfile:
- gemfiles/Gemfile.rails-3.1
- Gemfile
| Use rbx in 1.9 mode. | Use rbx in 1.9 mode. | YAML | mit | chrise86/cocoon,asiniy/cocoon,nathanvda/cocoon,nathanvda/cocoon,treble37/cocoon,nathanvda/cocoon,vtamara/cocoon,chrise86/cocoon,ikhakoo/cocoon,treble37/cocoon,asiniy/cocoon,chrise86/cocoon,ikhakoo/cocoon,asiniy/cocoon,vtamara/cocoon,treble37/cocoon,vtamara/cocoon,ikhakoo/cocoon |
960ca5aa44b5a7cf73ef08ce4354b5b937d45859 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
- ruby-head
- jruby-19mode
- rbx-3
| rvm:
- 2.0.0
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
- ruby-head
- jruby-19mode
- rbx-3
| Drop ruby 1.9.3 from CI for activesupport 5.n | Drop ruby 1.9.3 from CI for activesupport 5.n
| YAML | mit | balexand/email_validator |
79f24db661eece56f1bf89bdfeda8a069f5d53a4 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'node'
- 'iojs'
- '0.12'
before_install:
- sudo apt-get install python-software-properties
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -y
- sudo apt-get install gcc-4.9 g++-4.9 -y
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/b... | language: node_js
node_js:
- 'node'
- 'iojs'
- '0.12'
| Remove unncessary Travis CI boilerplate | Remove unncessary Travis CI boilerplate
| YAML | mit | feathersjs/feathers-authentication,m1ch3lcl/feathers-authentication,eblin/feathers-authentication,feathersjs/feathers-passport-jwt,feathersjs/feathers-passport-jwt,eblin/feathers-authentication,m1ch3lcl/feathers-authentication |
2c00888222199d2ce7c453ed0666be56b945915f | engineer/themes/oleb/metadata.yaml | engineer/themes/oleb/metadata.yaml | name: 'Ole Begemann'
id: oleb
description: "A bright design based on Ole Begemann's oleb.net. Used with permission."
author: 'Tyler Butler <tyler@tylerbutler.com>'
website: 'http://tylerbutler.com'
license: 'Creative Commons BY-SA 3.0'
use_foundation: yes
use_lesscss: yes
use_modernizr: yes
use_jquery: yes
self_contai... | name: 'Ole Begemann'
id: oleb
description: "A bright design based on Ole Begemann's oleb.net. Used with permission."
author: 'Tyler Butler <tyler@tylerbutler.com>'
website: 'http://tylerbutler.com'
license: 'Creative Commons BY-SA 3.0'
use_foundation: yes
use_lesscss: yes
use_modernizr: yes
use_jquery: yes
settings:
... | Add missing default settings to oleb theme. | Add missing default settings to oleb theme.
| YAML | mit | tylerbutler/engineer,tylerbutler/engineer,tylerbutler/engineer |
8f8daa0453669363f3b3a79d0a9b48a22a1fba20 | _config.yml | _config.yml | #Update all the sections by editing the data.yml file inside _data folder.
# Site Settings
title: My Resume
url: 'http://webjeda.com'
baseurl: '/online-cv' #change it according to your repository name
# Style will be applied only after restarting the build or serve. Just choose one of the options.
theme_skin: blue # b... | #Update all the sections by editing the data.yml file inside _data folder.
# Site Settings
title: My Resume
url: 'http://webjeda.com'
baseurl: '/online-cv' #change it according to your repository name
# Style will be applied only after restarting the build or serve. Just choose one of the options.
theme_skin: blue # b... | Add configuration var for chrome mobile use | Add configuration var for chrome mobile use
| YAML | mit | axdiamond/axdiamond,ovisnigra/ovisnigra.github.io,xdite/xdite.github.com,freesoft/freesoft.github.io,freesoft/freesoft.github.io,axdiamond/axdiamond |
bed61866a354186f79b6323df932b9ae0864987a | leafpad/snapcraft.yaml | leafpad/snapcraft.yaml | name: leafpad
version: "1"
summary: GTK+ based simple text editor
description: |
Leafpad is a simple GTK+ based text editor, the user interface is similar
to Notepad. It aims to be lighter than GEdit and KWrite, and to be as
useful as them.
confinement: devmode
apps:
leafpad:
command: desktop-launch lea... | name: leafpad
version: "1"
summary: GTK+ based simple text editor
description: |
Leafpad is a simple GTK+ based text editor, the user interface is similar
to Notepad. It aims to be lighter than GEdit and KWrite, and to be as
useful as them.
confinement: strict
apps:
leafpad:
command: desktop-launch leaf... | Add needed plugs and working in strict mode | Add needed plugs and working in strict mode
| YAML | mit | elopio/snappy-playpen,Winael/snappy-playpen-1,jamestait/snappy-playpen,ubuntu/snappy-playpen,dplanella/snappy-playpen,jamestait/snappy-playpen,wandrewkeech/snappy-playpen,ubuntu/snappy-playpen,ubuntu/snappy-playpen,Zap123/snappy-playpen,Winael/snappy-playpen-1,Zap123/snappy-playpen,wandrewkeech/snappy-playpen,jamestait... |
074f237ac9d453550c2d41fa222f8737a9da2486 | blueprints.yaml | blueprints.yaml | name: AdvancedPageCache
version: 1.0.0
description: "AdvancedPageCache turbo charges your site by statically caching pages."
icon: dashboard
author:
name: Team Grav
email: devs@getgrav.org
url: http://getgrav.org
homepage: https://github.com/getgrav/grav-plugin-advanced-pagecache
keywords: "static, cache, plugin,... | name: AdvancedPageCache
version: 1.0.0
description: "AdvancedPageCache turbo charges your site by statically caching pages."
icon: dashboard
author:
name: Team Grav
email: devs@getgrav.org
url: http://getgrav.org
homepage: https://github.com/getgrav/grav-plugin-advanced-pagecache
keywords: "static, cache, plugin,... | Add missing options to the blueprint | Add missing options to the blueprint | YAML | mit | getgrav/grav-plugin-advanced-pagecache,cord/grav-plugin-advanced-pagecache |
75eebf82b674f188f58eb1a8ab2afe9c6779745c | vars/production.yml | vars/production.yml | ---
domain: "digitalmarketplace.service.gov.uk"
maintenance_mode: live
instances: 5
router:
instances: 3
rate_limiting_enabled: enabled
routes:
- dm-router-{env}.cloudapps.digital
- dm-router-{env}.cloudapps.digital/_metrics
- www.digitalmarketplace.service.gov.uk
- api.digitalmarketplace.service... | ---
domain: "digitalmarketplace.service.gov.uk"
maintenance_mode: live
instances: 5
router:
instances: 3
rate_limiting_enabled: enabled
routes:
- dm-router-{env}.cloudapps.digital
- dm-router-{env}.cloudapps.digital/_metrics
- www.digitalmarketplace.service.gov.uk
- api.digitalmarketplace.service... | Scale app memory for G12 | Scale app memory for G12
| YAML | mit | alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws |
d34eef379e20433d8e12df6f20612eae8c070c43 | wercker.yml | wercker.yml | box: cosyverif/lua-environments
build:
steps:
- script:
name: "install dependencies"
code: |
luarocks install luasec
luarocks install luacov-coveralls
- script:
name: "check and test"
code: |
./bin/test /lua/
after-steps:
- script:
na... | box: cosyverif/lua-environments
build:
steps:
- script:
name: "install dependencies"
code: |
luarocks install luacov-coveralls
- script:
name: "check and test"
code: |
./bin/test /lua/
after-steps:
- script:
name: "export to coveralls"
... | Remove luasec dependency already in lua-environments. | Remove luasec dependency already in lua-environments.
| YAML | mit | saucisson/lua-layeredata,saucisson/layeredata,cosyverif/layeredata |
10e18eb398dd855f8425190c394f4d6d4345d048 | ci/pipeline.yml | ci/pipeline.yml | steps:
- command: docker-compose build && docker-compose run api ci/server_cukes.sh
label: "Server Specs"
- command: docker-compose build && docker-compose run api ci/server_specs.sh
| steps:
- command: docker-compose build && docker-compose run api ci/server_cukes.sh
label: "Server Cukes"
- command: docker-compose build && docker-compose run api ci/server_specs.sh
label: "Server Specs"
| Add a label to CI step | Add a label to CI step
| YAML | mit | anicholson/mode-mode,anicholson/mode-mode,anicholson/mode-mode,anicholson/mode-mode |
1adc92d66bc3642b442aff4737f18702281d8c1f | cloudbuild.yaml | cloudbuild.yaml | # See https://cloud.google.com/cloud-build/docs/build-config
steps:
- name: gcr.io/cloud-builders/docker
entrypoint: /usr/bin/make
args:
- push-images
- TAG=$_GIT_TAG
substitutions:
# variables set by kubernetes/test-infra/images/builder
# set by image-builder to vYYYYMMDD-hash
_GIT_TAG: "12345"
| # See https://cloud.google.com/cloud-build/docs/build-config
steps:
- name: gcr.io/cloud-builders/docker
entrypoint: "/usr/bin/make"
args:
- "push-images"
- "TAG=$_GIT_TAG"
- name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
entrypoint: "/usr/bin/gcloud"
args:
- "run"
- "servi... | Add auto-deploy to CloudRun regions | Add auto-deploy to CloudRun regions
| YAML | apache-2.0 | kubernetes/registry.k8s.io,kubernetes/registry.k8s.io |
e0ffdcbfe3889bddefa4431037f2d8357b649db8 | meta.yaml | meta.yaml | package:
name: 3scan-shared
version: {{ environ.get('GIT_DESCRIBE_TAG', "0.0.0") }}
source:
path: "."
build:
# The build number should be incremented for new builds of the same version
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
script: python setup.py install
requirements:
# Packages required... | package:
name: 3scan-shared
version: {{ environ.get('GIT_DESCRIBE_TAG', "0.0.0") }}
source:
git_url: "."
build:
# The build number should be incremented for new builds of the same version
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
script: python setup.py install
requirements:
# Packages requi... | Change git url to . | Change git url to .
| YAML | bsd-2-clause | meawoppl/conda-git-regression |
2318fa00e4c66d6a0b46dcc4d2a99e716d363d7e | .kitchen.yml | .kitchen.yml | driver:
name: vagrant
provisioner:
name: chef_zero
verifier:
name: inspec
platforms:
- name: centos-5.11
- name: centos-6.8
- name: centos-7.2
- name: debian-7.11
- name: debian-8.5
- name: fedora-24
run_list: yum::dnf_yum_compat
- name: opensuse-13.2
- name: opensuse-42.1
- name: ubuntu-... | driver:
name: vagrant
provisioner:
name: chef_zero
verifier:
name: inspec
platforms:
- name: centos-5.11
- name: centos-6.8
- name: centos-7.2
- name: debian-7.11
- name: debian-8.6
- name: fedora-25
run_list: yum::dnf_yum_compat
- name: opensuse-13.2
- name: opensuse-42.1
- name: ubuntu-... | Update Test Kitchen platforms to the latest | Update Test Kitchen platforms to the latest
| YAML | apache-2.0 | opscode-cookbooks/sudo,cringdahl/sudo,opscode-cookbooks/sudo,juliandunn/sudo,bcg62/sudo,autarchprinceps/sudo,cringdahl/sudo,chef-cookbooks/sudo,opscode-cookbooks/sudo,chef-cookbooks/sudo,bcg62/sudo,juliandunn/sudo,autarchprinceps/sudo |
3b9f4b2cf8e527725c14187e6bb843598d542692 | .kitchen.yml | .kitchen.yml | ---
driver:
name: ec2
aws_access_key_id: <%= ENV['AWS_ACCESS_KEY'] %>
aws_secret_access_key: <%= ENV['AWS_SECRET_KEY'] %>
aws_ssh_key_id: aws_dev
ssh_key: <%= ENV['HOME'] %>/.ssh/aws_dev.pem
region: us-east-1
availability_zone: us-east-1b
security_group_ids: ['ci-testing']
flavor_id: c3.xlarge
requi... | ---
driver:
name: ec2
aws_access_key_id: <%= ENV['AWS_ACCESS_KEY'] %>
aws_secret_access_key: <%= ENV['AWS_SECRET_KEY'] %>
aws_ssh_key_id: aws_dev
ssh_key: <%= ENV['HOME'] %>/.ssh/aws_dev.pem
region: us-east-1
availability_zone: us-east-1b
security_group_ids: ['ci-testing']
flavor_id: c3.xlarge
requi... | Add testing for Ubuntu 14.04, use better EC2 names | Add testing for Ubuntu 14.04, use better EC2 names
| YAML | apache-2.0 | evertrue/storage-cookbook |
c19ec33f0073ef7aea7f35fe7f280fd9f9fc6d5e | .rubocop.yml | .rubocop.yml | inherit_from: .rubocop_todo.yml
# Exclude any vendored gems
AllCops:
Exclude:
- 'vendor/**/*'
NewCops: enable
TargetRubyVersion: 2.4
# Be lenient with line length
Layout/LineLength:
Max: 92
# Multi-line method calls should be simply indented. Aligning them makes it
# even harder to keep a sane line lengt... | inherit_from: .rubocop_todo.yml
# Exclude any vendored gems
AllCops:
Exclude:
- 'vendor/**/*'
NewCops: enable
TargetRubyVersion: 2.4
# Be lenient with line length
Layout/LineLength:
Max: 92
# Multi-line method calls should be simply indented. Aligning them makes it
# even harder to keep a sane line lengt... | Allow else clauses with explicit nil value | Allow else clauses with explicit nil value
| YAML | mit | ActsAsParanoid/acts_as_paranoid |
b2433b5ceffd8cbeca3ea115dd63546908f82040 | .rubocop.yml | .rubocop.yml | # Don't enforce top-level class and module documentation
Style/Documentation:
Enabled: false
# Don't enforce underscores for large numeric values
Style/NumericLiterals:
Enabled: false
# Don't enforce implicit return
Style/RedundantReturn:
Enabled: false
# Don't enforce implicit self
Style/RedundantSelf:
Enab... | # Allow methods of up to 20 lines of code
Metrics/MethodLength:
Max: 20
# Don't enforce top-level class and module documentation
Style/Documentation:
Enabled: false
# Don't enforce underscores for large numeric values
Style/NumericLiterals:
Enabled: false
# Don't enforce implicit return
Style/RedundantReturn:
... | Allow lines of up to 20 lines of code | Rubocop: Allow lines of up to 20 lines of code
| YAML | mit | codeunion/ruby-exercises,TravisIngram/javascript_code_katas,TravisIngram/javascript_code_katas,chrisswk/ruby-exercises |
f357fb4ea7221ef49fb224d28278e0ed4fe4bcd4 | .rubocop.yml | .rubocop.yml | AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
TargetRubyVersion: 2.0
Style/ClassAndModuleChildren:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/SpaceAroundEqualsInParameterDefault:
EnforcedStyle: no_space
Style/StringLiterals:
Enforced... | AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
TargetRubyVersion: 2.0
Style/ClassAndModuleChildren:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/SpaceAroundEqualsInParameterDefault:
EnforcedStyle: no_space
Style/StringLiterals:
Enforced... | Disable a couple of cops for discussion | Disable a couple of cops for discussion
| YAML | mit | kylerippey/capistrano,ngpestelos/capistrano,jdelStrother/capistrano,capistrano/capistrano,kylerippey/capistrano,maliqq/capistrano,harrykiselev/capistrano,jdelStrother/capistrano,ngpestelos/capistrano,maliqq/capistrano,harrykiselev/capistrano,capistrano/capistrano |
d511af5a3e041f68568dd78be7de3b2ce5dd6609 | Resources/config/routing/product_attribute.yml | Resources/config/routing/product_attribute.yml | sylius_admin_product_attribute:
resource: |
alias: sylius.product_attribute
section: admin
templates: SyliusAdminBundle:Crud
except: ['show', 'create']
redirect: update
grid: sylius_admin_product_attribute
vars:
all:
subheader: syli... | sylius_admin_product_attribute:
resource: |
alias: sylius.product_attribute
section: admin
templates: SyliusAdminBundle:Crud
except: ['show', 'create']
redirect: update
grid: sylius_admin_product_attribute
vars:
all:
subheader: syli... | Fix typo in the translation key for product attributes | [Admin] Fix typo in the translation key for product attributes
| YAML | mit | Sylius/SyliusAdminBundle,Sylius/SyliusAdminBundle |
c1fd7280d4ddac10b2c436bdbde0bf7f88cee1db | zuul.d/project.yaml | zuul.d/project.yaml | - project:
templates:
- openstack-lower-constraints-jobs-neutron
- openstack-python3-victoria-jobs-neutron
- publish-openstack-docs-pti
- check-requirements
- release-notes-jobs-python3
| - project:
templates:
- openstack-lower-constraints-jobs-neutron
- openstack-python3-wallaby-jobs-neutron
- publish-openstack-docs-pti
- check-requirements
- release-notes-jobs-python3
| Add Python3 wallaby unit tests | Add Python3 wallaby unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for wallaby.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: Ie34dda6a1cf2a844a9c3e92162c2eea... | YAML | apache-2.0 | openstack/networking-sfc,openstack/networking-sfc |
5989563bf8815601024fe11250168b853fbe92f5 | zuul.d/project.yaml | zuul.d/project.yaml | - project:
check:
jobs:
- bifrost-integration-tinyipa
- bifrost-integration-tinyipa-opensuse-423
# Non-voting jobs
- bifrost-integration-dhcp:
voting: false
- bifrost-integration-dhcp-opensuse-423:
voting: false
- bifrost-integration-dhcp... | - project:
check:
jobs:
- bifrost-integration-tinyipa
- bifrost-integration-tinyipa-fedora26
- bifrost-integration-tinyipa-opensuse-423
# Non-voting jobs
- bifrost-integration-dhcp:
voting: false
- bifrost-integration-dhcp-opensuse-423:
v... | Make Fedora26 CI job voting | Make Fedora26 CI job voting
Change-Id: I4a37c7533628418f23582db225b8a679e7a04f8c
| YAML | apache-2.0 | openstack/bifrost,openstack/bifrost |
aa0d60443521f4b3e396489bad34ab4ab7926937 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/pundle
docker:
- image: circleci/node:8
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
- yarn-packages-{{ .Branch }... | version: 2
jobs:
build:
working_directory: ~/pundle
docker:
- image: node:8-jessie
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
- yarn-packages-{{ .Branch }}
... | Use node official docker images instead | :art: Use node official docker images instead
| YAML | mit | steelbrain/pundle,steelbrain/pundle,steelbrain/pundle,motion/pundle |
c7f34f10721c39d28025abdace4852f34ca45c2e | .circleci/config.yml | .circleci/config.yml | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.1@sha256:d6f063b0a12ec7059d866f0819e8453c90a05710e26266e91a1dd5d8d3678dbb
working_directory: ~/repo
steps:
- checko... | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.1@sha256:3f14ef64bad2cca6fc88c9e497ef8032bac44f8f8a8f213135592413ea699e15
working_directory: ~/repo
steps:
- checko... | Update circleci/python:3.7.1 Docker digest to 3f14ef6 | Update circleci/python:3.7.1 Docker digest to 3f14ef6 | YAML | bsd-3-clause | kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler |
681cb1d628c6ec564e632085a6dd360cfd1b1d62 | .circleci/config.yml | .circleci/config.yml | version: 2.1 # use CircleCI 2.0
jobs: # a collection of steps
build:
# Remove if parallelism is not desired
parallelism: 2
environment:
_JAVA_OPTIONS: "-Xmx3g"
GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dorg.gradle.workers.max=2"
docker:
- image: circleci/openjdk:11.0.3-jdk-stretch
... | version: 2.1
workflows:
version: 2
workflow:
jobs:
- build
context:
- SonarCloud
jobs: # a collection of steps
build:
# Remove if parallelism is not desired
parallelism: 2
environment:
_JAVA_OPTIONS: "-Xmx3g"
GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dorg.gra... | Return of the retard CircleCIâworkflows:ix™ - Round 2 | fix: Return of the retard CircleCIâworkflows:ix™ - Round 2
| YAML | apache-2.0 | Hexworks/zircon,Hexworks/zircon,Hexworks/zircon |
d3235f9b5e4bc028ae3475c7b34af2e230050676 | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
orb: invocations/orb@1.0.2
workflows:
main:
jobs:
- orb/lint:
name: Lint
- orb/format:
name: Style check
- orb/coverage:
name: Test 3.6 (w/ coverage)
- orb/test-release:
name: Release test
- orb/test:
name: Test... | version: 2.1
orbs:
orb: invocations/orb@1.0.3
workflows:
main:
jobs:
- orb/lint:
name: Lint
- orb/format:
name: Style check
# Main test run, w/ coverage, and latest-supported cryptography
- orb/coverage:
name: Test 3.6 (w/ coverage, latest crypto)
# ... | Add some older crypto versions to new 2nd py3.6 test step | Add some older crypto versions to new 2nd py3.6 test step
(no coverage for this one tho)
| YAML | lgpl-2.1 | paramiko/paramiko |
a51b0761fc0c87a16fc45123b001f9cef6bf4b71 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/iypm
docker:
- image: minn/node-awscli:latest
steps:
- checkout
- restore_cache:
key: deps-{{ checksum "package.json" }}
- run: yarn install
- save_cache:
key: deps-{{ checksum "package.json" }}
paths:... | version: 2
jobs:
build:
working_directory: ~/iypm
docker:
- image: minn/node-awscli:latest
steps:
- checkout
- restore_cache:
key: deps-{{ checksum "package.json" }}
- run: yarn install
- save_cache:
key: deps-{{ checksum "package.json" }}
paths:... | Add workaround to allow CircleCI to trigger on tag push | Add workaround to allow CircleCI to trigger on tag push
| YAML | mpl-2.0 | MinnSoe/ifyoupayme,MinnSoe/ifyoupayme,MinnSoe/ifyoupayme |
8da3642c71fcecb7188d6c20a0210670168c9f3b | docker-compose.yaml | docker-compose.yaml | version: '2'
services:
hhvm:
container_name: app-hhvm
image: hhvm/hhvm:3.15.2
entrypoint: hhvm -m server -c /etc/hhvm/server.ini
volumes:
- ./config/app.local.ini:/etc/hhvm/server.ini
- ./app:/var/www/app
- ./deps:/var/www/deps
- ./app/main.php:/var/www/document_root/main.php
... | version: '2'
services:
hhvm:
container_name: app-hhvm
image: hhvm/hhvm:3.15.2
entrypoint: hhvm -m server -c /etc/hhvm/server.ini
volumes:
- ./config/app.ini:/etc/hhvm/server.ini
- ./app:/var/www/app
- ./deps:/var/www/deps
- ./app/main.php:/var/www/document_root/main.php
-... | Use provided HHVM config by default | Docker-Compose: Use provided HHVM config by default
| YAML | mit | raeesbhatti/boilerplate,raeesbhatti/boilerplate |
e6271e8099bd6656d55c4e561bead3ef6374ff9c | docker-compose.yaml | docker-compose.yaml | version: '3.7'
services:
api:
image: node
container_name: k-app-api
ports:
- 3000:3000
volumes:
- .:/k-app
depends_on:
- mysql
- mongo
entrypoint:
- /bin/sh
- -c
- |
cd k-app
echo "Install dependencies with yarn"
yarn
ya... | version: '3.7'
services:
api:
image: node:lts
container_name: k-app-api
ports:
- 3000:3000
volumes:
- .:/k-app
depends_on:
- mysql
- mongo
entrypoint:
- /bin/sh
- -c
- |
cd k-app
echo "Install dependencies with yarn"
yarn
... | Update node version in docker compose | Update node version in docker compose
| YAML | apache-2.0 | K-Fet/K-App,K-Fet/K-App,K-Fet/K-App,K-Fet/K-App |
7563844b49b4aab232508a0e5b7491c2e4697f4a | packages/gh/GHood.yaml | packages/gh/GHood.yaml | homepage: http://www.cs.kent.ac.uk/people/staff/cr3/toolbox/haskell/GHood
changelog-type: ''
hash: 60e7362ed3bb7af6cfbb6db5a252789699b53eded22b46c74ea6366f8ac9f6a2
test-bench-deps: {}
maintainer: Hugo Pacheco <hpacheco@di.uminho.pt>
synopsis: A graphical viewer for Hood
changelog: ''
basic-deps:
base: ! '>=3 && <6'
... | homepage: http://www.cs.kent.ac.uk/people/staff/cr3/toolbox/haskell/GHood
changelog-type: ''
hash: 600af87e6de63976a8f2647d2073653860b5860632646cf1205b1d8714a689cb
test-bench-deps: {}
maintainer: Hugo Pacheco <hpacheco@di.uminho.pt>
synopsis: A graphical viewer for Hood
changelog: ''
basic-deps:
base: ! '>=3 && <6'
... | Update from Hackage at 2015-09-08T13:18:20+0000 | Update from Hackage at 2015-09-08T13:18:20+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
7db93314a0b7f76ffcfe67446d7d7e83d284a181 | packages/so/solar.yaml | packages/so/solar.yaml | homepage: https://github.com/tsahyt/solar#readme
changelog-type: ''
hash: f7ceda8d2251a7d86f685d66eb22bc30d5cddf3458793d3b26b031b27b2a1816
test-bench-deps: {}
maintainer: paul@tsahyt.com
synopsis: Simple library for solar calculations
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: ! '>=1.8 && <1.10'
all-vers... | homepage: https://github.com/tsahyt/solar#readme
changelog-type: ''
hash: 499ba03876cb045b5b8314285eedde11dd29d4bbf981c81bf908c69e99418764
test-bench-deps: {}
maintainer: paul@tsahyt.com
synopsis: Simple library for solar calculations
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: ! '>=1.8 && <1.10'
all-vers... | Update from Hackage at 2019-04-27T07:06:43Z | Update from Hackage at 2019-04-27T07:06:43Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
bc2e4b1d583a6f3b52c9f91f8f02bd1f8481053c | metadata/site.leos.apps.lespas.yml | metadata/site.leos.apps.lespas.yml | Categories:
- Graphics
- Multimedia
License: Apache-2.0
SourceCode: https://github.com/scubajeff/lespas
IssueTracker: https://github.com/scubajeff/lespas/issues
Changelog: https://github.com/scubajeff/lespas/releases
AutoName: Les Pas
RepoType: git
Repo: https://github.com/scubajeff/lespas
Builds:
- versionNam... | Categories:
- Graphics
- Multimedia
License: Apache-2.0
SourceCode: https://github.com/scubajeff/lespas
IssueTracker: https://github.com/scubajeff/lespas/issues
Changelog: https://github.com/scubajeff/lespas/releases
AutoName: Les Pas
RepoType: git
Repo: https://github.com/scubajeff/lespas
Builds:
- versionNam... | Update Les Pas to 1.3 (4) | Update Les Pas to 1.3 (4)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
b58040d4bfcea1742f2d4607aa125a6a8b9b9ad8 | _glynn.yml | _glynn.yml | # Glynn setup
ftp_host: '78.47.17.26'
ftp_dir: '/public_html'
ftp_passive: true
# optional
ftp_port: 21 # default 21
ftp_secure: false # default false
# credentials
| # Glynn setup
ftp_host: 'dedi302.your-server.de'
ftp_dir: '/public_html'
ftp_passive: true
# optional
ftp_port: 21 # default 21
ftp_secure: false # default false
# credentials
| Set server name not IP. | Set server name not IP.
| YAML | mit | FctsFxns/schultzen-web,FctsFxns/schultzen-web,FctsFxns/schultzen-web,FctsFxns/schultzen-web |
8a1a0a6ae90af1fc50c03770f0d0ecc13d61d94e | appveyor.yml | appveyor.yml | os: Visual Studio 2015
platform: x64
install:
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
- choco install strawberryperl
- SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
- git clone https://github.com/rakudo/rakudo.git %APPVEYOR_BUILD_FOLDER%\... | os: Visual Studio 2015
platform: x64
install:
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
- choco install strawberryperl
- SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
- git clone https://github.com/rakudo/rakudo.git %APPVEYOR_BUILD_FOLDER%\... | Remove copy&paste code that made AppVeyor CI fail | Remove copy&paste code that made AppVeyor CI fail
| YAML | mit | azawawi/perl6-opencv,azawawi/perl6-opencv |
25f0da79c0c0fd54f341fa0163972e373f0e103d | docs/antora.yml | docs/antora.yml | name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: '1.5'
nav:
- modules/ROOT/nav.adoc
| name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: 'master'
nav:
- modules/ROOT/nav.adoc
| Switch back the docs version | Switch back the docs version
| YAML | mit | tejasbubane/rubocop,tdeo/rubocop,rrosenblum/rubocop,maxjacobson/rubocop,rrosenblum/rubocop,rrosenblum/rubocop,maxjacobson/rubocop,bbatsov/rubocop,bbatsov/rubocop,tdeo/rubocop,tejasbubane/rubocop,maxjacobson/rubocop,tejasbubane/rubocop,tdeo/rubocop |
57e5f2af6092064bceaef4557e231f75a18a655f | ci/tasks/integration-test.yml | ci/tasks/integration-test.yml | ---
platform: linux
image_resource:
type: docker-image
source: {repository: bodymindarts/delmo-pipeline}
inputs:
- name: delmo
path: delmo/src/github.com/bodymindarts/delmo
- name: delmo-ci
params:
AWS_ACCESS_KEY_ID:
AWS_SECRET_ACCESS_KEY:
AWS_REGION:
AWS_BUCKET:
machine_name: delmo-pipeline-machine
... | ---
platform: linux
image_resource:
type: docker-image
source: {repository: bodymindarts/delmo-pipeline}
inputs:
- name: delmo
path: delmo/src/github.com/bodymindarts/delmo
- name: delmo-ci
params:
AWS_ACCESS_KEY_ID:
AWS_SECRET_ACCESS_KEY:
AWS_REGION:
AWS_BUCKET:
machine_name: delmo-pipeline-machine
... | Fix path to integration test | Fix path to integration test
| YAML | apache-2.0 | bodymindarts/delmo,bodymindarts/delmo,bodymindarts/delmo |
31d66f021883c8035d13957817598d9a8266232a | .github/workflows/gradle.yml | .github/workflows/gradle.yml | name: Java CI (build h2o-genmodel, run JUnit smoke tests)
on:
push:
branches:
- master
- rel-*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build h2o-g... | name: Java CI (build h2o-genmodel, run JUnit smoke tests)
on:
push:
branches:
- master
- rel-*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build h2o-g... | Exclude multinode in github action | Exclude multinode in github action | YAML | apache-2.0 | h2oai/h2o-3,h2oai/h2o-3,michalkurka/h2o-3,michalkurka/h2o-3,h2oai/h2o-3,h2oai/h2o-3,h2oai/h2o-3,michalkurka/h2o-3,h2oai/h2o-3,michalkurka/h2o-3,michalkurka/h2o-3,michalkurka/h2o-3,h2oai/h2o-3,michalkurka/h2o-3,h2oai/h2o-3 |
be8f85371adc2c7cca1af22a451260a5ade0395d | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: build
on:
push:
branches:
- master
# Run tests for any PRs.
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x,16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: ac... | name: build
on:
push:
branches:
- master
# Run tests for any PRs.
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x,16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: ac... | Update actions/setup-node action to v2.5.0 | Update actions/setup-node action to v2.5.0
| YAML | mit | personnummer/js,personnummer/js |
5ac17edd7f6e7bce00775c655fd1e4ec7ed56fb2 | opsfiles/docker/docker-compose.yml | opsfiles/docker/docker-compose.yml | web:
image: phanbook/nginx
ports:
- "80:80"
volumes:
- ./:/var/www/html
- ./opsfiles/docker/templates/nginx/phanbook.conf:/etc/nginx/sites-enabled/default
links:
- php
php:
image: phanbook/php
volumes:
- ./opsfiles/docker/templates/php-fpm.conf:/etc/php5/fpm/php-fpm.conf
- ./:/var/ww... | web:
image: phanbook/nginx
ports:
- "80:80"
volumes:
- ./:/var/www/html
- ./opsfiles/docker/templates/phanbook.conf:/etc/nginx/sites-enabled/default
links:
- php
php:
image: phanbook/php
volumes:
- ./opsfiles/docker/templates/php-fpm.conf:/etc/php5/fpm/php-fpm.conf
- ./:/var/www/html... | Add templates config docker agian | Add templates config docker agian
| YAML | bsd-3-clause | duythien/phanbook,duythien/phanbook,duythien/phanbook |
a3fc9693b5de5bdacd46ae2fbd56d90373a458f9 | ready.yml | ready.yml | repo: PubMedMiner.jl
site_name: PubMedMiner
maintainers:
- name: Ian Bacher
github_user: ibacher
repo_url: https://github.com/bcbi/PubMedMiner.jl
site_description: Tool to visually explore MeSH descriptors of MEDLINE/PubMed articles.
site_url: https://bcbi.brown.edu/PubMedMiner
type: web_app | repo: PubMedMiner.jl
site_name: PubMedMiner
maintainers:
- name: Ian Bacher
github_user: ibacher
repo_url: https://github.com/bcbi/PubMedMiner.jl
site_description: Tool to visually explore MeSH descriptors of MEDLINE/PubMed articles.
site_url: https://bcbi.brown.edu/PubMedMiner
type: web_app
| Add new line at end of file | Add new line at end of file
| YAML | mit | bcbi/PubMedMiner.jl |
9ead53346a9f5bb9d28c50c8b67e9643c7d5489f | tests/common_tests.yml | tests/common_tests.yml | ---
# Common tests between local Vagrant and Travis
- name : Jenkins repository key should exists
become : True
apt_key :
url : "{{ jenkins_repository_key_url }}"
register : jenkins_apt_key_test
when :
- ansible_os_family == "Debian"
- fail :
msg : "Key import task change if we import twice"
wh... | ---
# Common tests between local Vagrant and Travis
- name : Jenkins repository key should exists
become : True
apt_key :
url : "{{ jenkins_repository_key_url }}"
register : jenkins_apt_key_test
when :
- ansible_os_family == "Debian"
- name : Fail if Jenkins repository key reimport change
fail :
... | Add a name for fail task into common test | Add a name for fail task into common test
| YAML | mit | infOpen/ansible-role-jenkins |
76bed2a0bd07347ffcacab4ac8c75464643dcd6e | playbooks/base-test/post-logs.yaml | playbooks/base-test/post-logs.yaml | - hosts: localhost
roles:
- role: add-fileserver
fileserver: "{{ site_logs }}"
- emit-ara-html
post_tasks:
- name: Copy inventory to logs dir
copy:
src: "{{ inventory_file }}"
dest: "{{ zuul.executor.log_root }}"
- hosts: "{{ site_logs.fqdn }}"
roles:
- upload-logs
... | - hosts: localhost
roles:
- role: add-fileserver
fileserver: "{{ site_logs }}"
- emit-ara-html
post_tasks:
- name: Copy inventory to logs dir
copy:
src: "{{ inventory_file }}"
dest: "{{ zuul.executor.log_root }}"
- hosts: "{{ site_logs.fqdn }}"
roles:
- upload-logs
... | Update base-test to remove non-existent group | Update base-test to remove non-existent group
Change-Id: I9af31ce73ac98c51cb534a133f0da3a7d8314428
| YAML | apache-2.0 | openstack-infra/project-config,openstack-infra/project-config |
4c6ee4d232c271226daf479800a756bc7a73837c | core/config/elasticsearch.yml | core/config/elasticsearch.yml | development:
elasticsearch:
hostname: localhost
port: 9200
cluster: factlink_development
test:
elasticsearch:
hostname: localhost
port: 9200
cluster: factlink_test
testserver:
elasticsearch:
hostname: localhost
port: 9200
cluster: factlink_testserver
staging:
elasticsearch... | development:
elasticsearch:
hostname: localhost
port: 9200
cluster: factlink_development
test:
elasticsearch:
hostname: localhost
port: 9200
cluster: factlink_test
testserver:
elasticsearch:
hostname: 89.188.27.177
port: 9200
cluster: factlink_testserver
staging:
elasticse... | Use dedicated ElasticSearch server for testserver environment | Use dedicated ElasticSearch server for testserver environment
| YAML | mit | daukantas/factlink-core,daukantas/factlink-core,Factlink/factlink-core,Factlink/factlink-core,daukantas/factlink-core,daukantas/factlink-core,Factlink/factlink-core,Factlink/factlink-core |
73c1ddd6f1390dea64dc9e75617f76c7300030e2 | gke/rc/adminweb.yml | gke/rc/adminweb.yml | kind: ReplicationController
apiVersion: v1
metadata:
name: adminweb
spec:
replicas: 3
selector:
name: adminweb
group: octav
template:
metadata:
labels:
name: adminweb
group: octav
spec:
volumes:
- name: github
secret:
secretName: github-d... | kind: ReplicationController
apiVersion: v1
metadata:
name: adminweb
spec:
replicas: 3
selector:
name: adminweb
group: octav
template:
metadata:
labels:
name: adminweb
group: octav
spec:
volumes:
- name: github
secret:
secretName: github-d... | Create the proper google map credentials | Create the proper google map credentials
| YAML | mit | builderscon/octav,builderscon/octav,builderscon/octav,builderscon/octav |
15b106b299d10c5219789d07494f2e521301cff9 | snapcraft.yaml | snapcraft.yaml | name: ipfs
version: master
summary: global, versioned, peer-to-peer filesystem
description: |
IPFS combines good ideas from Git, BitTorrent, Kademlia, SFS, and the Web.
It is like a single bittorrent swarm, exchanging git objects. IPFS provides
an interface as simple as the HTTP web, but with permanence built in.... | name: ipfs
version: master
summary: global, versioned, peer-to-peer filesystem
description: |
IPFS combines good ideas from Git, BitTorrent, Kademlia, SFS, and the Web.
It is like a single bittorrent swarm, exchanging git objects. IPFS provides
an interface as simple as the HTTP web, but with permanence built in.... | Add make to build depencencies | Add make to build depencencies
| YAML | mit | elopio/ipfs-snap |
bcb97d61bb57432fa3c45693e3ab6f5ad708980b | recipes/borb/meta.yaml | recipes/borb/meta.yaml | {% set name = "borb" %}
{% set version = "2.0.8.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/borb-{{ version }}.tar.gz
sha256: e49e01142cf66b2e6c1502920dace35ae56fc688d70f01fdfc6b4e51ffb19f66
build:
number: 0
noarch: p... | {% set name = "borb" %}
{% set version = "2.0.8.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/borb-{{ version }}.tar.gz
sha256: e49e01142cf66b2e6c1502920dace35ae56fc688d70f01fdfc6b4e51ffb19f66
build:
number: 0
noarch: p... | Remove all dependency version requirements for now | Remove all dependency version requirements for now
| YAML | bsd-3-clause | hadim/staged-recipes,ReimarBauer/staged-recipes,johanneskoester/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,conda-forge/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,jochym/staged-recipes,kwilcox/staged-... |
fa33b74270aa2b6b69a088a5fba837df25e8a455 | recipes/dionysus/meta.yaml | recipes/dionysus/meta.yaml | {% set name = "dionysus" %}
{% set version = "2.0.2" %}
{% set sha256 = "78c24da06fd273f0103ad4cb86331f5f4518d7f0445e2cecd0e325ca1a2d011f" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ ... | {% set name = "dionysus" %}
{% set version = "2.0.2" %}
{% set sha256 = "78c24da06fd273f0103ad4cb86331f5f4518d7f0445e2cecd0e325ca1a2d011f" %}
{% set build_number = "1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ ve... | Add clangdev to requirements to avoid old versions of GCC | Add clangdev to requirements to avoid old versions of GCC
| YAML | bsd-3-clause | barkls/staged-recipes,conda-forge/staged-recipes,mariusvniekerk/staged-recipes,sannykr/staged-recipes,basnijholt/staged-recipes,rmcgibbo/staged-recipes,cpaulik/staged-recipes,petrushy/staged-recipes,stuertz/staged-recipes,pmlandwehr/staged-recipes,jochym/staged-recipes,chrisburr/staged-recipes,ocefpaf/staged-recipes,sh... |
e4a675aca37f724e56cdb149369cadb87cf47735 | .vsts/linux-build.yml | .vsts/linux-build.yml | queue:
name: Hosted Linux
steps:
- task: DotNetCoreInstaller@0
inputs:
version: "2.0.3"
- task: DotNetCoreCLI@1
inputs:
command: "restore"
projects: "*.sln"
- task: DotNetCoreCLI@1
inputs:
command: "build"
projects: "*.sln"
arguments: "--configuration Release"
- task: DotNetCoreCLI@1
... | queue:
name: Hosted Linux
steps:
- task: DotNetCoreInstaller@0
inputs:
version: "2.0.3"
- task: DotNetCoreCLI@1
inputs:
command: "restore"
projects: "*.sln"
- task: DotNetCoreCLI@1
inputs:
command: "build"
projects: "*.sln"
arguments: "--configuration Release"
- task: DotNetCoreCLI@1
... | Modify linux build def to publix trx files correctly | Modify linux build def to publix trx files correctly
| YAML | mit | pharring/ApplicationInsights-dotnet,pharring/ApplicationInsights-dotnet,Microsoft/ApplicationInsights-dotnet,pharring/ApplicationInsights-dotnet |
f29d04dcf903fc6ac10f276badaff3edf3f09b7a | .zuul.yaml | .zuul.yaml | - project:
name: openstack-infra/shade
check:
jobs:
- openstack-doc-build
- tox-py35
| - project:
name: openstack-infra/shade
templates:
- publish-to-pypi
- publish-openstack-python-docs
check:
jobs:
- openstack-doc-build
- tox-py35
| Add pypi and doc publication templates | Add pypi and doc publication templates
Change-Id: Iaa2b3742d04135a6da35f42f4a787937b9bc81eb
Depends-On: I01ea35061ba92c2e466c6269c61e640461d6da99
Depends-On: I4f1aea66fcbb623f554ded4d7ce63ff4c1168e45
| YAML | apache-2.0 | openstack-infra/shade,openstack/python-openstacksdk,stackforge/python-openstacksdk,dtroyer/python-openstacksdk,openstack-infra/shade,stackforge/python-openstacksdk,dtroyer/python-openstacksdk,openstack/python-openstacksdk |
0e32928cf4a314f65d2ff1ef0bc817f0a9a6fc90 | .zuul.yaml | .zuul.yaml | - project:
templates:
- check-requirements
- designate-devstack-jobs
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python3-victoria-jobs
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
gate:
que... | - project:
templates:
- check-requirements
- designate-devstack-jobs
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python3-wallaby-jobs
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
gate:
queu... | Add Python3 wallaby unit tests | Add Python3 wallaby unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for wallaby.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I4798b73944b8e614e24759793a62520... | YAML | apache-2.0 | openstack/python-designateclient |
fd305b0d4d714c687065827713da4b6b1d1e6915 | post_tasks.yml | post_tasks.yml | ---
- set_fact: date="{{ ansible_date_time["date"]}}" time="{{ ansible_date_time["time"]}}"
- name: Register in file installed software
copy: content=id,{{ date }},{{ ansible_hostname }},{{ task }},{{ version }}\n dest=/var/lib/ansible/{{ task }}-{{ version }}.csv
- name: Push file to central_server
shell: echo "... | ---
- set_fact: date="{{ ansible_date_time["date"]}}" time="{{ ansible_date_time["time"]}}"
- name: Register in file installed software
copy: content=id,{{ date }},{{ ansible_hostname }},{{ task }},{{ version }}\n dest=/var/lib/ansible/{{ task }}-{{ version }}.csv
- name: Push file to central_server
shell: echo "... | Rename send_to_central_server in sync_log for easier understanding | Rename send_to_central_server in sync_log for easier understanding
| YAML | mit | ideascube/ansiblecube,ideascube/ansiblecube |
1c9c1bd64769e2e924a864eb3cd008c30c2b7ff2 | roles/gnome/tasks/main.yml | roles/gnome/tasks/main.yml | ---
- name: Remap CapsLock -> Ctrl, AltGr -> Alt
community.general.dconf:
key: "/org/gnome/desktop/input-sources/xkb-options"
value: "['ctrl:nocaps', 'lv3:ralt_alt']"
state: present
- name: Disable natural scroll
community.general.dconf:
key: "/org/gnome/desktop/peripherals/touchpad/natural-scroll"... | ---
- name: Remap CapsLock -> Ctrl, AltGr -> Alt
community.general.dconf:
key: "/org/gnome/desktop/input-sources/xkb-options"
value: "['ctrl:nocaps', 'lv3:ralt_alt']"
state: present
- name: Disable natural scroll
community.general.dconf:
key: "/org/gnome/desktop/peripherals/touchpad/natural-scroll"... | Allow sound volume above 100% | auto.gnome: Allow sound volume above 100%
| YAML | unlicense | cenouro/dotfiles |
d7bbd6eacea49557c0461ce39a53f3665ddc1b0e | tasks/start_monitor.yml | tasks/start_monitor.yml | ---
- name: activate monitor with upstart
file: >
path=/var/lib/ceph/mon/ceph-{{ ansible_hostname }}/{{ item }}
state=touch
owner=root
group=root
mode=0600
with_items:
- done
- upstart
when: ansible_distribution == "Ubuntu"
changed_when: false
- name: start and add that the monitor ... | ---
- name: activate monitor with upstart
file: >
path=/var/lib/ceph/mon/ceph-{{ ansible_hostname }}/{{ item }}
state=touch
owner=root
group=root
mode=0600
with_items:
- done
- upstart
when: ansible_distribution == "Ubuntu"
changed_when: false
- name: start and add that the monitor ... | Fix ceph version return code issue | Fix ceph version return code issue
fixes: #258
Signed-off-by: leseb <62d754cc350e84d3b1c32ae79f976f5348e74a40@redhat.com>
| YAML | apache-2.0 | staticfork/ansible-ceph-mon,ceph/ansible-ceph-mon |
b058e068b900261bc3beae5c01f812fd8e79909a | pubspec.yaml | pubspec.yaml | name: code_transformers
version: 0.1.0+2-dev
author: "Dart Team <misc@dartlang.org>"
description: Collection of utilities related to creating barback transformers.
homepage: http://www.dartlang.org
dependencies:
analyzer: ">=0.13.0 <0.14.0"
barback: ">=0.11.0 <0.13.0"
path: ">=0.9.0 <2.0.0"
source_maps: ">=0.9.... | name: code_transformers
version: 0.1.1
author: "Dart Team <misc@dartlang.org>"
description: Collection of utilities related to creating barback transformers.
homepage: http://www.dartlang.org
dependencies:
analyzer: ">=0.13.0 <0.14.0"
barback: ">=0.11.0 <0.13.0"
path: ">=0.9.0 <2.0.0"
source_maps: ">=0.9.0 <0.1... | Prepare to push another pre-release | Prepare to push another pre-release
R=jmesserly@google.com
Review URL: https://codereview.chromium.org//216723004
git-svn-id: 03ce01c0aef5575341110df69fddd5703b005ee4@34543 260f80e4-7a28-3924-810f-c04153c831b5
| YAML | bsd-3-clause | dart-lang/code_transformers,dart-archive/code_transformers |
02c9bdc42e84d135b08ab1af9a5847afdfc88034 | prow/cluster/monitoring/alertmanager-prow_secret.yaml | prow/cluster/monitoring/alertmanager-prow_secret.yaml | # Please replace '{{ api_url }}' below with the URL of slack incoming hook
# before `kubectl apply -f`
apiVersion: v1
kind: Secret
metadata:
name: alertmanager-prow
namespace: prow-monitoring
stringData:
alertmanager.yaml: |
global:
resolve_timeout: 5m
route:
group_by: ['job']
group_wai... | # Please replace '{{ api_url }}' below with the URL of slack incoming hook
# before `kubectl apply -f`
apiVersion: v1
kind: Secret
metadata:
name: alertmanager-prow
namespace: prow-monitoring
stringData:
alertmanager.yaml: |
global:
resolve_timeout: 5m
route:
group_by: ['alertname', 'job']
... | Add alertname into alert grouping | Add alertname into alert grouping
| YAML | apache-2.0 | cblecker/test-infra,dims/test-infra,michelle192837/test-infra,BenTheElder/test-infra,kubernetes/test-infra,fejta/test-infra,dims/test-infra,krzyzacy/test-infra,michelle192837/test-infra,brahmaroutu/test-infra,monopole/test-infra,cjwagner/test-infra,krzyzacy/test-infra,monopole/test-infra,michelle192837/test-infra,kuber... |
70cc169eee6bc5e955ddf001d0507ac601425705 | site/_config.yml | site/_config.yml | markdown: kramdown
highlighter: rouge
permalink: /news/:year/:month/:day/:title/
excerpt_separator: ""
encoding: utf-8
repository: https://github.com/apache/orc
jira: https://issues.apache.org/jira/browse
dist: https://www.apache.org/dist/orc
dist_mirror: https://www.apache.org/dyn/closer.cgi/orc
tag_url: https://gith... | markdown: kramdown
highlighter: rouge
permalink: /news/:year/:month/:day/:title/
excerpt_separator: ""
encoding: utf-8
repository: https://github.com/apache/orc
jira: https://issues.apache.org/jira/browse
dist: https://downloads.apache.org/orc
dist_mirror: https://www.apache.org/dyn/closer.cgi/orc
tag_url: https://git... | Move url for the apache dist. | Move url for the apache dist.
Signed-off-by: Owen O'Malley <54ea18af6a9d2f71f251392755b45ef039a9facd@apache.org>
| YAML | apache-2.0 | apache/orc,omalley/orc,apache/orc,omalley/orc,apache/orc,omalley/orc,omalley/orc,apache/orc,omalley/orc,omalley/orc,omalley/orc,apache/orc,apache/orc,apache/orc,apache/orc |
aa8bc604124abb7a866f2b05eb355a51d7c15eb4 | k8s/deployment.yaml | k8s/deployment.yaml | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
app: kube-cert-manager
name: kube-cert-manager
spec:
replicas: 1
template:
metadata:
labels:
app: kube-cert-manager
name: kube-cert-manager
spec:
containers:
- name: kube-cert-manager
image:... | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
app: kube-cert-manager
name: kube-cert-manager
spec:
replicas: 1
template:
metadata:
labels:
app: kube-cert-manager
name: kube-cert-manager
spec:
containers:
- name: kube-cert-manager
image:... | Add doc about staging vs production server | Add doc about staging vs production server
| YAML | apache-2.0 | PalmStoneGames/kube-cert-manager,PalmStoneGames/kube-cert-manager |
48a16b1c53139bccce4c5d7cb62a9fc72f580380 | config/prisons/SHI-stoke-heath.yml | config/prisons/SHI-stoke-heath.yml | ---
name: Stoke Heath
nomis_id: SHI
address:
- Market Drayton
- Shropshire
- TF9 2JL
adult_age: 10
email: visitsbooking.westmidlands@noms.gsi.gov.uk
enabled: true
estate: Stoke Heath
phone: 0300 060 6506
slots:
mon:
- 1400-1600
tue:
- 1400-1600
wed:
- 1400-1600
thu:
- 1400-1600
sat:
- 1400-1600
su... | ---
name: Stoke Heath
nomis_id: SHI
address:
- Market Drayton
- Shropshire
- TF9 2JL
adult_age: 10
email: visitsbooking.westmidlands@noms.gsi.gov.uk
enabled: true
estate: Stoke Heath
phone: 0300 060 6506
slots:
mon:
- 1400-1600
tue:
- 1400-1600
wed:
- 1400-1600
thu:
- 1400-1600
sat:
- 1400-1600
su... | Update Stoke Heath Christmas visit slots | Update Stoke Heath Christmas visit slots
Unbookable:
- Christmas Day
- Boxing Day
- 28th December
- New Year's Day | YAML | mit | ministryofjustice/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits |
5a8b89cb161ea136aaef9a3918a2fd25ad528660 | .pre-commit-config.yaml | .pre-commit-config.yaml | repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v2.2.1
hooks:
- id: trailing-whitespace
- id: flake8
entry: flake8 --ignore E402,W503,W504,E126
- id: check-added-large-files
exclude: '^.+?\.ttf$'
- id: debug-statements
- id: end-of-file-fixer
... | repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v2.2.1
hooks:
- id: trailing-whitespace
- id: flake8
entry: flake8 --ignore E402,W503,W504,E126
- id: check-added-large-files
exclude: '^.+?\.ttf$'
- id: debug-statements
- id: end-of-file-fixer
... | Update python import reorder module to use python3 | Update python import reorder module to use python3
We're in the new world now! | YAML | mit | DXCanas/content-curation,DXCanas/content-curation,DXCanas/content-curation,DXCanas/content-curation |
537dd3b95be9e83597bb63d1c8cec17c096cbe11 | .pre-commit-config.yaml | .pre-commit-config.yaml | # See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- ... | # See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- ... | Add vulture support to detect dead code | Add vulture support to detect dead code
| YAML | isc | jaj42/GraPhysio,jaj42/GraPhysio,jaj42/dyngraph |
72cc0d4769ed1a1f6cb05358edb5d34c468816a2 | .pre-commit-config.yaml | .pre-commit-config.yaml | exclude: docs
repos:
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.4.0
hooks:
- id: reorder-python-imports
language_version: python3
args: [--py3-plus]
- repo: https://github.com/ambv/black
rev: stable
hooks:
- id: black
args: [--line-length=7... | exclude: docs
repos:
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.4.0
hooks:
- id: reorder-python-imports
language_version: python3
args: [--py3-plus]
- repo: https://github.com/ambv/black
rev: stable
hooks:
- id: black
args: [--line-length=7... | Fix pre-commit to run python3 rather than python3.7 | Fix pre-commit to run python3 rather than python3.7
| YAML | mit | rochacbruno/dynaconf,rochacbruno/dynaconf,rochacbruno/dynaconf |
aa39b5e6d58d5df3e55c39be4e885c829b496e3e | packs/duo/actions/announce_success.yaml | packs/duo/actions/announce_success.yaml | ---
name: "announce_success"
runner_type: "announcement"
description: "Post a message to stream for Duo 2FA"
enabled: true
entry_point: ""
parameters:
experimental:
immutable: true
default: true
route:
default: "2fa"
uuid:
type: "string"
description: "UUID of a frozen action."
| ---
name: "announce_success"
runner_type: "announcement"
description: "Post a message to stream for Duo 2FA"
enabled: true
entry_point: ""
parameters:
experimental:
immutable: true
default: true
route:
default: "2fa"
uuid:
type: "string"
description: "UUID of a frozen action."
required: tr... | Make UUID required in Duo announcement | Make UUID required in Duo announcement
Makes UUID required in the announcement for Hubot two-factor auth.
| YAML | apache-2.0 | StackStorm/st2contrib,pearsontechnology/st2contrib,pearsontechnology/st2contrib,pidah/st2contrib,pidah/st2contrib,tonybaloney/st2contrib,tonybaloney/st2contrib,pearsontechnology/st2contrib,pearsontechnology/st2contrib,armab/st2contrib,armab/st2contrib,pidah/st2contrib,armab/st2contrib,StackStorm/st2contrib,StackStorm/s... |
5f0d8c067694a2a8c508488204abaabeee95e1cf | tasks/main.yml | tasks/main.yml | ---
- name: ensure homebrew/php is tapped
homebrew_tap: tap=homebrew/php
- name: ensure php56 is installed/updated
homebrew: name=php56 state=latest install_options=without-pear
- name: ensure composer is installed/updated
homebrew: name=composer state=latest
- name: ensure composer is installed/updated
home... | ---
- name: ensure homebrew/php is tapped
homebrew_tap: tap=homebrew/php
- name: ensure php56 is installed/updated
homebrew: name=php56 state=latest install_options=without-pear
- name: ensure composer is installed/updated
homebrew: name=composer state=latest
- name: ensure composer is installed/updated
home... | Set full path to drush in case it isn't in their path yet. | Set full path to drush in case it isn't in their path yet.
| YAML | mit | RealLukeMartin/short-stack-drupal,poetic/short-stack-drupal |
1d44442a9092aa58be687a487b7ee301df16c793 | roles/internal/dev-extra/tasks/main.yml | roles/internal/dev-extra/tasks/main.yml | ---
- apt: pkg={{item}} state=present
with_items:
- ansible
- apt-file
- curl
- gcc
- git
- gist
- htop
- jq
- libgit2-dev
- mercurial
- pandoc
- python-libcloud
- pkg-config
- ruby-github-markdown
- screen
- shellcheck
- tig
- tree
- vim
... | ---
- apt: pkg={{item}} state=present
with_items:
- ansible
- apt-file
- curl
- gcc
- git
- gist
- htop
- jq
- libgit2-dev
- mercurial
- pandoc
- python-libcloud
- pkg-config
- ruby-github-markdown
- screen
- shellcheck
- tig
- tree
- vim
... | Update cron tab for new maildirpaper program | Update cron tab for new maildirpaper program
| YAML | mit | sr/ansible-playbook-dev |
f84d99aefadaec07aff37fdc6ef235e67162826f | snapcraft.yaml | snapcraft.yaml | name: quassel-webserver
version: master
summary: A web server/client for Quassel
description: |
A web client for Quassel (requires a running quasselcore)
grade: devel
confinement: strict
apps:
server:
command: node $SNAP/lib/node_modules/quassel-webserver/app.js
plugs: [network, network-bind]
daemon: ... | name: quassel-webserver
version: master
summary: A web server/client for Quassel
description: |
A web client for Quassel (requires a running quasselcore)
grade: stable
confinement: strict
apps:
server:
command: node $SNAP/lib/node_modules/quassel-webserver/app.js
plugs: [network, network-bind]
daemon:... | Allow snap to be published beyond beta | Allow snap to be published beyond beta
| YAML | mit | magne4000/quassel-webserver,magne4000/quassel-webserver |
70bfe6ee960402c628d1b7ea3debf0f24b5e7e3d | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/rabbithole
docker:
- image: python:3.6.0
parallelism: 4
steps:
- checkout
- restore_cache:
key: rabbithole-{{ .Branch }}-{{ .Environment.CIRCLE_NODE_INDEX }}
- run: apt update
- run: apt install -y gcc python-dev
... | version: 2
jobs:
build:
working_directory: ~/rabbithole
docker:
- image: jcollado/rabbithole-ci
parallelism: 4
steps:
- checkout
- restore_cache:
key: rabbithole-{{ .Branch }}-{{ .Environment.CIRCLE_NODE_INDEX }}
- run: apt update
- run: apt install -y gcc pytho... | Update docker image to use in CircleCI | Update docker image to use in CircleCI
| YAML | mit | jcollado/rabbithole |
a19cda4ff61d6ad6520ea7bc7309bbd0c13a55cf | .circleci/config.yml | .circleci/config.yml | version: 2.1
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk
steps:
- restore_cache:
keys:
- source-v1-{{ .Branch }}-{{ .Revision }}
- source-v1-{{ .Branch }}-
- source-v1-
- checkout
- save_cache:
key: source-v1-{{ .Branc... | version: 2.1
workflows:
version: 2
build:
jobs:
- build:
context:
- build-env-vars
- docker-hub-credentials
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk
auth:
username: $DOCKERHUB_USERNAME
password: $DOCKERHUB_PASSWORD
... | Use Docker Hub credentials from a CircleCI context | Use Docker Hub credentials from a CircleCI context
| YAML | mit | plume-lib/plume-util |
ae8c59daebda00daa564fd49258d27685999ade1 | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
node: circleci/node@4.1.0
jobs:
test:
parameters:
node_version:
type: string
executor:
name: node/default
tag: << parameters.node_version >>
steps:
- checkout
- node/install-packages
- run:
name: Install CodeClimate test reporter... | version: 2.1
orbs:
node: circleci/node@4.1.0
workflows:
version: 2
default:
jobs:
- node/test:
matrix:
parameters:
version:
- "10.23-browsers"
- "12.20-browsers"
- "14.15-browsers"
- "15.6-browsers"
| Use built-in orb matrix testing | Use built-in orb matrix testing
| YAML | mit | jgarber623/CashCash,jgarber623/CashCash |
7405c4cb9c5dbfd186df34f8cf64389b06e2cc0f | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: ubuntu:14.04
steps:
# Ensure image has git
- run: apt-get -qq update; apt-get -y install git; apt-get install wget
- checkout
- run:
name: "Pull Submodules"
command: |
git submodule init
git s... | version: 2
jobs:
build:
docker:
- image: ubuntu:14.04
steps:
# Ensure image has git
- run: apt-get -qq update; apt-get -y install git; apt-get install wget; apt-get install build-essentials
- checkout
- run:
name: "Pull Submodules"
command: |
gi... | Add build essentials (make etc) | Add build essentials (make etc)
| YAML | mit | AmrikSadhra/FCE-to-OBJ,AmrikSadhra/FCE-to-OBJ |
f0b7f7a4f3df7eb2f5ca9655d32b00b3f4de7007 | .circleci/config.yml | .circleci/config.yml | version: 2.0
jobs:
build:
docker:
- image: mono:latest
working_directory: ~/rsct/
steps:
- checkout
- run:
name: Install package dependencies
command: |
apt-get update &&
apt-get inst... | version: 2.0
jobs:
build:
docker:
- image: mono:latest
working_directory: ~/rsct/
steps:
- checkout
- run:
name: Install package dependencies
command: |
apt-get update &&
apt-get inst... | Use new xunit runner location in CI | Use new xunit runner location in CI
| YAML | mit | villermen/runescape-cache-tools,villermen/runescape-cache-tools |
14b452382cb5b7fa52030a4418bf8a1230785af1 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/skript-mirror
docker:
- image: circleci/openjdk:8-jdk
steps:
- checkout
- restore_cache:
key: skript-mirror-{{ checksum "build.gradle" }}
- run: ./gradlew dependencies
- save_cache:
paths:
- ~/.gradl... | version: 2
jobs:
build:
working_directory: ~/skript-mirror
docker:
- image: circleci/openjdk:8-jdk
steps:
- checkout
- restore_cache:
key: skript-mirror-{{ checksum "build.gradle" }}
- run: ./gradlew dependencies
- save_cache:
paths:
- ~/.gradl... | Store artifacts in root directory | Store artifacts in root directory
| YAML | mit | btk5h/skript-mirror |
0ed3d9d0dd672e14b76bb0bd934bb3921135e80f | .circleci/config.yml | .circleci/config.yml | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.1@sha256:f2b8de21c988ad2885bc870c9c1767fa110211a859785639c71d30648df00554
working_directory: ~/repo
steps:
- checko... | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.1@sha256:f46761010333a5bdc7439e9beaeae5fce38eb7da978889ad43c8de66a6adb814
working_directory: ~/repo
steps:
- checko... | Update circleci/python:3.7.1 Docker digest to f467610 | Update circleci/python:3.7.1 Docker digest to f467610 | YAML | bsd-3-clause | kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler |
1aadcc95d80cb36d25b0f97ba2de5d52cc4eeb11 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: centos:latest
steps:
- run:
name: Show stuff
command: whoami && pwd && ( ( dpkg -l || rpm -qa ) | sort )
- run:
name: Prep
command: ( apt-get update && apt-get install -y git ) || yum -y install yum-utils git
... | version: 2
jobs:
build:
docker:
- image: centos:latest
steps:
- run:
name: Show stuff
command: whoami && pwd && ( ( dpkg -l || rpm -qa ) | sort )
- run:
name: Prep
command: ( apt-get update && apt-get install -y git ) || yum -y install yum-utils git
... | Fix RPM build dep installation | Fix RPM build dep installation
| YAML | apache-2.0 | hpernu/retry,hpernu/retry,hpernu/retry,hpernu/retry |
15c98f89ce44236bfe0e1c5cb5c8177d7ca852d0 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: node:latest
steps:
- restore_cache:
key: eslint-application
- run:
name: Install ESLint
command: npm install --global eslint
- save_cache:
paths:
- /usr/local/bin/eslint
- /usr/loca... | version: 2
jobs:
build:
docker:
- image: node:latest
steps:
- checkout
- restore_cache:
key: eslint-application
- run:
name: Install ESLint
command: npm install eslint
- save_cache:
paths:
- ./node_modules
- ./packag... | Install ESLint into local directory | Install ESLint into local directory
By default, npm is installed in /usr/local/lib/node_modules.
Caching /usr/local/lib/node_modules reverts version of npm to older one.
| YAML | unlicense | curipha/userscripts,curipha/userscripts |
143c9fdc993b02229614dd6cad6469a94d15f1b6 | GitVersionConfig.yaml | GitVersionConfig.yaml | assembly-versioning-scheme: MajorMinorPatchMetadata
tag-prefix: '[vV|version-]' # regex to match git tag prefix
#next-version: 1.0.0
mode: ContinuousDeployment
continuous-delivery-fallback-tag: ci
#branches:
# release[/-]:
# mode: ContinuousDeployment
# tag: rc
# develop:
# mode: ContinuousDelivery | Conti... | assembly-versioning-scheme: MajorMinorPatchMetadata
tag-prefix: '[vV|version-]' # regex to match git tag prefix
#next-version: 1.0.0
mode: ContinuousDelivery
continuous-delivery-fallback-tag: ci
#branches:
# release[/-]:
# mode: ContinuousDeployment
# tag: rc
# develop:
# mode: ContinuousDelivery | Continu... | Use continuous delivery mode in GitVersion | Use continuous delivery mode in GitVersion
| YAML | mit | Weingartner/Migrations.Json.Net |
57b1b7076050dcf3c7894bbab9646225ce2aca07 | _config.yml | _config.yml | # Site settings
title: Your awesome title
email: your-email@domain.com
description: > # this means to ignore newlines until "baseurl:"
Professional page from krlsdu
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://krlsdu.github.io" # the base hostname & protocol for your site
twitter_username: krlsdu... | # Site settings
title: Your awesome title
email: your-email@domain.com
description: > # this means to ignore newlines until "baseurl:"
Professional page from krlsdu
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://krlsdu.github.io" # the base hostname & protocol for your site
twitter_username: krlsdu... | Improve header http security X-Frame-Options | Improve header http security X-Frame-Options
| YAML | mit | krlsdu/krlsdu.github.io,krlsdu/krlsdu.github.io,krlsdu/krlsdu.github.io,krlsdu/krlsdu.github.io |
9854d2728087078b4155fd60118021a8058e6a6f | _config.yml | _config.yml | #document settings
title: Project Open Data
desc: "Open Data Policy — Managing Information as an Asset"
url: //project-open-data.github.io/
repo_name: project-open-data.github.io
branch: master
#global settings, no need to change these
root_url: //project-open-data.github.io
org_name: project-open-data
# default buil... | #document settings
title: Project Open Data
desc: "Open Data Policy — Managing Information as an Asset"
url: //project-open-data.cio.gov/
repo_name: project-open-data.github.io
branch: master
#global settings, no need to change these
root_url: //project-open-data.cio.gov
org_name: project-open-data
# default build se... | Update domain name config to cio.gov | Update domain name config to cio.gov
| YAML | cc0-1.0 | pjdufour/project-open-data.github.io,judecalvillo/project-open-data.github.io,pjdufour/project-open-data.github.io,Chuck8080/opendata,Chuck8080/opendata,pjdufour/project-open-data.github.io,pjdufour/project-open-data.github.io,portofsandiego/project-open-data.github.io,portofsandiego/project-open-data.github.io,judecal... |
c34acca8b059282316128832d2a1df92ed7b0025 | _config.yml | _config.yml | # Site settings
title: natural disasters
email: lyle.klyne@gmail.com
description: > # this means to ignore newlines until "baseurl:"
coordinating local response efforts
baseurl: # the subpath of your site, e.g. /blog/
url: # the base hostname & protocol for your site
twitter_username: twitter_username
github_userna... | # Site settings
title: natural disasters
email: lyle.klyne@gmail.com
description: > # this means to ignore newlines until "baseurl:"
coordinating local response efforts
baseurl: # the subpath of your site, e.g. /blog/
url: # the base hostname & protocol for your site
twitter_username: twitter_username
github_userna... | Change pigments highlighting to rouge to prevent page build error on github pages | Change pigments highlighting to rouge to prevent page build error on github pages | YAML | mit | lklyne/lklyne.github.io |
003abfee334bdc59e4e7688d6496d4cf9ba3d759 | _config.yml | _config.yml | # Site settings
title: Archipelago Fishing
header-img: 'img/old_cinema.jpg'
email: info@example.com
description: "Archipelago Fishing"
baseurl: "/archipelagofishing.com"
url: "http://jacobburenstam.com"
facebook_username:
# Build settings
markdown: kramdown
highlighter: pygments
permalink: pretty
paginate: 10
exclude:... | # Site settings
title: Archipelago Fishing
header-img: 'img/old_cinema.jpg'
email: info@example.com
description: "Archipelago Fishing"
baseurl: "/archipelagofishing.com"
url: "http://jacobburenstam.com"
facebook_username:
# Build settings
markdown: kramdown
highlighter: rouge
permalink: pretty
paginate: 10
exclude: ["... | Change highlighter from pygments => rouge | Change highlighter from pygments => rouge | YAML | apache-2.0 | buren/archipelagofishing.com,buren/archipelagofishing.com,buren/archipelagofishing.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.