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 |
|---|---|---|---|---|---|---|---|---|---|
8d1809f29e2ae2d6c54482e25cb1a2151ef0d4f2 | app.yaml | app.yaml | application: helloworld
version: 1
runtime: php
api_version: 1
handlers:
- url: /.*
script: helloworld.php
| application: helloworld
version: 1
runtime: php55
api_version: 1
handlers:
- url: /.*
script: helloworld.php
| Change runtime from 'php' to 'php55'. | Change runtime from 'php' to 'php55'.
| YAML | apache-2.0 | GoogleCloudPlatform/appengine-try-php |
e3587cb955747b965031658044da954bdec24d23 | roles/developer-common/defaults/main.yml | roles/developer-common/defaults/main.yml | ---
default_brew_taps:
- gapple/services
- caskroom/fonts
default_brew_packages:
- git
- git-flow
- mercurial
- ctags
- wget
- httpie
- mongodb
- mysql
- redis
- letsencrypt
default_cask_packages:
- google-chrome
- firefox
- transmission
- vlc
- skype
- slack
- discord
- sourcetr... | ---
default_brew_taps:
- gapple/services
- caskroom/fonts
default_brew_packages:
- git
- git-flow
- mercurial
- ctags
- wget
- httpie
- mongodb
- mysql
- redis
- letsencrypt
- qlvideo
default_cask_packages:
- google-chrome
- firefox
- transmission
- vlc
- skype
- slack
- discord
... | Add useful quick look plugins | Add useful quick look plugins
| YAML | mit | luishdez/osx-playbook,ansible-macos/macos-playbook,ansible-macos/macos-playbook |
60a3b8367918c7c78163203593b716dbb1f31829 | packages/tt/ttn-client.yaml | packages/tt/ttn-client.yaml | homepage: https://github.com/sorki/ttn-client
changelog-type: ''
hash: 04793f1472e9b366c8203690804cea73492e2df033a4f85f0f6b0f60fd28e6d3
test-bench-deps: {}
maintainer: srk@48.io
synopsis: TheThingsNetwork client
changelog: ''
basic-deps:
bytestring: -any
ttn-client: -any
stm: -any
base: '>=4.7 && <5'
time: -a... | homepage: https://github.com/sorki/ttn-client
changelog-type: ''
hash: c092fde1964793f0d73acfead6592b4e624a05a86acb7ff1a9a5c108e622a0f9
test-bench-deps: {}
maintainer: srk@48.io
synopsis: TheThingsNetwork client
changelog: ''
basic-deps:
bytestring: -any
ttn-client: -any
stm: -any
base: '>=4.7 && <5'
time: -a... | Update from Hackage at 2021-04-02T10:15:12Z | Update from Hackage at 2021-04-02T10:15:12Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
21fee9f48c5b73b63692d1bdf33081b543f1efa8 | playbooks/roles/mongo_mms/tasks/main.yml | playbooks/roles/mongo_mms/tasks/main.yml | ---
# mongo_mms
#
# Example play:
#
# roles:
# - mongo_mms
- fail: MMSAPIKEY is required
when: MMSAPIKEY is not defined
- name: download mongo mms agent
get_url: >
url="{{ base_url }}/{{ item.agent }}_{{ item.version }}_{{ pkg_arch }}.{{ pkg_format }}"
dest="/tmp/{{ item.agent }}-{{ item.version }}.{... | ---
# mongo_mms
#
# Example play:
#
# roles:
# - mongo_mms
- fail: MMSAPIKEY is required
when: MMSAPIKEY is not defined
- name: download mongo mms agent
get_url: >
url="{{ base_url }}/{{ item.agent }}_{{ item.version }}_{{ pkg_arch }}.{{ pkg_format }}"
dest="/tmp/{{ item.agent }}-{{ item.version }}.{... | Expand the agent to restart | Expand the agent to restart
| YAML | agpl-3.0 | marcore/configuration,gashac03/ubuntu,nunpa/configuration,open-craft/configuration,gashac03/ubuntu,hks-epod/configuration,michaelsteiner19/open-edx-configuration,Livit/Livit.Learn.EdX.configuration,lgfa29/configuration,pobrejuanito/configuration,eduStack/configuration,fghaas/edx-configuration,edx/configuration,Livit/Li... |
521e9bb496ff19499df8a279681238b9450a335b | packages/wi/witherable.yaml | packages/wi/witherable.yaml | homepage: https://github.com/fumieval/witherable
changelog-type: ''
hash: 1175409e5cd9369800a0c5ff4d66f273b293b5f853d07c903300ef27b723081f
test-bench-deps: {}
maintainer: Fumiaki Kinoshita <fumiexcel@gmail.com>
synopsis: Generalization of filter and catMaybes
changelog: ''
basic-deps:
base: ==4.*
unordered-containe... | homepage: https://github.com/fumieval/witherable
changelog-type: ''
hash: f189d0465a7a546bf2ed64af029ad47fcf6e1d6915025d541fb97a4623cf14da
test-bench-deps: {}
maintainer: Fumiaki Kinoshita <fumiexcel@gmail.com>
synopsis: Generalization of filter and catMaybes
changelog: ''
basic-deps:
base: ==4.*
unordered-containe... | Update from Hackage at 2015-10-13T13:17:12+0000 | Update from Hackage at 2015-10-13T13:17:12+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
f0c42dec5733db6b52f9b5df705cac4fdf343884 | tasks/manage_main_config.yml | tasks/manage_main_config.yml | ---
# Tasks about Jenkins main configuration management
- name: Manage number of executors
become : True
become_user : "{{ jenkins_etc_user }}"
manage_jenkins_main_configuration:
number_of_executors: "{{ jenkins_main_cfg_num_executors }}"
register: jenkins_change_main_configuration
| ---
# Tasks about Jenkins main configuration management
- name: Manage main configuration with new settings
become : True
become_user : "{{ jenkins_etc_user }}"
manage_jenkins_main_configuration:
number_of_executors: "{{ jenkins_main_cfg_num_executors }}"
register: jenkins_change_main_configuration
| Rename new main config management task | Rename new main config management task
| YAML | mit | infOpen/ansible-role-jenkins |
5a4aaecbf76a7a3dcec1bff20d30db04990b40cf | recipes/sphinx_rtd_theme/meta.yaml | recipes/sphinx_rtd_theme/meta.yaml | {% set version = "0.1.9" %}
{% set sha256 = "273846f8aacac32bf9542365a593b495b68d8035c2e382c9ccedcac387c9a0a1" %}
package:
name: sphinx_rtd_theme
version: {{ version }}
source:
fn: sphinx_rtd_theme-{{ version }}.tar.gz
url: https://pypi.io/packages/source/s/sphinx_rtd_theme/sphinx_rtd_theme-{{ version }}.tar.... | {% set version = "0.2.4" %}
{% set sha256 = "2df74b8ff6fae6965c527e97cca6c6c944886aae474b490e17f92adfbe843417" %}
package:
name: sphinx_rtd_theme
version: {{ version }}
source:
fn: sphinx_rtd_theme-{{ version }}.tar.gz
url: https://pypi.io/packages/source/s/sphinx_rtd_theme/sphinx_rtd_theme-{{ version }}.tar.... | Update sphinx_rtd_theme recipe to version 0.2.4 | Update sphinx_rtd_theme recipe to version 0.2.4
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
f3f1006f8daa2b476ec4c83df09b10110f5518ea | packages/re/reform-hamlet.yaml | packages/re/reform-hamlet.yaml | homepage: http://www.happstack.com/
changelog-type: ''
hash: 64478614a1593d12897263b18047b8d20236a6a5153858ef43f97eb9fec29d1b
test-bench-deps: {}
maintainer: jeremy@n-heptane.com
synopsis: Add support for using Hamlet with Reform
changelog: ''
basic-deps:
shakespeare: ! '>=2.0 && <2.1'
base: ! '>4 && <5'
blaze-ma... | homepage: http://www.happstack.com/
changelog-type: ''
hash: 64478614a1593d12897263b18047b8d20236a6a5153858ef43f97eb9fec29d1b
test-bench-deps: {}
maintainer: jeremy@n-heptane.com
synopsis: Add support for using Hamlet with Reform
changelog: ''
basic-deps:
shakespeare: '>=2.0 && <2.1'
base: '>4 && <5'
blaze-markup... | Update from Hackage at 2022-04-22T15:20:44Z | Update from Hackage at 2022-04-22T15:20:44Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
4b4b778e01a57ef782b3587efac92a91df2248f0 | kubernetes/mariadb/templates/mariadb-service-template.yaml | kubernetes/mariadb/templates/mariadb-service-template.yaml | apiVersion: v1
kind: Service
spec:
ports:
- port: 3306
name: mariadb-{{count}}
selector:
service: mariadb-{{count}}
metadata:
name: mariadb-{{count}}
namespace: "default"
| apiVersion: v1
kind: Service
spec:
ports:
- port: 3306
name: mariadb-{{count}}
- port: 4567
name: mariadb-{{count}}-replication
- Port: 4444
name: mariadb-{{count}}-sst
- Port: 4568
name: mariadb-{{count}}-ist
selector:
service: mariadb-{{count}}
metadata:
name: mariad... | Add missing ports to the service templates | Add missing ports to the service templates
The mariadb containers won't be able to do
replication without exposing the correct ports.
| YAML | apache-2.0 | rthallisey/nave,rthallisey/nave |
914dfeb16f85942e7ec555b56820a9312729df17 | app.yaml | app.yaml | application: netzen
version: 5
runtime: python27
api_version: 1
default_expiration: 365d
threadsafe: false
builtins:
- appstats: on
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /robots\.txt
static_files: robots.txt
upload: robots\.txt
- url: /stat... | application: netzen
version: 5
runtime: python27
api_version: 1
default_expiration: 365d
threadsafe: false
builtins:
- appstats: on
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /robots\.txt
static_files: robots.txt
upload: robots\.txt
- url: /stat... | Add admin console for local dev | Add admin console for local dev
| YAML | mit | bbondy/brianbondy.gae,bbondy/brianbondy.gae,bbondy/brianbondy.gae,bbondy/brianbondy.gae |
3b4d42af306d316cd42676c34ddca8576a69cdbc | provisioning/roles/erlang/tasks/main.yml | provisioning/roles/erlang/tasks/main.yml | - name: install erlang 17.3
apt: pkg=erlang={{erlang_version}} state=present update_cache=yes cache_valid_time=3600 | - name: install erlang
apt: pkg=erlang={{erlang_version}} state=present update_cache=yes cache_valid_time=3600 | Fix specification for erlang task | Fix specification for erlang task [ci skip]
| YAML | mit | mweibel/xmpp-server-benchmarks |
c8d18628158608903a561c42a197bfb7d7587f42 | templates/ci/go.yml | templates/ci/go.yml | # Go
# Build and test your Go application.
# Add steps that save build artifacts, deploy, and more:
# https://docs.microsoft.com/vsts/pipelines/languages/go
pool:
vmImage: 'Ubuntu 16.04'
variables:
GOBIN: '$(GOPATH)/bin' # Go binaries path
GOROOT: '/usr/local/go1.10' # Go installation path
GOPATH: '$(system.... | # Go
# Build your Go application.
# Add steps that test, save build artifacts, deploy, and more:
# https://docs.microsoft.com/vsts/pipelines/languages/go
pool:
vmImage: 'Ubuntu 16.04'
variables:
GOBIN: '$(GOPATH)/bin' # Go binaries path
GOROOT: '/usr/local/go1.10' # Go installation path
GOPATH: '$(system.def... | Update Go yaml template to build instead of test | Update Go yaml template to build instead of test | YAML | mit | dylan-smith/vso-agent-tasks,Microsoft/vsts-tasks,dylan-smith/vso-agent-tasks,Microsoft/vsts-tasks,vithati/vsts-tasks,grawcho/vso-agent-tasks,Microsoft/vso-agent-tasks,grawcho/vso-agent-tasks,dylan-smith/vso-agent-tasks,vithati/vsts-tasks,grawcho/vso-agent-tasks,Microsoft/vso-agent-tasks,grawcho/vso-agent-tasks,Microsof... |
1210c86d919a1b6196009c08e99d06eb37230e0e | packages/ve/vector-extras.yaml | packages/ve/vector-extras.yaml | homepage: https://github.com/metrix-ai/vector-extras
changelog-type: ''
hash: ee05a11e39f31cce7ce0a9c202e0730caac2ed7d4d715bf77a67671e179dda32
test-bench-deps: {}
maintainer: Metrix.AI Tech Team <tech@metrix.ai>
synopsis: Utilities for the "vector" library
changelog: ''
basic-deps:
base: ! '>=4.11 && <5'
unordered-... | homepage: https://github.com/metrix-ai/vector-extras
changelog-type: ''
hash: be03304b0f08283c2d269490d80976ab9580c7627635ae94f3ac402cb85429e4
test-bench-deps: {}
maintainer: Metrix.AI Tech Team <tech@metrix.ai>
synopsis: Utilities for the "vector" library
changelog: ''
basic-deps:
base: ! '>=4.11 && <5'
unordered-... | Update from Hackage at 2019-03-18T13:21:20Z | Update from Hackage at 2019-03-18T13:21:20Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
36e49d93d8709d51a128d190e70849a479c0237d | metadata/org.y20k.escapepod.yml | metadata/org.y20k.escapepod.yml | Categories:
- Multimedia
License: MIT
WebSite: https://github.com/y20k/escapepod/wiki
SourceCode: https://github.com/y20k/escapepod
IssueTracker: https://github.com/y20k/escapepod/issues
Changelog: https://github.com/y20k/escapepod/releases
AutoName: Escapepod
RepoType: git
Repo: https://github.com/y20k/escapepod
... | Categories:
- Multimedia
License: MIT
WebSite: https://github.com/y20k/escapepod/wiki
SourceCode: https://github.com/y20k/escapepod
IssueTracker: https://github.com/y20k/escapepod/issues
Changelog: https://github.com/y20k/escapepod/releases
AutoName: Escapepod
RepoType: git
Repo: https://github.com/y20k/escapepod
... | Update Escapepod to 0.7.4 (9) | Update Escapepod to 0.7.4 (9)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
b47e476e07eb492c3bf61dcbf9742d83d03ecf1c | docs/rtd_environment.yml | docs/rtd_environment.yml | name: py36
channels:
- defaults
- conda-forge
dependencies:
- python=3.6
- anaconda
- pytest-cov
- pytest-xdist
- coverage
- flake8
| name: py36
channels:
- defaults
dependencies:
- python=3.6
- anaconda
- pytest-cov
- pytest-xdist
- coverage
- flake8
| Remove conda-forge channel for rtd environment | Remove conda-forge channel for rtd environment
| YAML | mit | mabuchilab/QNET |
3c140e8b85b0210080a9fa4f3a9a7f098fd5524e | akurra/data/entities.yml | akurra/data/entities.yml | akurra:
entities:
templates:
player:
components:
- player
- position
- velocity
- input
- map_layer
-
- physics
... | akurra:
entities:
templates:
player:
components:
- player
- position
- velocity
- input
- map_layer
-
- physics
... | Make player collision core a bit wider | Make player collision core a bit wider
Signed-off-by: Kalman Olah <aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d@kalmanolah.net>
| YAML | mit | multatronic/akurra,multatronic/akurra |
ece6f5452ad37bc96aa5107a827e1bc2743522fc | packages/ja/jailbreak-cabal.yaml | packages/ja/jailbreak-cabal.yaml | homepage: https://github.com/peti/jailbreak-cabal#readme
changelog-type: ''
hash: c3a4bf6b9538c13cfa4204aef8a04631cfe3b07c94561f2069ed907477607a10
test-bench-deps: {}
maintainer: simons@cryp.to
synopsis: Strip version restrictions from Cabal files
changelog: ''
basic-deps:
Cabal: ==1.20.* || ==1.24.*
base: <5
all-v... | homepage: https://github.com/peti/jailbreak-cabal#readme
changelog-type: ''
hash: 34446e7237d994e61877b0e0f01a18a41ba3782e15d1ff1302d42b01b5c68f38
test-bench-deps: {}
maintainer: simons@cryp.to
synopsis: Strip version restrictions from Cabal files
changelog: ''
basic-deps:
Cabal: ==1.20.* || ==1.24.* || >=2.2
base:... | Update from Hackage at 2018-05-29T22:20:15Z | Update from Hackage at 2018-05-29T22:20:15Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
27dc5bbbce8fee35dcc9dcefaa48aebaaf99a5ee | packages/ma/manifold-random.yaml | packages/ma/manifold-random.yaml | homepage: https://github.com/leftaroundabout/manifolds
changelog-type: ''
hash: 6d93d7a15e19c05913b06e18272021e50ca786d4492151cffa3533aebd54c7bd
test-bench-deps: {}
maintainer: (@) jsag $ hvl.no
synopsis: Sampling random points on general manifolds.
changelog: ''
basic-deps:
linearmap-category: -any
base: ! '>=4.7 ... | homepage: https://github.com/leftaroundabout/manifolds
changelog-type: ''
hash: f6703580d8b86fc9d5b2654078882a5b42b3d6335bfd2eb06ea256570883469e
test-bench-deps: {}
maintainer: (@) jsag $ hvl.no
synopsis: Sampling random points on general manifolds.
changelog: ''
basic-deps:
linearmap-category: -any
base: ! '>=4.7 ... | Update from Hackage at 2019-10-14T14:06:00Z | Update from Hackage at 2019-10-14T14:06:00Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
7d0c6ab38722b7a6e3d714b3a0ad577bd4ffa433 | recipes/plant_tribes_assembly_post_processor/0.2/meta.yaml | recipes/plant_tribes_assembly_post_processor/0.2/meta.yaml | package:
name: plant_tribes_assembly_post_processor
version: "0.2"
source:
fn: v0.2.tar.gz
url: https://github.com/dePamphilis/PlantTribes/archive/v0.2.tar.gz
md5: 06c7fdb7eaf091a8fe9f826866a1a206
build:
number: 0
# Requires genometools which is not supported on osx
skip: True # [osx]
requirements:
... | package:
name: plant_tribes_assembly_post_processor
version: "0.2"
source:
fn: v0.2.tar.gz
url: https://github.com/dePamphilis/PlantTribes/archive/v0.2.tar.gz
md5: 06c7fdb7eaf091a8fe9f826866a1a206
build:
number: 1
# Requires genometools which is not supported on osx
skip: True # [osx]
requirements:
... | Add additional tests for PlantTribes AssemblyPostProcesser version 0.2 | Add additional tests for PlantTribes AssemblyPostProcesser version 0.2
| YAML | mit | saketkc/bioconda-recipes,matthdsm/bioconda-recipes,xguse/bioconda-recipes,ostrokach/bioconda-recipes,joachimwolff/bioconda-recipes,joachimwolff/bioconda-recipes,lpantano/recipes,chapmanb/bioconda-recipes,ivirshup/bioconda-recipes,phac-nml/bioconda-recipes,chapmanb/bioconda-recipes,rob-p/bioconda-recipes,colinbrislawn/b... |
3c01f8f4749e06155f2e6ff4112d0a2b915b47cc | releasenotes/notes/vitrage-admin-menu-5fa73358a8559a37.yaml | releasenotes/notes/vitrage-admin-menu-5fa73358a8559a37.yaml | ---
features:
- A new ``Vitrage Admin Menu`` was added, to handle authorize managment of
tanents from the administrator prespective. When a regular user will login,
he will see just his own tanent.
| ---
features:
- A new ``Vitrage Admin Menu`` was added, to handle authorize management of
tanents from the administrator perspective. When a regular user will login,
he will see just his own tanent.
| Fix typos in this yaml | Fix typos in this yaml
Change-Id: I2f18694306a269d20a5037e5824f12e6d0f2482f
| YAML | apache-2.0 | openstack/vitrage-dashboard,openstack/vitrage-dashboard,openstack/vitrage-dashboard,openstack/vitrage-dashboard |
173c32241cff74315b9ad7c61df2d5dec79324ec | recipes/slack_sdk/meta.yaml | recipes/slack_sdk/meta.yaml | {% set name = "slack_sdk" %}
{% set version = "3.4.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/slack_sdk-{{ version }}.tar.gz
sha256: befc1365df93b84eac4592b9a2183411a748ecf662f5c51ce2fa7fdc3f5ee89f
build:
number: 0
n... | {% set name = "slack_sdk" %}
{% set version = "3.4.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/slack_sdk-{{ version }}.tar.gz
sha256: befc1365df93b84eac4592b9a2183411a748ecf662f5c51ce2fa7fdc3f5ee89f
build:
number: 0
n... | Use conda to install aiohttp | Use conda to install aiohttp
| YAML | bsd-3-clause | hadim/staged-recipes,conda-forge/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,igortg/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,igortg/staged-recipes,jakirkham/staged-recipes,ReimarBauer/staged-recipes,scopatz/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes,ma... |
ce1c627853a54b0f61d9628400b727f2dddfc0a1 | packages/nu/numhask-prelude.yaml | packages/nu/numhask-prelude.yaml | homepage: https://github.com/tonyday567/numhask#readme
changelog-type: ''
hash: 642b159109c9743622364f063acf375d49cddeacee9313da39c898040b002117
test-bench-deps:
base: ! '>=4.7 && <5'
numhask-prelude: -any
doctest: -any
tasty: -any
maintainer: tonyday567@gmail.com
synopsis: A numeric prelude
changelog: ''
basic... | homepage: https://github.com/tonyday567/numhask#readme
changelog-type: ''
hash: 776c06335468467e20802316ed4a6a6b67e867109328a9ca587a8293dbe39387
test-bench-deps:
base: ! '>=4.7 && <5'
numhask-prelude: -any
doctest: -any
tasty: -any
maintainer: tonyday567@gmail.com
synopsis: A numeric prelude
changelog: ''
basic... | Update from Hackage at 2018-04-07T23:19:15Z | Update from Hackage at 2018-04-07T23:19:15Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
6ba7045549a71d6592b34c7cd7ddd09013766a1e | packages/bi/bindings-yices.yaml | packages/bi/bindings-yices.yaml | homepage: ''
changelog-type: ''
hash: 3c7e2ea13970a6f1abba18f2f02789b6b9be6a43817bda4d621d18d2c489e835
test-bench-deps: {}
maintainer: pepeiborra@gmail.com
synopsis: Bindings to the Yices theorem prover
changelog: ''
basic-deps:
base: ! '>3 && <5'
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.3.0.1'
author: Jose Iborra
... | homepage: ''
changelog-type: markdown
hash: cf2b1531165459d81a3f44393f36cc292d95b5288427c1138a839268dee0c076
test-bench-deps: {}
maintainer: pepeiborra@gmail.com
synopsis: Bindings to the Yices theorem prover
changelog: ! "\t## 0.3 -- 22th August 2015\n\t* Extend the API with missing for add,
sub and mul binary opera... | Update from Hackage at 2015-08-22T13:18:14+0000 | Update from Hackage at 2015-08-22T13:18:14+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
17fee2a0a4c85bc2a6b11cb18f616c07bcbce094 | ci/settings.yml | ci/settings.yml | ---
# settings for the redis-resource pipeline
meta:
target: sw
url: https://ci.vsphere.starkandwayne.com
name: redis-resource
initial_version: 0.0.1
aws:
bucket: redis-resource-pipeline
access_key: (( vault "secret/aws/cfcommunity:access" ))
secret_key: (( vault "secret/aws/cfcommunity... | ---
# settings for the redis-resource pipeline
meta:
target: sw
url: https://ci.starkandwayne.com
name: redis-resource
initial_version: 0.0.1
aws:
bucket: redis-resource-pipeline
access_key: (( vault "secret/aws/cfcommunity:access" ))
secret_key: (( vault "secret/aws/cfcommunity:secret"... | Use new repo org in CI | Use new repo org in CI
| YAML | mit | starkandwayne/redis-resource |
9260dcd084f19ec5a641c2673525163d5ab76816 | playbooks/common/openshift-cluster/validate_hostnames.yml | playbooks/common/openshift-cluster/validate_hostnames.yml | ---
- name: Gather and set facts for node hosts
hosts: oo_nodes_to_config
roles:
- openshift_facts
tasks:
- shell:
getent ahostsv4 {{ openshift.common.hostname }} | head -n 1 | awk '{ print $1 }'
register: lookupip
changed_when: false
failed_when: false
- name: Warn user about bad openshif... | ---
- name: Gather and set facts for node hosts
hosts: oo_nodes_to_config
roles:
- openshift_facts
tasks:
- shell:
getent ahostsv4 {{ openshift.common.hostname }} | head -n 1 | awk '{ print $1 }'
register: lookupip
changed_when: false
failed_when: false
- name: Warn user about bad openshif... | Allow a hostname to resolve to 127.0.0.1 during validation | Allow a hostname to resolve to 127.0.0.1 during validation
127.0.0.1 does not end up in "ansible_all_ipv4_addresses" and should
be considered valid.
For example, a hostname could be resolving to a public address that is
not bound to the actual server.
Or the host could resolve to 127.0.0.1 from the perspective of
the ... | YAML | apache-2.0 | tagliateller/openshift-ansible,tagliateller/openshift-ansible,markllama/openshift-ansible,miminar/openshift-ansible,liggitt/openshift-ansible,jwhonce/openshift-ansible,mmahut/openshift-ansible,markllama/openshift-ansible,tagliateller/openshift-ansible,nak3/openshift-ansible,openshift/openshift-ansible,maxamillion/opens... |
ff2e2dbf0ef329e40c1b7f71c5fe60640f120803 | .forestry/front_matter/templates/posts.yml | .forestry/front_matter/templates/posts.yml | ---
label: Posts
hide_body: false
is_partial: false
fields:
- type: text
default: post
label: Layout
name: layout
hidden: true
- type: textarea
name: summary
label: Summary
description: Meta description
config:
required: true
- type: select
config:
source:
type: simple
options:
-... | ---
label: Posts
hide_body: false
is_partial: false
fields:
- type: text
default: post
label: Layout
name: layout
hidden: true
- type: textarea
name: summary
label: Summary
description: Meta description
config:
required: true
- type: select
config:
source:
type: simple
options:
-... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | boobo94/boobo94.github.io,boobo94/boobo94.github.io |
36f663a0b21e1955f610d9cce05c921509705941 | .github/workflows/auto-update-gh-pages.yml | .github/workflows/auto-update-gh-pages.yml | # This GitHub Action automatically updates built Doxygen files for Moltres' documentation
# on `https://arfc.github.io/moltres/` every time a new pull request is merged into devel.
name: Doxygen & Github Pages Action
# Activate on pushes and pull requests into devel
on:
push:
branches: [ devel ]
pull_request:... | # This GitHub Action automatically updates built Doxygen files for Moltres' documentation
# on `https://arfc.github.io/moltres/` every time a new pull request is merged into devel.
name: Doxygen & Github Pages Action
# Activate on pushes and pull requests into devel
on:
push:
branches: [ devel ]
workflow... | Disable Doxygen/Github Pages action trigger on pull requests | Disable Doxygen/Github Pages action trigger on pull requests
| YAML | lgpl-2.1 | arfc/moltres,arfc/moltres,lindsayad/moltres,lindsayad/moltres,lindsayad/moltres,arfc/moltres,arfc/moltres,lindsayad/moltres |
e971896b88aba2f52a43768da64378dd2ef6539a | cloudbuild.yaml | cloudbuild.yaml | substitutions:
_REGION: us-central1
steps:
- name: 'gcr.io/k8s-skaffold/skaffold:v1.24.0'
entrypoint: 'sh'
args:
- -xe
- -c
- |
skaffold build --file-output=/workspace/artifacts.json --default-repo gcr.io/$PROJECT_ID
skaffold test --build-artifacts=/workspace/artifacts.json
- name: 'gcr.io/google.co... | substitutions:
_REGION: us-central1
steps:
- name: 'gcr.io/k8s-skaffold/skaffold:v1.24.0'
entrypoint: 'sh'
args:
- -xe
- -c
- |
skaffold build --file-output=/workspace/artifacts.json --default-repo gcr.io/$PROJECT_ID
skaffold test --build-artifacts=/workspace/artifacts.json
- name: 'gcr.io/google.co... | Add timestamp to release name | Add timestamp to release name
| YAML | apache-2.0 | google/golden-path-for-app-delivery,google/golden-path-for-app-delivery,google/golden-path-for-app-delivery |
ca6dad05b81d40d0c50ed41b604cadb1602896b7 | recipes/rpkmforgenes/meta.yaml | recipes/rpkmforgenes/meta.yaml | package:
name: "rpkmforgenes"
version: "1.0.1"
build:
number: 0
source:
git_url: https://github.com/danielramskold/S3_species-specific_sequencing
git_rev: 1.0.1
requirements:
build:
- python >=2.7,<3
- pysam
- numpy
run:
- python >=2.7,<3
- pysam
- numpy
test:
requires:
- ... | package:
name: "rpkmforgenes"
version: "1.0.1"
build:
number: 0
skip: True # [py3k]
source:
url: https://github.com/danielramskold/S3_species-specific_sequencing/archive/1.0.1.tar.gz
md5: 114afd083b2f11bd57c57e68ec4b607d
requirements:
build:
- python
- pysam
- numpy
run:
- python
... | Add skip, url, md5, remove requires | Add skip, url, md5, remove requires
Add changes requested by @johanneskoester
| YAML | mit | dmaticzka/bioconda-recipes,mdehollander/bioconda-recipes,ivirshup/bioconda-recipes,rob-p/bioconda-recipes,saketkc/bioconda-recipes,zwanli/bioconda-recipes,npavlovikj/bioconda-recipes,HassanAmr/bioconda-recipes,npavlovikj/bioconda-recipes,omicsnut/bioconda-recipes,hardingnj/bioconda-recipes,gregvonkuster/bioconda-recipe... |
b9612181fa5e511928c334e1449c3a2d8f648f11 | packages/mo/monad-dijkstra.yaml | packages/mo/monad-dijkstra.yaml | homepage: https://github.com/ennocramer/monad-dijkstra
changelog-type: ''
hash: 4c04c21b22517801734f559267fb52488a12781bf7431edefb2bd2243d557dca
test-bench-deps:
monad-dijkstra: -any
hlint: ! '>=1.0 && <3'
base: ! '>=4.7 && <5'
tasty-hspec: -any
tasty: -any
maintainer: Enno Cramer <ecramer@memfrob.de>
synopsi... | homepage: https://github.com/ennocramer/monad-dijkstra
changelog-type: ''
hash: f1e3f218d4185cb8013470949394dc63a5947efc5b9345f5dbd9a7e56ed4bec6
test-bench-deps:
monad-dijkstra: -any
hlint: ! '>=1.0 && <3'
base: ! '>=4.7 && <5'
tasty-hspec: -any
tasty: -any
maintainer: Enno Cramer <ecramer@memfrob.de>
synopsi... | Update from Hackage at 2018-12-11T14:11:35Z | Update from Hackage at 2018-12-11T14:11:35Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
22ecb111d962d3236df2087ae1b1a3e8a351a598 | schemas/stsci.edu/asdf/transform/multiplyscale-1.0.0.yaml | schemas/stsci.edu/asdf/transform/multiplyscale-1.0.0.yaml | %YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/multiplyscale-1.0.0"
tag: "tag:stsci.edu:asdf/transform/multiplyscale-1.0.0"
title: >
A Multiply model.
description: >
Multiply the input by a factor.
examples:
-
- Multiply the input by a pixe... | %YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/multiplyscale-1.0.0"
tag: "tag:stsci.edu:asdf/transform/multiplyscale-1.0.0"
title: >
A Multiply model.
description: >
Multiply the input by a factor.
examples:
-
- Multiply the input by a pixe... | Fix formatting of example in new multiplyscale schema | Fix formatting of example in new multiplyscale schema
| YAML | bsd-3-clause | spacetelescope/asdf-standard |
35f12fc26b70f496117b2ad6c178d47e2102e8ca | packages/hl/hls-plugin-api.yaml | packages/hl/hls-plugin-api.yaml | homepage: https://github.com/haskell/haskell-language-server/hls-plugin-api
changelog-type: ''
hash: cdc7390f92a7b0f712d128a42edd3a4e056d2d75d824ec3c373a7e26556f0e3d
test-bench-deps: {}
maintainer: alan.zimm@gmail.com (for now)
synopsis: Haskell Language Server API for plugin communication
changelog: ''
basic-deps:
s... | homepage: https://github.com/haskell/haskell-language-server/hls-plugin-api
changelog-type: ''
hash: 8acf1c3d214892f69c6e6489207403ff44c9d3ea3d57028288495b3236af1ff4
test-bench-deps: {}
maintainer: alan.zimm@gmail.com (for now)
synopsis: Haskell Language Server API for plugin communication
changelog: ''
basic-deps:
s... | Update from Hackage at 2021-01-09T10:42:24Z | Update from Hackage at 2021-01-09T10:42:24Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
588c5b4496e0df2fafe8cfd23efbbb020999b0da | packages/li/linear-grammar.yaml | packages/li/linear-grammar.yaml | homepage: ''
changelog-type: ''
hash: ce0440ef63be6b34505c513a70ba93ce74c722cab0675653b8c3f8845e2c7bbe
test-bench-deps:
base: -any
hspec: -any
QuickCheck: -any
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: A simple grammar for building linear equations and inclusive inequalities.
changelog: ''
basic-d... | homepage: ''
changelog-type: ''
hash: 833ee6ab8f19d9b5ca0910fe80bc32b122f74fc854bb93eaa5f6bc83443001ca
test-bench-deps:
base: -any
hspec: -any
QuickCheck: -any
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: A simple grammar for building linear equations and inclusive inequalities.
changelog: ''
basic-d... | Update from Hackage at 2015-06-12T15:39:58+0000 | Update from Hackage at 2015-06-12T15:39:58+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
f6c6c024ccf93a58aee1f1873c95d59e134ba3e3 | roles/repos/rdo/tasks/main.yml | roles/repos/rdo/tasks/main.yml | ---
- name: Install rdo repository configuration
package:
name: centos-release-openstack-{{rdo_release}}
state: present
when: manage_repos|default(false) and ansible_distribution == 'CentOS'
| ---
- name: Install rdo repository configuration
package:
name: centos-release-openstack-{{rdo_release}}
state: present
when: manage_repos|default(false) and ansible_distribution == 'CentOS'
# workaround for centos-qemu-ev and centos-release issue
#
- name: update centos-release rpm
yum:
name: centos... | Fix qemu-kvm-ev repo access until ... | Fix qemu-kvm-ev repo access until ...
new centos-release rpm is included in base images
Change-Id: I9f5c9f7dbed0dc4968f7f602c0c44108dc95747d
| YAML | apache-2.0 | centos-opstools/opstools-ansible,centos-opstools/opstools-ansible |
1b187365ffe2f185475b69dfe78593c6b378a6dd | packages/sh/shunya-library.yaml | packages/sh/shunya-library.yaml | homepage: https://github.com/githubuser/shunya-library#readme
changelog-type: ''
hash: cbdbbd21a13363981ff1f5fb09dfaab587eddbccfdbe6acf42e084c8248214de
test-bench-deps:
base: -any
shunya-library: -any
maintainer: example@example.com
synopsis: Initial project template from stack
changelog: ''
basic-deps:
base: ! '... | homepage: https://github.com/githubuser/shunya-library#readme
changelog-type: ''
hash: 2ad84c9dd11630a8a42109d1d0d52352a51dff5749f1b34075f281cbe67a09f1
test-bench-deps:
base: -any
shunya-library: -any
maintainer: example@example.com
synopsis: Initial project template from stack
changelog: ''
basic-deps:
base: ! '... | Update from Hackage at 2016-11-12T11:54:41Z | Update from Hackage at 2016-11-12T11:54:41Z | YAML | mit | commercialhaskell/all-cabal-metadata |
4cbf08018b32987b1b920aa3125d2bf5b640e38e | plugins/fb_app/locales/en-US.yml | plugins/fb_app/locales/en-US.yml |
"en-US": &en-US
fb_app_plugin:
lib:
plugin:
name: 'Facebook integration'
description: 'Use the Cirandas app for Facebook!'
views:
myprofile:
checking_auth: 'Checking authorization'
different_login: 'But you are logged in on facebook as:'
current_login: '... |
"en-US": &en-US
fb_app_plugin:
lib:
plugin:
name: 'Facebook integration'
description: 'Use the Cirandas app for Facebook!'
views:
myprofile:
checking_auth: 'Checking authorization'
different_login: 'But you are logged in on facebook as:'
current_login: '... | Update English sentences for cirandasnoface | Update English sentences for cirandasnoface | YAML | agpl-3.0 | coletivoEITA/noosfero-ecosol,samasti/noosfero,coletivoEITA/noosfero-ecosol,EcoAlternative/noosfero-ecosol,samasti/noosfero,coletivoEITA/noosfero-ecosol,blogoosfero/noosfero,EcoAlternative/noosfero-ecosol,CIRANDAS/noosfero-ecosol,CIRANDAS/noosfero-ecosol,coletivoEITA/noosfero-ecosol,samasti/noosfero,EcoAlternative/noosf... |
a101b11d5bd3225d78977f9fdacfdb0e44e9e156 | playbooks/common/openshift-cluster/upgrades/upgrade_components.yml | playbooks/common/openshift-cluster/upgrades/upgrade_components.yml | ---
- name: Upgrade Service Catalog
hosts: oo_first_master
vars:
first_master: "{{ groups.oo_first_master[0] }}"
tasks:
- import_role:
name: openshift_service_catalog
tasks_from: install.yml
when:
- openshift_enable_service_catalog | default(true) | bool
- import_role:
name: ansi... | ---
- name: Upgrade Service Catalog
hosts: oo_first_master
vars:
first_master: "{{ groups.oo_first_master[0] }}"
tasks:
- import_role:
name: openshift_service_catalog
tasks_from: install.yml
when:
- openshift_enable_service_catalog | default(true) | bool
- import_role:
name: ansi... | Allow installs of Node Problem Detector during upgrades | Allow installs of Node Problem Detector during upgrades
| YAML | apache-2.0 | maxamillion/openshift-ansible,jwhonce/openshift-ansible,aveshagarwal/openshift-ansible,openshift/openshift-ansible,rhdedgar/openshift-ansible,ewolinetz/openshift-ansible,mwoodson/openshift-ansible,tagliateller/openshift-ansible,rhdedgar/openshift-ansible,tagliateller/openshift-ansible,nak3/openshift-ansible,tagliatelle... |
ed2f49f90b08f0d8494d4a42e91c5f3b45f893ab | .zuul.yml | .zuul.yml | ui: mocha-bdd
server: ./test/support/server.js
browsers:
- name: chrome
version: latest
- name: firefox
version: latest
- name: safari
version: latest
- name: iphone
version: latest
- name: android
version: latest
- name: ie
version: 9..latest
| ui: mocha-bdd
server: ./test/support/server.js
tunnel_host: http://focusaurus.com
browsers:
- name: chrome
version: latest
- name: firefox
version: latest
- name: safari
version: latest
- name: iphone
version: latest
- name: android
version: latest
- name: ie
version: 9..latest
| Use focusaurus.com for localtunnel server | Use focusaurus.com for localtunnel server
Experimental to see if localtunnel.me is problematic or not
| YAML | mit | focusaurus/superagent,visionmedia/superagent,focusaurus/superagent,visionmedia/superagent,fredigato/superagent,craigspaeth/superagent,fredigato/superagent,craigspaeth/superagent,visionmedia/superagent |
d0f14691bb1dfdc437aa1bde9183e62f4de8c83a | .github/workflows/main.js.yml | .github/workflows/main.js.yml | # This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: main
on:
push:
branches: [ mast... | # This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: main
on:
push:
branches: [ mast... | Fix typo in Github action | Fix typo in Github action
| YAML | mit | shime/play-sound |
9d6a1372fc6636c261b81744805b7e54b55f837e | .github/workflows/publish.yml | .github/workflows/publish.yml | name: "Build and upload to PyPI"
on:
release:
types: ["published"]
workflow_dispatch:
jobs:
upload:
uses: "matrix-org/backend-meta/.github/workflows/release.yml@release/v1"
with:
repository: pypi
secrets:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
| name: "Build and upload to PyPI"
on:
release:
types: ["published"]
workflow_dispatch:
jobs:
upload:
uses: "matrix-org/backend-meta/.github/workflows/release.yml@v1"
with:
repository: pypi
secrets:
PYPI_API_TOKEN: ${{ secrets.PYPI_ACCESS_TOKEN }}
| Correct secret name; don't use twine verbose mode | Correct secret name; don't use twine verbose mode
| YAML | apache-2.0 | matrix-org/sydent,matrix-org/sydent,matrix-org/sydent |
9f2c721cafed48b4a17abc5d4b9ebffefac9c58f | .github/workflows/visuals.yml | .github/workflows/visuals.yml | name: Visual testing (Percy)
on:
push:
branches-ignore:
- crowdin
pull_request:
branches-ignore:
- crowdin
jobs:
visuals:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Percy Test
run: cd packages/ui && npm run percy | name: Visual testing (Percy)
on:
push:
branches-ignore:
- crowdin
pull_request:
branches-ignore:
- crowdin
jobs:
visuals:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node... | Use node 16 for visual testing | Use node 16 for visual testing
| YAML | agpl-3.0 | nukeop/nuclear,nukeop/nuclear,nukeop/nuclear,nukeop/nuclear |
8d718752852e8c518499222c07ef16d7747134e6 | plugins/tripleo-overcloud/vars/overcloud/templates/ovn-extras.yml | plugins/tripleo-overcloud/vars/overcloud/templates/ovn-extras.yml | ---
tripleo_heat_templates:
[]
custom_templates:
parameter_defaults:
NeutronDnsDomain: ovn.test
| ---
tripleo_heat_templates:
[]
custom_templates:
parameter_defaults:
NeutronDnsDomain: openstackgate.local
| Change dns domain to openstackgate.local | Change dns domain to openstackgate.local
Tempest test [1] is configured to watch for 'openstackgate.local'
domain_name. There is no mechanism of detecting neutron configuration
in tempest tests, so that the domain_name that we use for OVN mechamism
driver needs to be the same.
[1]
https://github.com/openstack/neutron... | YAML | apache-2.0 | redhat-openstack/infrared,redhat-openstack/infrared,redhat-openstack/infrared |
b0cd30996b1129e4c37c2d2ead68c68b53220213 | jenkins/jobs/ops-restd-jobs.yaml | jenkins/jobs/ops-restd-jobs.yaml | - job-template:
name: 'ops-restd-check-{platform}'
node: openswitch
wrappers:
- build-timeout:
timeout: 120
- timestamps
- ansicolor
builders:
- revoke-sudo
- module-build-branch:
module: 'ops-restd'
platform: '{platform}'
- job... | - job-template:
name: 'ops-restd-check-{platform}'
node: openswitch
wrappers:
- build-timeout:
timeout: 120
- timestamps
- ansicolor
builders:
- revoke-sudo
- module-build-branch:
module: 'ops-restd'
platform: '{platform}'
- ... | Revert "Enabling CIT for rest" | Revert "Enabling CIT for rest"
This reverts commit b1851083b53c924543fcbe22d0ba8dd82570b3b5.
Change-Id: Ia5e3abcda8c09d48ffe2a2b875baa026960f2488
| YAML | apache-2.0 | open-switch/infra_project-config,open-switch/infra_project-config |
89b1ef25ed7c32137360754ccb6eddff6b9ac5cd | lightsail/templates/httpbeat.yml | lightsail/templates/httpbeat.yml | httpbeat.hosts:
- url: http://frontend.{{ domain }}/health
method: get
schedule: "@every 10s"
output_format: json
#basic_auth:
#username: admin
#password: admin
- url: http://frontend.{{ domain }}/metrics
method: get
schedule: "@every 10s"
output_format: json
output.elasticsearch:
hosts: ["{... | httpbeat.hosts:
- url: http://frontend.{{ domain }}/health
method: get
schedule: "@every 10s"
output_format: json
#basic_auth:
#username: admin
#password: admin
- url: http://frontend.{{ domain }}/metrics
method: get
schedule: "@every 10s"
output_format: json
json_dot_mode: replace
output.el... | FIX the ingestion of Spring Boot metrics — bad dots in field names… | FIX the ingestion of Spring Boot metrics — bad dots in field names…
| YAML | mit | xeraa/microservice-monitoring,xeraa/microservice-monitoring,xeraa/microservice-monitoring,xeraa/microservice-monitoring |
84f18e5ceed1b4aacc76a808d3cc36b34e80a321 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: debian:stable-slim
steps:
- run: apt-get -y update
- run: apt-get -y install coreutils qemu virtualbox gawk sed curl wget make git ssh
- checkout
- run: make debian-stretch
- run: make ubuntu-bionic
- run: make centos
workflows... | version: 2
jobs:
build:
docker:
- image: debian:stretch-slim
steps:
- run: echo 'deb http://download.virtualbox.org/virtualbox/debian stretch contrib' > /etc/apt/sources.list.d/virtualbox.list
- run: wget https://www.virtualbox.org/download/oracle_vbox_2016.asc
- run: apt-key add oracl... | Install virtualbox from upstream apt repo. | Install virtualbox from upstream apt repo.
| YAML | apache-2.0 | flaccid/machine-image-tools |
2bf04825c8c1bdc5912a8e5584860341f95a9ee8 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
hdf5-18:
docker:
- image: astrofrog/hyperion-ci-hdf5-18:1.4
steps:
- checkout
- run:
name: Initialize submodule
command: |
git submodule init
git submodule update
- run:
name: Compiling Fortran code
c... | version: 2
jobs:
hdf5-18:
docker:
- image: astrofrog/hyperion-ci-hdf5-18:1.4
steps:
- checkout
- run:
name: Initialize submodule
command: |
git submodule init
git submodule update
- run:
name: Compiling Fortran code
c... | Use updated Docker image with HDF5 1.10.4 instead of 1.10.0-patch1 | Use updated Docker image with HDF5 1.10.4 instead of 1.10.0-patch1 | YAML | bsd-2-clause | hyperion-rt/hyperion,hyperion-rt/hyperion,hyperion-rt/hyperion |
e8a6a27bb8d60303b310efb5adcc176aac2acb65 | .circleci/config.yml | .circleci/config.yml | # CircleCI is used only for linter and syntax checks
version: 2
jobs:
# Run Ansible-lint checks
ansible-lint:
docker:
- image: yokogawa/ansible-lint:4.3.7
steps:
- checkout
- run:
name: Ansible YAML syntax check
command: |
ansible-playbook --syntax-check sta... | # CircleCI is used only for linter and syntax checks
version: 2
jobs:
# Run Ansible-lint checks
ansible-lint:
docker:
- image: yokogawa/ansible-lint:v4.3.7
steps:
- checkout
- run:
name: Ansible YAML syntax check
command: |
ansible-playbook --syntax-check st... | Use earlier ansible-lint docker image, as otherwise complains about role names | Use earlier ansible-lint docker image, as otherwise complains about role names
| YAML | apache-2.0 | StackStorm/ansible-st2,armab/ansible-st2 |
5d8d69a28a653b2027a83bbdbc846b3d38a0f277 | .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.6.5@sha256:f31578f08e0774e17df8ed67c61d8062eb459a832d64d831c83d764b2f9c9619
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.6.5@sha256:b9c4257e77e8e9b0defd883454e5e3d836acc2cf76552c5a496368aecb1929f6
working_directory: ~/repo
steps:
- checko... | Update circleci/python:3.6.5 Docker digest to b9c425 | Update circleci/python:3.6.5 Docker digest to b9c425 | YAML | bsd-3-clause | kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler |
9a81823cae07bc1183d62afcff3d67f50249d20a | .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
jobs:
build:
docker:
# specify the version you desire here
- image: regviz/node-xcb
# Specify service dependencies here if necessary
# CircleCI main... | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: regviz/node-xcb
# Specify service dependencies here if necessary
# CircleCI main... | Remove custom user creation commands | Remove custom user creation commands
| YAML | mit | Ciunkos/ciunkos.com |
3bd04b9443718b588087729c16abfdce252ee2c8 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/phovea
docker:
- image: circleci/python:3.7-node-browsers
environment:
NODE_VERSION: 10.16.3
tags:
- /v\d+.\d+.\d+.*/
steps:
- checkout
- run:
command: |
(!(test -f docker_packages.txt) || (cat... | version: 2
jobs:
build:
working_directory: ~/phovea
docker:
- image: circleci/python:3.7-node-browsers
environment:
NODE_VERSION: 8.16.1
tags:
- /v\d+.\d+.\d+.*/
steps:
- checkout
- run:
command: |
(!(test -f docker_packages.txt) || (cat ... | Use node v8.16.1 in circleci docker image | Use node v8.16.1 in circleci docker image
| YAML | bsd-3-clause | phovea/phovea_server,phovea/phovea_server,Caleydo/caleydo_server,phovea/phovea_server,phovea/phovea_server,Caleydo/caleydo_server |
967e64622e97081752b501a4d4f29553b3d863e7 | .circleci/config.yml | .circleci/config.yml | version: 2
make_run: &make_run
docker:
- image: golang:1.13.7
steps:
- checkout
- run:
name: Packer Run
command: |
set -e
go build
make $MAKE_COMMAND
jobs:
lint:
<<: *make_run
environment:
MAKE_COMMAND: "lint"
test:
<<: *make_run
en... | version: 2
make_run: &make_run
docker:
- image: golang:1.13.7
steps:
- checkout
- run:
name: Packer Run
command: |
set -e
go build
make $MAKE_COMMAND
jobs:
lint:
<<: *make_run
environment:
MAKE_COMMAND: "lint"
test:
<<: *make_run
en... | Revert "Enable Automatic Tagging in CircleCI" | Revert "Enable Automatic Tagging in CircleCI"
| YAML | apache-2.0 | negronjl/terraform-provider-maas |
dc8687f1ead3e9c243f2edad8929518ecee6745a | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: debian:stretch
steps:
- add-ssh-keys:
fingerprints:
- '56:76:54:43:c3:70:31:03:b5:ff:20:89:43:af:a2:48'
- checkout
- run:
name: Create slummed mirror of this branch
command: git branch slummed/$CIRCLE_BRA... | version: 2
jobs:
build:
docker:
- image: alpine/git
steps:
- add-ssh-keys:
fingerprints:
- '56:76:54:43:c3:70:31:03:b5:ff:20:89:43:af:a2:48'
- checkout
- run:
name: Create slummed mirror of this branch
command: git branch slummed/$CIRCLE_BRANCH &... | Use Alpine Git image for CI | Use Alpine Git image for CI
| YAML | mit | stuartpb/git-slum |
b84a407088a5bb651b51dd5ba85e1e18026e5b1b | .circleci/config.yml | .circleci/config.yml | # Java Maven CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:8-jdk
# Specify service dependencies here if necessary
# CircleCI maintain... | # Java Maven CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:11-jdk
# Specify service dependencies here if necessary
# CircleCI maintai... | Change a image of circleci to 11-jdk | Change a image of circleci to 11-jdk
| YAML | epl-1.0 | kawasima/bouncr,kawasima/bouncr,kawasima/bouncr,kawasima/bouncr |
ce7fe162bbd9055ec1f0a91d4059a79d245ca96e | .circleci/config.yml | .circleci/config.yml | 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: |
set -e
case $CIRCLE_NODE_I... | version: 2
jobs:
build:
working_directory: ~/rabbithole
docker:
- image: jcollado/rabbithole-ci:0.1
parallelism: 4
steps:
- checkout
- restore_cache:
key: rabbithole-{{ .Branch }}-{{ .Environment.CIRCLE_NODE_INDEX }}
- run: |
set -e
case $CIRCLE_NO... | Use 0.1 tag for CI image | Use 0.1 tag for CI image
The latest tag cannot be cached and it needs to be downloaded each time
| YAML | mit | jcollado/rabbithole |
db2270fee95b42b1d1ad95697558e9ffb57f3a5f | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
dapp_lint:
docker:
- image: node:8.7
working_directory: ~/project/dapp
steps:
- checkout:
path: ~/project
- run: yarn
- run: yarn run solium --dir contracts/
dapp_test:
docker:
- image: ... | version: 2
jobs:
dapp_lint:
docker:
- image: node:8.7
working_directory: ~/project/dapp
steps:
- checkout:
path: ~/project
- run: yarn
- run: yarn run solium --dir contracts/
dapp_test:
docker:
- image: ... | Fix cache key save in CircleCI | Fix cache key save in CircleCI
| YAML | apache-2.0 | Getline-Network/getline,Getline-Network/getline,Getline-Network/getline,Getline-Network/getline,Getline-Network/getline |
a7c86882cb71b1ff98b0346d816ba03cd6c24b26 | assets.yml | assets.yml | javascript_compressor: closure
template_function: dc._.template
embed_assets: datauri
javascripts:
note_embed:
- bower_components/underscore/underscore.js
- bower_components/jquery/dist/jquery.js
- js/note_embed.js
- templates/*.jst
stylesheets:
note_embed:
- css/note_embed.css
| compress_assets: true
javascript_compressor: closure
template_function: dc._.template
embed_assets: datauri
javascripts:
note_embed:
- bower_components/underscore/underscore.js
- bower_components/jquery/dist/jquery.js
- js/note_embed.js
- templates/*.jst
stylesheets:
note_embed:
- css/note_emb... | Add compress: true flag as a hint to folks tinkering with repository. | Add compress: true flag as a hint to folks tinkering with repository. | YAML | mit | documentcloud/documentcloud-notes,documentcloud/documentcloud-notes,documentcloud/documentcloud-notes |
5095a91851515e6150e8b843addb45e6c654703c | Magic/src/main/resources/examples/potter/items/skull_ollivander.yml | Magic/src/main/resources/examples/potter/items/skull_ollivander.yml | skull_ollivander: player_head{display:{Name:"{\"text\":\"Ollivander\"}"},SkullOwner:{Id:[I;-810238844,-1257419440,-1615805572,-1442094482],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODFjMzViY2MxMDM5ZGJkM2NhMmFmNTY4ZmJiNjE4ZWQzZjlmNTVlZTQ2YzQ0MWN... | skull_ollivander:
item: skull{display:{Name:"{\"text\":\"Ollivander\"}"},SkullOwner:{Id:[I;-810238844,-1257419440,-1615805572,-1442094482],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODFjMzViY2MxMDM5ZGJkM2NhMmFmNTY4ZmJiNjE4ZWQzZjlmNTVlZTQ2YzQ0M... | Fix ollivander head on legacy minecraft versions | Fix ollivander head on legacy minecraft versions
| YAML | mit | elBukkit/MagicPlugin,elBukkit/MagicPlugin,elBukkit/MagicPlugin |
0f9342ce7371860508dbc28c2e2bb8d912faf91b | metadata/com.plexer0.nitter.yml | metadata/com.plexer0.nitter.yml | Categories:
- Internet
License: AGPL-3.0-only
AuthorName: Plexer
SourceCode: https://gitlab.com/Plexer0/Nitter-Android
IssueTracker: https://gitlab.com/Plexer0/Nitter-Android/issues
AutoName: Nitter
RepoType: git
Repo: https://gitlab.com/Plexer0/Nitter-Android.git
Builds:
- versionName: '1.4'
versionCode: 5
... | Categories:
- Internet
License: AGPL-3.0-only
AuthorName: Plexer
SourceCode: https://gitlab.com/Plexer0/Nitter-Android
IssueTracker: https://gitlab.com/Plexer0/Nitter-Android/issues
AutoName: Nitter
RepoType: git
Repo: https://gitlab.com/Plexer0/Nitter-Android.git
Builds:
- versionName: '1.4'
versionCode: 5
... | Update Nitter to 1.5 (6) | Update Nitter to 1.5 (6)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
634c0b952d642d223c995ad6a7684ecbb9bd50b8 | data/building-hours/3-2-print-center.yaml | data/building-hours/3-2-print-center.yaml | name: Print Center
image: print
category: Mail and Packages
schedule:
- title: Hours
closedForChapelTime: true
hours:
- {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '5:00pm'}
breakSchedule:
fall: []
thanksgiving: []
winter: []
interim: []
spring: []
easter: []
summer:
- title: Ho... | name: Print Center
image: print
category: Mail and Packages
schedule:
- title: Hours
closedForChapelTime: true
hours:
- {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '5:00pm'}
breakSchedule:
fall: []
thanksgiving: []
winter: []
interim: []
spring: []
easter: []
summer:
- title: Ho... | Update summer print center hours | Update summer print center hours
| YAML | agpl-3.0 | StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native |
423d5b18bbb6f2cc78e7fce25487ba54cb535c72 | environment.yml | environment.yml | name: nilmtk-env
dependencies:
- python=3.6.4
- Cython>=0.27.3
- bottleneck>=1.2.1
- numpy>=1.13.3
- numexpr>=2.6.4
- pytables
- pandas==0.22.0
- matplotlib
- networkx==2.1
- scipy>=1.0.0
- scikit-learn>=0.19.1
- jupyter
- ipython
- six
- future
- nose
- coverage
- pip
- pip: # Install packages which are not in conda.... | name: nilmtk-env
dependencies:
- python=3.6.4
- Cython>=0.27.3
- bottleneck>=1.2.1
- numpy>=1.13.3
- numexpr>=2.6.4
- pytables
- pandas==0.22.0
- matplotlib
- networkx==2.1
- scipy>=1.0.0
- scikit-learn>=0.19.1
- jupyter
- ipython
- six
- future
- nose
- coverage
- pip
- pip: # Install packages which are not in conda.... | Revert the repository URL back to the main repository | Revert the repository URL back to the main repository
| YAML | apache-2.0 | nilmtk/nilmtk,nilmtk/nilmtk |
d18160c6226e380dc3bb2a12ae57b0af670d278e | environment.yml | environment.yml | name: psci
channels:
- defaults
- conda-forge
dependencies:
- python=3.6
- matplotlib
- numpy
- pandas>=0.22.0
- jupyter
- seaborn
- nb_conda_kernels
- geopandas
- fiona
- shapely
- xlrd
- feather-format
- joblib
pip:
- yapf
- watermark
| name: psci
channels:
- defaults
- conda-forge
dependencies:
- python=3.6
- matplotlib
- numpy
- pandas>=0.22.0
- jupyter
- seaborn
- nb_conda_kernels
- geopandas
- fiona
- shapely
- xlrd
- feather-format
- joblib
- scikit-learn
pip:
- yapf
- watermark
| Add scikit-learn for knn in determing NERC labels | Add scikit-learn for knn in determing NERC labels
| YAML | bsd-3-clause | gschivley/Index-variability |
3dd3a2b9e9f8b2f588c28e66e100171c94da3364 | .github/stale.yml | .github/stale.yml | # Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- high priority
- pending-publication
# Label to use when marking an issue as stale
... | # Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- high priority
- pending-publication
- add-language
- add-beautifier
# Label to... | Update to exclude add language and beautifier | Update to exclude add language and beautifier | YAML | mit | Glavin001/atom-beautify,Glavin001/atom-beautify,Glavin001/atom-beautify,Glavin001/atom-beautify,Glavin001/atom-beautify |
d7a201250b3a42333b4bbdfef5aea6825b6715df | .github/workflows/validate-lang-files.yml | .github/workflows/validate-lang-files.yml | name: Validate Language Files
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run:
name: Validate Language Files
runs-on: ubuntu-latest
steps:
- name: Checkout the branch
uses: actions/checkout@v2
- name: Set up Python
uses: actions/set... | name: Validate Language Files
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run:
name: Validate Language Files
runs-on: ubuntu-latest
steps:
- name: Checkout the branch
uses: actions/checkout@v2
- name: Set up Python
uses: actions/set... | Revise how command errors (try 3) | Revise how command errors (try 3)
| YAML | agpl-3.0 | codethesaurus/codethesaur.us,codethesaurus/codethesaur.us |
253acc4ca339ffe16445e46346f6bbbee34b4702 | script/netbootxyz-overrides.yml | script/netbootxyz-overrides.yml | ---
sigs_menu: true
sigs_enabled: true
generate_disks_arm: true
generate_version_file: true
bootloader_multiple: true
bootloader_disks:
- "netboot.xyz"
- "netboot.xyz-packet"
generate_signatures: true
sigs_dir: "{{ netbootxyz_root }}/sigs"
sigs_location: "http://${boot_domain}/sigs/"
cert_dir: "/ansible/certs"
ipxe... | ---
sigs_menu: true
sigs_enabled: true
generate_disks_arm: true
generate_version_file: true
bootloader_multiple: true
bootloader_disks:
- "netboot.xyz"
- "netboot.xyz-packet"
generate_signatures: true
sigs_dir: "{{ netbootxyz_root }}/sigs"
sigs_location: "http://${boot_domain}/sigs/"
cert_dir: "/ansible/certs"
ipxe... | Move back to iPXE master branch | Move back to iPXE master branch
| YAML | apache-2.0 | antonym/netboot.xyz,antonym/netboot.xyz,antonym/netboot.xyz |
ac452574e2bb9e9d1acab5f3ac6a6f11e909e707 | .github/workflows/build-windows-msys2.yml | .github/workflows/build-windows-msys2.yml | name: Windows (MSYS2)
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- name: "Setup MSYS2"
uses: msys2/setup-msys2@v2
with:
release: false
... | name: Windows (MSYS2/MinGW)
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- name: "Setup MSYS2"
uses: msys2/setup-msys2@v2
with:
release: false
... | Remove old MinGW support (replaced with MSYS2/MinGW) | Remove old MinGW support (replaced with MSYS2/MinGW)
| YAML | mit | chronoxor/CppBenchmark,chronoxor/CppBenchmark |
8be60814ceb2b6969ea821d1b25c450a44dc9b27 | hieradata/node/asset-slave-1.backend.publishing.service.gov.uk.yaml | hieradata/node/asset-slave-1.backend.publishing.service.gov.uk.yaml | ---
govuk::node::s_asset_slave::offsite_backups: true
backup::assets::archive_directory: '/mnt/duplicity-cache'
lv:
data:
pv:
- '/dev/sdc1'
- '/dev/sdd1'
vg: 'uploads'
cache:
pv:
- '/dev/sda1'
vg: 'duplicity'
mount:
/mnt/uploads:
disk: '/dev/mapper/uploads-data'
govuk_... | ---
govuk::node::s_asset_slave::offsite_backups: true
backup::assets::archive_directory: '/mnt/duplicity-cache'
lv:
data:
pv:
- '/dev/sdc1'
- '/dev/sdd1'
vg: 'uploads'
cache:
pv:
- '/dev/sda1'
- '/dev/sde1'
vg: 'duplicity'
mount:
/mnt/uploads:
disk: '/dev/mapper/uplo... | Add disk to duplicity-cache mount | Add disk to duplicity-cache mount
Increase the size of the duplicity cache. Since we added additional
backups for S3 this runs out of space which means backups end up
failing. Add another disk to increase size of the cache.
| YAML | mit | alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet |
d65387c48367baa5931425e774b6b6d3540938fc | 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.14'
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 | bbatsov/rubocop,maxjacobson/rubocop,rrosenblum/rubocop,maxjacobson/rubocop,tejasbubane/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,tejasbubane/rubocop,maxjacobson/rubocop,rrosenblum/rubocop,bbatsov/rubocop |
978d56382df89fa970b7599f3fdf9684207b9494 | 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.4'
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 to master | Switch back the docs version to master
| YAML | mit | bbatsov/rubocop,rrosenblum/rubocop,tdeo/rubocop,tdeo/rubocop,maxjacobson/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,maxjacobson/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,maxjacobson/rubocop,tdeo/rubocop,bbatsov/rubocop,tejasbubane/rubocop |
2df58b4f85055f69ffbc12d9f0eddbe6edf5a740 | readthedocs.yml | readthedocs.yml | # Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2
sphinx:
builder: html
configuration: docs/conf.py
fail_on_warning: false
python:
version: 3.9
install:
- requirements: requirements/requirements-docs.txt
- requirements: require... | # Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2
sphinx:
builder: html
configuration: docs/conf.py
fail_on_warning: false
python:
version: 3.8
install:
- requirements: requirements/requirements-docs.txt
- requirements: require... | Change Python version for RTD | Change Python version for RTD
PiperOrigin-RevId: 478007803
| YAML | apache-2.0 | deepmind/optax,deepmind/optax |
dc3fcdcaa904d0542b0e33496d1b58e8bb064997 | .github/workflows/pull_requests.yml | .github/workflows/pull_requests.yml | name: PR triage
on:
pull_request:
types: [opened]
jobs:
labelPRsForTriage:
name: Apply PR Triage Label
runs-on: ubuntu-latest
steps:
- uses: actions/github@v1.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: label needs-triage
repo-to... | name: PR triage
on:
pull_request:
types: [opened]
jobs:
labelPRsForTriage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1.0.0
- name: Apply PR Triage Label
uses: actions/github@v1.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: label ne... | Revert PR triage label action changes | Revert PR triage label action changes | YAML | mpl-2.0 | terraform-providers/terraform-provider-aws,terraform-providers/terraform-provider-aws,kjmkznr/terraform-provider-aws,kjmkznr/terraform-provider-aws,kjmkznr/terraform-provider-aws,terraform-providers/terraform-provider-aws,kjmkznr/terraform-provider-aws,terraform-providers/terraform-provider-aws |
1eae64e401a9f1435552443d56f280496779dfb7 | .github/workflows/subtree-split.yml | .github/workflows/subtree-split.yml | name: 'Split up the monorepo into subrepositories'
on:
push:
branches:
- '5.*'
- '6.*'
create:
tags:
- '*'
delete:
tags:
- '*'
jobs:
sync_commits:
runs-on: ubuntu-latest
name: Sync commits
if: github.reposi... | name: 'Split up the monorepo into subrepositories'
on:
push:
branches:
- '5.*'
- '6.*'
create:
tags:
- '*'
delete:
tags:
- '*'
jobs:
sync_commits:
runs-on: ubuntu-latest
name: Sync commits
if: github.reposi... | Fix used version constraint for subtree splitter | Fix used version constraint for subtree splitter
| YAML | mit | Kunstmaan/KunstmaanBundlesCMS,Kunstmaan/KunstmaanBundlesCMS,Kunstmaan/KunstmaanBundlesCMS,Kunstmaan/KunstmaanBundlesCMS |
04172ff9cd0f79a119b8723ceb088b995ca2b2e0 | tasks/build-and-publish/task.yml | tasks/build-and-publish/task.yml | ---
platform: linux
image_resource:
type: docker-image
source:
repository: node:8
inputs:
- name: buildpacks-ci
- name: buildpacks-site
params:
AWS_ACCESS_KEY_ID:
AWS_SECRET_ACCESS_KEY:
AWS_BUCKET:
run:
path: buildpacks-ci/tasks/build-and-publish/run.sh
| ---
platform: linux
image_resource:
type: docker-image
source:
repository: node
tag: '8'
inputs:
- name: buildpacks-ci
- name: buildpacks-site
params:
AWS_ACCESS_KEY_ID:
AWS_SECRET_ACCESS_KEY:
AWS_BUCKET:
run:
path: buildpacks-ci/tasks/build-and-publish/run.sh
| Use node 8 for buildpacks-site build | Use node 8 for buildpacks-site build
| YAML | apache-2.0 | cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci |
7eae5002dc6a6db6b4e458adc5c85f3117903d53 | packages/ch/character-cases.yaml | packages/ch/character-cases.yaml | homepage: https://github.com/aiya000/hs-character-cases#readme
changelog-type: ''
hash: 23dd4dc134e5bdd8712d5cfbf56ef3c4f211114955d66ad61c5684fb976fcc6b
test-bench-deps:
here: -any
base: ! '>=4.7 && <5'
megaparsec: -any
doctest: -any
containers: -any
prettyprinter: -any
Glob: -any
template-haskell: -any... | homepage: https://github.com/aiya000/hs-character-cases#readme
changelog-type: ''
hash: a2f0e82a2661d04587064afa7496ca4193a757a065b014b2aa22d107d444dae0
test-bench-deps:
here: -any
base: ! '>=4.7 && <5'
megaparsec: -any
doctest: -any
containers: -any
prettyprinter: -any
Glob: -any
template-haskell: -any... | Update from Hackage at 2020-03-29T13:33:49Z | Update from Hackage at 2020-03-29T13:33:49Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
8361330c64cbed87f556d4bb3c09bd65a04f1cf9 | _data/navigation.yml | _data/navigation.yml | # main links
main:
- title: "Location"
url: /_pages/location/
- title: "Schedule"
url: /_pages/schedule/
- title: "Registration"
url: /_pages/registration
- title: "Code of Conduct"
url: /_pages/code_of_conduct/
- title: "What is Mapping?"
url: /_pages/what_is_mapping/
#- title... | # main links
main:
# - title: "Location"
# url: /_pages/location/
# - title: "Schedule"
# url: /_pages/schedule/
# - title: "Registration"
# url: /_pages/registration
- title: "What is Mapping?"
url: /_pages/what_is_mapping/
- title: "Code of Conduct"
url: /_pages/code_of_conduct... | Comment out most nav items. | Comment out most nav items.
| YAML | mit | mapcampcommittee/mapcampcommittee.github.io,mapcampcommittee/mapcampcommittee.github.io,mapcampcommittee/mapcampcommittee.github.io |
dbae1f69c7c778d6f3c01a8c3a35162a050ceef7 | site.yml | site.yml | ---
- hosts: localhost
roles:
- role: google-cloud
gcloud_user: root
gcloud_home: /root
gae_java_version: 1.9.63
gcloud_version: 204.0.0
| ---
- hosts: localhost
roles:
- role: google-cloud
gcloud_user: root
gcloud_home: /root
gae_java_version: 1.9.64
gcloud_version: 204.0.0
| Update Java SDK to 1.9.64 | Update Java SDK to 1.9.64
| YAML | mit | codeship-library/google-cloud-deployment |
8307c390e7438700fd854c01ffa01e0c15ccb2c8 | packages/mo/more-containers.yaml | packages/mo/more-containers.yaml | homepage: https://github.com/mtth/more-containers#readme
changelog-type: ''
hash: 6a1e821a365bda00da7a3bb24e5c888b24a080eb4ab89b92ae8f60e2c58a7971
test-bench-deps:
more-containers: -any
base: ! '>=4.7 && <5'
hspec: ! '>=2.4 && <2.5'
containers: ! '>=0.5 && <0.6'
maintainer: matthieu.monsch@gmail.com
synopsis: A... | homepage: https://github.com/mtth/more-containers#readme
changelog-type: ''
hash: 20872e4de62d7c9b7f3917d8e1bdfed138d8beba85c8d7da8e90be88a455f959
test-bench-deps:
more-containers: -any
base: ! '>=4.6 && <5'
hspec: ! '>=2.4 && <2.5'
containers: ! '>=0.5 && <0.6'
maintainer: matthieu.monsch@gmail.com
synopsis: A... | Update from Hackage at 2017-12-26T00:28:00Z | Update from Hackage at 2017-12-26T00:28:00Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c26a67e559185d407f0cdb65a440676e30fefdd1 | metadata/de.wuapps.moredays.yml | metadata/de.wuapps.moredays.yml | Categories:
- Sports & Health
- Writing
License: GPL-3.0-only
AuthorName: wuapps
AuthorEmail: info@wuapps.de
AuthorWebSite: http://www.wuapps.de/
WebSite: http://www.wuapps.de/
SourceCode: https://gitlab.com/wuapps/moredays
IssueTracker: https://gitlab.com/wuapps/moredays/issues
Changelog: https://gitlab.com/wuapps... | Categories:
- Sports & Health
- Writing
License: GPL-3.0-only
AuthorName: wuapps
AuthorEmail: info@wuapps.de
AuthorWebSite: http://www.wuapps.de/
WebSite: http://www.wuapps.de/
SourceCode: https://gitlab.com/wuapps/moredays
IssueTracker: https://gitlab.com/wuapps/moredays/issues
Changelog: https://gitlab.com/wuapps... | Update moreDays to 1.0.9 (9) | Update moreDays to 1.0.9 (9)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
3584e16fc24af117d60d7a93f67cfea6864e0870 | packages/hs/hspec-expectations-lifted.yaml | packages/hs/hspec-expectations-lifted.yaml | homepage: ''
changelog-type: ''
hash: 43e88e0e7587ba1965ba3f2416500c239ad44ba19043bb249c6f307665e85208
test-bench-deps:
base: -any
hspec: ! '>=1.3'
hspec-expectations-lifted: -any
maintainer: Simon Hengel <sol@typeful.net>
synopsis: A version of hspec-expectations generalized to MonadIO
changelog: ''
basic-deps:
... | homepage: ''
changelog-type: ''
hash: 87e9c36db96e8719446363fab4946951897603b3b36274d5206d0cfe73a14bb9
test-bench-deps: {}
maintainer: Simon Hengel <sol@typeful.net>
synopsis: A version of hspec-expectations generalized to MonadIO
changelog: ''
basic-deps:
base: ==4.*
transformers: -any
hspec-expectations: ! '>=0... | Update from Hackage at 2016-11-02T07:42:01Z | Update from Hackage at 2016-11-02T07:42:01Z | YAML | mit | commercialhaskell/all-cabal-metadata |
f17c529498a5bc8e5396bc3b707b517b474b7c67 | metadata/it.diab.yml | metadata/it.diab.yml | Categories:
- Sports & Health
License: GPL-3.0-only
SourceCode: https://github.com/bvlj/diab
IssueTracker: https://github.com/bvlj/diab/issues
AutoName: Diab
Description: |-
Diab is a smart opensource application that helps you managing your
diabetes by keeping track of your glucose values and insulin inject... | Categories:
- Sports & Health
License: GPL-3.0-only
SourceCode: https://github.com/bvlj/diab
IssueTracker: https://github.com/bvlj/diab/issues
AutoName: Diab
Description: |-
Diab is a smart opensource application that helps you managing your
diabetes by keeping track of your glucose values and insulin inject... | Update Diab to 1.3.2 (380) | Update Diab to 1.3.2 (380)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
c383a935445d29c0acd1b4bc3dd28fc3f6f1fe59 | packages/di/digestive-functors-lucid.yaml | packages/di/digestive-functors-lucid.yaml | homepage: http://github.com/jaspervdj/digestive-functors
changelog-type: ''
hash: 731570ecaa0547081e812c88dbbb6d4fd34bab809c3914e27c6d7f60fa7f4f42
test-bench-deps: {}
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: Lucid frontend for the digestive-functors library
changelog: ''
basic-deps:
lucid: ! '>=2.9'
... | homepage: http://github.com/jaspervdj/digestive-functors
changelog-type: ''
hash: 120e6a7de53c5ab76f84f4604790f0f3cdc6b832d1e341d7dc9a56731b303870
test-bench-deps: {}
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: Lucid frontend for the digestive-functors library
changelog: ''
basic-deps:
lucid: ! '>=2.9'
... | Update from Hackage at 2015-06-30T20:02:27+0000 | Update from Hackage at 2015-06-30T20:02:27+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
d3c117759e58b4885166ee1af249be9879f9ba7d | src/Admingenerator/DemoBundle/Resources/config/generator.yml | src/Admingenerator/DemoBundle/Resources/config/generator.yml | generator: admingenerator.generator.doctrine
params:
model: Admingenerator\DemoBundle\Entity\Movie
namespace_prefix: Admingenerator
bundle_name: DemoBundle
fields:
producer:
label: Producer name
sort_on: producer.name
getter: producer.name
addFormOptions:
property: name
buil... | generator: admingenerator.generator.doctrine
params:
model: Admingenerator\DemoBundle\Entity\Movie
namespace_prefix: Admingenerator
bundle_name: DemoBundle
fields:
actors:
filterOn: actors.id
producer:
label: Producer name
sort_on: producer.name
getter: producer.name
addFo... | Add filters on many to many | Add filters on many to many
| YAML | mit | datagit/AdmingeneratorIpsum,symfony2admingenerator/AdmingeneratorIpsum,datagit/AdmingeneratorIpsum,datagit/AdmingeneratorIpsum,symfony2admingenerator/AdmingeneratorIpsum |
9a6de8a2afc9be7840e6631c073918c118be0805 | spring-cloud-dataflow-server/src/test/resources/docker-compose-it.yml | spring-cloud-dataflow-server/src/test/resources/docker-compose-it.yml | version: '3'
services:
dataflow-server:
environment:
- SPRING_CLOUD_DATAFLOW_CONTAINER_REGISTRY_CONFIGURATIONS_DEFAULT_USER=${SCDF_ITS_DOCKERHUB_USER}
- SPRING_CLOUD_DATAFLOW_CONTAINER_REGISTRY_CONFIGURATIONS_DEFAULT_SECRET=${SCDF_ITS_DOCKERHUB_PASSWORD}
| version: '3'
services:
dataflow-server:
environment:
- SPRING_CLOUD_DATAFLOW_CONTAINER_REGISTRY_CONFIGURATIONS_DEFAULT_USER=${bamboo.SCDF_ITS_DOCKERHUB_USER}
- SPRING_CLOUD_DATAFLOW_CONTAINER_REGISTRY_CONFIGURATIONS_DEFAULT_SECRET=${bamboo.SCDF_ITS_DOCKERHUB_PASSWORD}
| Add bamboo. prefix to the SCDF_TIS_DOCKERHUB_XX env. variables | Add bamboo. prefix to the SCDF_TIS_DOCKERHUB_XX env. variables
| YAML | apache-2.0 | jvalkeal/spring-cloud-dataflow,spring-cloud/spring-cloud-dataflow,spring-cloud/spring-cloud-dataflow,spring-cloud/spring-cloud-data,jvalkeal/spring-cloud-dataflow,jvalkeal/spring-cloud-data,jvalkeal/spring-cloud-dataflow,ilayaperumalg/spring-cloud-dataflow,cppwfs/spring-cloud-dataflow,jvalkeal/spring-cloud-dataflow,jva... |
7138d3518e1b3ed2f1f7d5863d444218bd32fd18 | packages/bower-json/.travis.yml | packages/bower-json/.travis.yml | before_script:
- npm install -g grunt-cli
language: node_js
node_js:
- "0.10"
- "0.8"
| before_install:
- npm install -g npm
- npm install -g grunt-cli
language: node_js
node_js:
- "0.10"
- "0.8"
| Fix CI setting to pass the test against Node v0.8 | Fix CI setting to pass the test against Node v0.8
| YAML | mit | bower/bower,thinkxl/bower,rlugojr/bower |
377f6c89637714dc5644bffc0f483331f1b5148e | packages/ya/yam-app.yaml | packages/ya/yam-app.yaml | homepage: https://github.com/leptonyu/yam/tree/master/yam-app#readme
changelog-type: ''
hash: b32f25ab3444f2629ea741bcd30e0484f733a5707bac67d229465633ace8ec58
test-bench-deps: {}
maintainer: Daniel YU <leptonyu@gmail.com>
synopsis: Yam App
changelog: ''
basic-deps:
exceptions: -any
base: ! '>=4.7 && <5'
time: -an... | homepage: https://github.com/leptonyu/yam/tree/master/yam-app#readme
changelog-type: ''
hash: ff6a404b82429b388ccec66a6411c9455f311213d19195e8687be2037b3bba02
test-bench-deps: {}
maintainer: Daniel YU <leptonyu@gmail.com>
synopsis: Yam App
changelog: ''
basic-deps:
exceptions: -any
base: ! '>=4.7 && <5'
time: -an... | Update from Hackage at 2018-01-14T07:04:41Z | Update from Hackage at 2018-01-14T07:04:41Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9e934511f3603262079ba99f6f3027d4a41297f9 | packages/in/interpolatedstring-perl6.yaml | packages/in/interpolatedstring-perl6.yaml | homepage: ''
changelog-type: ''
hash: c72a603da1f2b5cc9965f74091a3ef6d17b0fccf060bd27fb0162ac286907577
test-bench-deps: {}
maintainer: Audrey Tang <audreyt@audreyt.org>
synopsis: QuasiQuoter for Perl6-style multi-line interpolated strings
changelog: ''
basic-deps:
bytestring: -any
base: ! '>4 && <5'
text: -any
... | homepage: ''
changelog-type: ''
hash: 7ce49c8a69a2a1b89c001ed79db2aab656ffd0faf2a7a701a553b6deb5c8ba7f
test-bench-deps: {}
maintainer: Audrey Tang <audreyt@audreyt.org>
synopsis: QuasiQuoter for Perl6-style multi-line interpolated strings
changelog: ''
basic-deps:
bytestring: -any
base: ! '>4 && <5'
text: -any
... | Update from Hackage at 2019-10-15T04:08:08Z | Update from Hackage at 2019-10-15T04:08:08Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0d2fd95bf9adc1ac872ea333af10d4cc30daeaa1 | templates/blobstore-job.yml | templates/blobstore-job.yml | releases:
- name: cf
version: latest
jobs:
- (( prepend ))
- name: blobstore
templates:
- name: blobstore
release: cf
instances: (( grab metadata.blobstore.instances ))
resource_pool: common
persistent_disk: 102400
networks:
- name: default
static_ips: (( static_ip... | releases:
- name: cf
version: latest
jobs:
- (( prepend ))
- name: blobstore
templates:
- name: blobstore
release: cf
instances: (( grab metadata.blobstore.instances ))
resource_pool: common
persistent_disk: 102400
networks:
- name: default
static_ips: (( static_ip... | Change blobstore port to new default in CAPI release | Change blobstore port to new default in CAPI release
The change in the CAPI-release is
https://github.com/cloudfoundry/capi-release/commit/b5d2485c9804dd5cee753face61553682468e975#diff-08ab671b2153c42ab07e485be374dd6fR37
| YAML | apache-2.0 | cloudfoundry-incubator/bits-service-release,cloudfoundry-incubator/bits-service-release,cloudfoundry-incubator/bits-service-release,cloudfoundry-incubator/bits-service-release |
922e09ba7be884a42958edbe53a9baca5897c456 | rest-api-spec/src/main/resources/rest-api-spec/test/nodes.info/10_basic.yml | rest-api-spec/src/main/resources/rest-api-spec/test/nodes.info/10_basic.yml | setup:
- skip:
features: [arbitrary_key]
---
"node_info test":
- do:
nodes.info: {}
- set:
nodes._arbitrary_key_: node_id
- is_true: nodes
- is_true: cluster_name
---
"node_info role test":
- skip:
version: " - 7.99.99"
reason: "node roles were not sorted before 8.0.0"
... | setup:
- skip:
features: [arbitrary_key]
---
"node_info test":
- do:
nodes.info: {}
- set:
nodes._arbitrary_key_: node_id
- is_true: nodes
- is_true: cluster_name
---
"node_info role test":
- skip:
version: " - 7.7.99"
reason: "node roles were not sorted before 7.8.0"
f... | Adjust BWC version on node roles being sorted | Adjust BWC version on node roles being sorted
Node roles are sorted now as of 7.8.0. This commit adjusts the BWC
version for tests.
| YAML | apache-2.0 | GlenRSmith/elasticsearch,HonzaKral/elasticsearch,gingerwizard/elasticsearch,scorpionvicky/elasticsearch,gingerwizard/elasticsearch,uschindler/elasticsearch,robin13/elasticsearch,HonzaKral/elasticsearch,uschindler/elasticsearch,nknize/elasticsearch,nknize/elasticsearch,GlenRSmith/elasticsearch,scorpionvicky/elasticsearc... |
2d044efaa1a2878d47b468308b2c82c5f0bc2e1f | packages/li/libffi-dynamic.yaml | packages/li/libffi-dynamic.yaml | homepage: /dev/null
changelog-type: ''
hash: 1098959269fdbd55564f0b3ecbb8d9e71b4ce4324593d534ff67cdd50557d586
test-bench-deps: {}
maintainer: James Cook <mokus@deepbondi.net>
synopsis: |-
LibFFI interface with dynamic bidirectional
type-driven binding generation
changelog: ''
basic-deps:
base: ! '>=3 && <5'
int... | homepage: /dev/null
changelog-type: ''
hash: 1af1f95d3f314b3517a31a42428e4e175666dbec07724fbc54d6dbd530b15812
test-bench-deps: {}
maintainer: James Cook <mokus@deepbondi.net>
synopsis: |-
LibFFI interface with dynamic bidirectional
type-driven binding generation
changelog: ''
basic-deps:
base: ! '>=3 && <5'
int... | Update from Hackage at 2019-05-29T19:58:31Z | Update from Hackage at 2019-05-29T19:58:31Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9cdc3cd44bbc68bb3d8c4e9eb10af672058bba82 | scripts/release/release-notes-sections.yml | scripts/release/release-notes-sections.yml | changelog:
repository: spring-projects/spring-security
sections:
- title: ":rewind: Breaking Changes"
labels: ["type: breaks-passivity"]
sort: "title"
- title: ":star: New Features"
labels: ["type: enhancement"]
sort: "title"
- title: ":beetle: Bug Fixes"
labels: ["type:bug... | changelog:
repository: spring-projects/spring-security
sections:
- title: ":rewind: Breaking Changes"
labels: ["type: breaks-passivity"]
sort: "title"
- title: ":star: New Features"
labels: ["type: enhancement"]
sort: "title"
- title: ":beetle: Bug Fixes"
labels: ["type: bu... | Fix bug label for generateChangelog task | Fix bug label for generateChangelog task
| YAML | apache-2.0 | rwinch/spring-security,rwinch/spring-security,spring-projects/spring-security,rwinch/spring-security,spring-projects/spring-security,rwinch/spring-security,rwinch/spring-security,spring-projects/spring-security,rwinch/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring... |
1d041dd9547347b9c25c449436705cdef41507ce | packages/si/singleton-nats.yaml | packages/si/singleton-nats.yaml | homepage: ''
changelog-type: ''
hash: c2a4cb382adac9c906a7b20fcf54ff7906b2952047ca6836ee01b08b3b9f13d8
test-bench-deps: {}
maintainer: puttamalac@gmail.com
synopsis: Unary natural numbers relying on the singletons infrastructure.
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.9'
singletons: ! '>=2.0.1'
all-versions... | homepage: https://github.com/AndrasKovacs/singleton-nats
changelog-type: ''
hash: 052aef630805e1a63d8c4e43dc0d1e06d1b0b8bd7b62eabe9fd9ca10b771a11d
test-bench-deps: {}
maintainer: puttamalac@gmail.com
synopsis: Unary natural numbers relying on the singletons infrastructure.
changelog: ''
basic-deps:
base: ! '>=4.8.1.0... | Update from Hackage at 2015-10-27T08:17:08+0000 | Update from Hackage at 2015-10-27T08:17:08+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
e8a0294ff81853046b1336b77af203006f3ef8a3 | scripts/ci/run-consats/task.yml | scripts/ci/run-consats/task.yml | ---
platform: linux
image: docker:///cloudfoundry/mega-ci
inputs:
- name: mega-ci
- name: private-credentials
- name: consul-release
run:
path: mega-ci/scripts/ci/run-consats/task
params:
AWS_ACCESS_KEY_ID:
AWS_AVAILIBILITY_ZONE:
AWS_REGION:
AWS_SECRET_ACCESS_KEY:
AWS_SECURITY_GROUP_NAME:
AWS_SU... | ---
platform: linux
image: docker:///cfinfrastructure/deployment
inputs:
- name: mega-ci
- name: private-credentials
- name: consul-release
run:
path: mega-ci/scripts/ci/run-consats/task
params:
AWS_ACCESS_KEY_ID:
AWS_AVAILIBILITY_ZONE:
AWS_REGION:
AWS_SECRET_ACCESS_KEY:
AWS_SECURITY_GROUP_NAME:
... | Replace mega-ci with deployment docker image | Replace mega-ci with deployment docker image
[#114838947]
Signed-off-by: Adrian Zankich <06c4bdd5da019c5d30546d0230d625621ed622b0@pivotal.io>
| YAML | apache-2.0 | cloudfoundry/mega-ci,cloudfoundry/mega-ci |
78170d1c21d14095aee15dc8bcd09c5be1fbed48 | packages/ht/html-parse-util.yaml | packages/ht/html-parse-util.yaml | homepage: https://github.com/slotThe/html-parse-util#readme
changelog-type: markdown
hash: 6f93aee5078340e24f3b58d09b55c00745e0956ecee8cad97ca4e11db4a09abc
test-bench-deps: {}
maintainer: soliditsallgood@mailbox.org
synopsis: Utility functions for working with html-parse
changelog: |
# 0.2.0
- `html-parse-utils` -... | homepage: https://github.com/slotThe/html-parse-util#readme
changelog-type: markdown
hash: 1deea785b2a5d42b55e872794335185c4c99f70c6411297641c9a7d31d64194b
test-bench-deps: {}
maintainer: soliditsallgood@mailbox.org
synopsis: Utility functions for working with html-parse
changelog: |
# 0.2.0
- `html-parse-utils` -... | Update from Hackage at 2022-08-28T17:59:54Z | Update from Hackage at 2022-08-28T17:59:54Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
00cac9ff0e4c6aeba168ab4f524a6fbe56ae39ee | packages/cm/cmark-sections.yaml | packages/cm/cmark-sections.yaml | homepage: http://github.com/aelve/cmark-sections
changelog-type: markdown
hash: 5ff7821b64fd89f94ed4453b4719cf5ce50a0eeb4ae71b25c1ba283cb6317db8
test-bench-deps:
base-prelude: ==1.*
base: ! '>=4.7 && <5'
hspec: ! '>=2.2 && <2.4'
text: -any
cmark: -any
cmark-sections: -any
containers: -any
QuickCheck: ! ... | homepage: http://github.com/aelve/cmark-sections
changelog-type: markdown
hash: b08cd73ff6103e39e763f5809d757887399059505fe8ac468ef377dc616962ef
test-bench-deps:
base-prelude: ==1.*
base: ! '>=4.7 && <5'
hspec: ! '>=2.2 && <2.4'
text: -any
cmark: -any
cmark-sections: -any
containers: -any
QuickCheck: ! ... | Update from Hackage at 2016-11-19T11:22:51Z | Update from Hackage at 2016-11-19T11:22:51Z | YAML | mit | commercialhaskell/all-cabal-metadata |
3b7f129cb41c3024f19b1a4087d881e1a85d1a8c | frontend/app.yaml | frontend/app.yaml | # Copyright 2018, Google LLC
# 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 in writing, sof... | # Copyright 2018, Google LLC
# 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 in writing, sof... | Use bigger instance sizes and fix static resource serving | Use bigger instance sizes and fix static resource serving
| YAML | apache-2.0 | GoogleCloudPlatform/nodejs-serverless-microservices-demo,GoogleCloudPlatform/nodejs-serverless-microservices-demo |
06920a7ac48066b6b6b397d5b01373f0f23a77be | packages/po/polysemy-extra.yaml | packages/po/polysemy-extra.yaml | homepage: ''
changelog-type: markdown
hash: 18782fba149f5c41d0da00e3b316acb75ebfd65b7a36218556b96c0b49efdd5a
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Run a KVStore as a filesystem in polysemy.
changelog: |
# Changelog for polysemy-extra
## v0.1.0.0
* Add several `Input`, `Output` and `... | homepage: ''
changelog-type: markdown
hash: 0803ca281830e5dfa27704c6b1eb53c13cfc1139db0004e0840d90ccb1a2095a
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Extra transformations functions for polysemy.
changelog: |
# Changelog for polysemy-extra
## v0.1.0.0
* Add several `Input`, `Output` an... | Update from Hackage at 2020-11-05T19:19:06Z | Update from Hackage at 2020-11-05T19:19:06Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
97d39fc940f9f205bbe63fe6c6b420f4fccd431f | recipes/pytest/meta.yaml | recipes/pytest/meta.yaml | {% set name = "pytest" %}
{% set version = "3.2.0" %}
{% set sha256 = "0225cf10b9e173f84729d5f4648211458a222c6e53a77a85e104bc5f31c244ee" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }... | {% set name = "pytest" %}
{% set version = "3.2.1" %}
{% set sha256 = "4c2159d2be2b4e13fa293e7a72bdf2f06848a017150d5c6d35112ce51cfd74ce" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }... | Update pytest recipe to version 3.2.1 | Update pytest recipe to version 3.2.1
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
c4a0405a339e0bd2b655c1100ce29f9d7e3f976c | .lgtm.yml | .lgtm.yml | path_classifiers:
test:
- exclude: locale
queries:
- exclude: cpp/integer-multiplication-cast-to-long
- exclude: cpp/missing-header-guard
- exclude: cpp/short-global-name
- exclude: cpp/tainted-format-string
- exclude: cpp/toctou-race-condition
- exclude: cpp/cleartext-transmission | path_classifiers:
test:
- exclude: 'locale/*.c'
queries:
- exclude: cpp/integer-multiplication-cast-to-long
- exclude: cpp/missing-header-guard
- exclude: cpp/short-global-name
- exclude: cpp/tainted-format-string
- exclude: cpp/toctou-race-condition
- exclude: cpp/cleartext-transmission
| Fix syntax for excluding the sources under 'locale'. | Fix syntax for excluding the sources under 'locale'.
| YAML | apache-2.0 | OpenPrinting/cups,OpenPrinting/cups,OpenPrinting/cups,OpenPrinting/cups |
a1ceed3db9532aa9ffadebefe2b095708e2cacde | metadata/com.smartpack.packagemanager.yml | metadata/com.smartpack.packagemanager.yml | Categories:
- System
License: GPL-3.0-or-later
AuthorName: sunilpaulmathew
AuthorEmail: sunil.kde@gmail.com
AuthorWebSite: https://smartpack.github.io
WebSite: https://smartpack.github.io/pm
SourceCode: https://github.com/SmartPack/PackageManager
IssueTracker: https://github.com/SmartPack/PackageManager/issues
Change... | Categories:
- System
License: GPL-3.0-or-later
AuthorName: sunilpaulmathew
AuthorEmail: sunil.kde@gmail.com
AuthorWebSite: https://smartpack.github.io
WebSite: https://smartpack.github.io/pm
SourceCode: https://github.com/SmartPack/PackageManager
IssueTracker: https://github.com/SmartPack/PackageManager/issues
Change... | Update Package Manager to v3.5 (35) | Update Package Manager to v3.5 (35)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
00c59f7a1d35cae5a04fbea56b1adfee15da8308 | packages/de/deferred-folds.yaml | packages/de/deferred-folds.yaml | homepage: https://github.com/metrix-ai/deferred-folds
changelog-type: ''
hash: dd696cf2349ebb4a39ba518d066e7aeafe15496710a66b955769f4f40532c246
test-bench-deps: {}
maintainer: Metrix.AI Ninjas <ninjas@metrix.ai>
synopsis: Abstractions over deferred folds
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
containers: !... | homepage: https://github.com/metrix-ai/deferred-folds
changelog-type: ''
hash: 0ebb4e2671f81214d7c13d8ca7100a7ccf070332a12e3ad7c2d6d29aa9b7207f
test-bench-deps: {}
maintainer: Metrix.AI Ninjas <ninjas@metrix.ai>
synopsis: Abstractions over deferred folds
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
containers: !... | Update from Hackage at 2018-07-10T16:08:01Z | Update from Hackage at 2018-07-10T16:08:01Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
4469c4116b764a86e1af487e78a44d7c7b06fa75 | packages/ze/zenhack-prelude.yaml | packages/ze/zenhack-prelude.yaml | homepage: https://git.zenhack.net/zenhack/custom-haskell-prelude
changelog-type: markdown
hash: cc28b9925321947107568b33905cdb0024d1185aad16c8e38b1a4c5c14c47380
test-bench-deps: {}
maintainer: ian@zenhack.net
synopsis: ! '@zenhack''s personal custom prelude'
changelog: |
# Revision history for zenhack-prelude
## 0... | homepage: https://gitlab.com/isd/custom-haskell-prelude
changelog-type: markdown
hash: 1ffdc0ad17e7c25786ef671f5889c165b325265b6d85ef4518a38fb1c52c446a
test-bench-deps: {}
maintainer: ian@zenhack.net
synopsis: ! '@zenhack''s personal custom prelude'
changelog: |
# Revision history for zenhack-prelude
## 0.1.0.0 --... | Update from Hackage at 2020-03-10T04:23:21Z | Update from Hackage at 2020-03-10T04:23:21Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.