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 |
|---|---|---|---|---|---|---|---|---|---|
d6335f94634f7f40e9a7841af7bd328d47fa433c | concourse/manifests/sagan-site-production.yml | concourse/manifests/sagan-site-production.yml | ---
applications:
- name: sagan
buildpacks:
- java_buildpack
instances: 2
health-check-type: http
health-check-http-endpoint: /health
memory: 2048M
disk_quota: 1024M
routes:
- route: spring.io
- route: www.spring.io
- route: sagan-production.cfapps.io
services:
- papertrail
- sagan-db
- sa... | ---
applications:
- name: sagan
buildpacks:
- java_buildpack
instances: 2
health-check-type: http
health-check-http-endpoint: /health
timeout: 120
memory: 2048M
disk_quota: 1024M
routes:
- route: spring.io
- route: www.spring.io
- route: sagan-production.cfapps.io
services:
- papertrail
- ... | Raise startup timeout in PCF | Raise startup timeout in PCF
This commit raises the startup and health check timeout in Cloud
Foundry.
| YAML | bsd-3-clause | spring-io/sagan,spring-io/sagan,spring-io/sagan,spring-io/sagan |
318252744265ec96c1ebf7ad8a1166d30bde015c | packages/ff/fficxx.yaml | packages/ff/fficxx.yaml | homepage: ''
changelog-type: ''
hash: 670e8da7adf7db1e9fafe16836370a4520c2c6a94311c3f08d0cc5a39d386d6a
test-bench-deps: {}
maintainer: Ian-Woo Kim <ianwookim@gmail.com>
synopsis: automatic C++ binding generation
changelog: ''
basic-deps:
either: -any
bytestring: -any
split: -any
Cabal: -any
base: ==4.*
unor... | homepage: ''
changelog-type: ''
hash: 8aadf5449302ecaca2772f5dfa1e8aedf72fe7a4760fec89a6ed6c17d440f666
test-bench-deps: {}
maintainer: Ian-Woo Kim <ianwookim@gmail.com>
synopsis: automatic C++ binding generation
changelog: ''
basic-deps:
either: -any
bytestring: -any
split: -any
Cabal: -any
base: ==4.*
unor... | Update from Hackage at 2017-02-02T04:38:30Z | Update from Hackage at 2017-02-02T04:38:30Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e9dd9bed040df10146b780b029bdcc48ac3720a4 | .github/workflows/windows.yml | .github/workflows/windows.yml | name: Windows-win64
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: cmake build
run: cmake -S . -B build --config Release
- name: cmake make
run: cmake --build build --parallel 3
- name: test
run: build\Release\aixlo... | name: Windows-win64
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: cmake build
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: cmake make
run: cmake --build build --parallel 3
- name: test
run: build\Deb... | Build Debug version on Windows | Build Debug version on Windows
| YAML | mit | badaix/aixlog,badaix/aixlog |
733582b046b0e62b32b84e81954d8e5fbe802fe6 | packages/op/optima.yaml | packages/op/optima.yaml | homepage: https://github.com/metrix-ai/optima
changelog-type: ''
hash: 2d5cce1c37f40b179f745ca44b0b22d33f836b22768a9283a3f011809cdd7704
test-bench-deps:
rerebase: ==1.*
optima: -any
attoparsec-data: ==1.*
maintainer: Metrix.AI Tech Team <tech@metrix.ai>
synopsis: Simple command line interface arguments parser
cha... | homepage: https://github.com/metrix-ai/optima
changelog-type: ''
hash: 7648f4689193b3a830a8f5ed3aa07f955310ddee99db5378c5b505efbf69ef3a
test-bench-deps:
rerebase: ==1.*
optima: -any
attoparsec-data: ==1.*
maintainer: Metrix.AI Tech Team <tech@metrix.ai>
synopsis: Simple command line interface arguments parser
cha... | Update from Hackage at 2020-08-14T09:07:28Z | Update from Hackage at 2020-08-14T09:07:28Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
2935ba1ed5cfd5d19f2c4f27168a08a858a0f7fa | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk-stretch-node-browsers
environment:
MAVEN_OPTS: -Xmx1024m
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
# f... | version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk-stretch-node-browsers
environment:
MAVEN_OPTS: -Xmx1024m
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
# f... | Build once instead of twice. | Build once instead of twice.
| YAML | apache-2.0 | OpenNMS/wsman |
c68345f3964d27ee0211fd26014d565222532abc | .github/workflows/windows.yml | .github/workflows/windows.yml | name: windows
on: [push, pull_request]
jobs:
build:
name: >-
build (windows, ${{ matrix.ruby }})
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
ruby: [ '2.4.x', '2.5.x', '2.6.x' ]
steps:
- name: git config
run: git config --global core.autocrlf false... | name: Windows
on: [push, pull_request]
jobs:
build:
name: build (windows, ${{ matrix.ruby }})
strategy:
matrix:
ruby: [ '2.4.x', '2.5.x', '2.6.x' ]
runs-on: windows-latest
steps:
- name: git config autocrlf
run: git config --global core.autocrlf false
- uses: actions/... | Make the Windows Actions CI more similar to ci.yml | Make the Windows Actions CI more similar to ci.yml
| YAML | mit | eregon/rubyspec,nobu/rubyspec,eregon/rubyspec,ruby/spec,nobu/rubyspec,ruby/spec,eregon/rubyspec,nobu/rubyspec,ruby/spec |
8ed3f0a6f72b7dffafecc44c602450797d2189b6 | templates/atom/apps/qubit/config/app.yml | templates/atom/apps/qubit/config/app.yml | # Ansible managed file, do not edit directly
all:
upload_limit: {{ atom_app_upload_limit }}
cache_engine: {{ atom_app_cache_engine }}
{% if atom_app_cache_engine_options is defined %}
cache_engine_param:
{% for key, value in atom_app_cache_engine_options.items() %}
{{ key }}: {{ value }}
{% endfor %}
{% en... | # Ansible managed file, do not edit directly
all:
upload_limit: {{ atom_app_upload_limit }}
cache_engine: {{ atom_app_cache_engine }}
{% if atom_app_cache_engine_options is defined %}
cache_engine_param:
{% for key, value in atom_app_cache_engine_options.items() %}
{{ key }}: {{ value }}
{% endfor %}
{% en... | Add support for different password algorithms | Add support for different password algorithms
PASSWORD_ARGON21 is not supported in Xenial nor RHEL 7
| YAML | agpl-3.0 | artefactual-labs/ansible-atom,artefactual-labs/ansible-atom |
2d3a9524e8414425054c8d7a17852743d0360e34 | tenets/codelingo/cockroachdb/lingo_bundle.yaml | tenets/codelingo/cockroachdb/lingo_bundle.yaml | description: Best Practices for CockroachDB from their contributor docs.
version: 0.0.0
tenets:
- avoid-bool-params
tags:
- golang
- go
- cockroach
- cockroachdb
| description: Best Practices for CockroachDB from their contributor docs.
version: 0.0.0
tenets:
- avoid-bool-params
- wrapping-func-signatures
tags:
- golang
- go
- cockroach
- cockroachdb
| Add tenet to bundle file | Add tenet to bundle file
| YAML | agpl-3.0 | lingo-reviews/lingo,lingo-reviews/lingo |
9922a5fc6973c824414da75a81f9396a16fa1f35 | rbac.yaml | rbac.yaml | apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRole
metadata:
name: estafette-letsencrypt-certificate
labels:
app: estafette-letsencrypt-certificate
rules:
- apiGroups: [""] # "" indicates the core API group
resources:
- secrets
verbs: ["get", "list", "watch", "create", "update", "patch", "del... | apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRole
metadata:
name: estafette-letsencrypt-certificate
labels:
app: estafette-letsencrypt-certificate
rules:
- apiGroups: [""] # "" indicates the core API group
resources:
- secrets
verbs:
- list
- update
- watch
---
apiVersion: rbac.authori... | Fix RBAC DENY, leverage access | Fix RBAC DENY, leverage access
| YAML | mit | estafette/estafette-letsencrypt-certificate |
3bce9060b241c48d2fabbb4fbc7d18185d31b670 | .codeclimate.yml | .codeclimate.yml | engines:
radon:
enabled: true
config:
python_version: 2
duplication:
enabled: true
config:
languages:
- python
pep8:
enabled: true
checks:
E501:
enabled: false
ratings:
paths:
- "**.py"
| engines:
radon:
enabled: true
config:
python_version: 2
threshold: "C"
duplication:
enabled: true
config:
languages:
- python
pep8:
enabled: true
checks:
E501:
enabled: false
ratings:
paths:
- "**.py"
| Set radon analysis threshold lower than default | Set radon analysis threshold lower than default
| YAML | apache-2.0 | quattor/pan,quattor/pan,quattor/pan,jrha/pan,quattor/pan,quattor/pan,jrha/pan,jrha/pan,jrha/pan,jrha/pan |
5868eb35f1ee64fd09066f8e4945da4d6892bb55 | .codeclimate.yml | .codeclimate.yml | # Copyright (c) 2018-2021 Simply Code Ltd. All rights reserved.
# Licensed under the MIT License.
# See LICENSE file in the project root for full license information.
version: "2"
checks:
method-lines:
enabled: true
config:
threshold: 100
plugins:
csslint:
enabled: true
checks:
order-al... | # Copyright (c) 2018-2021 Simply Code Ltd. All rights reserved.
# Licensed under the MIT License.
# See LICENSE file in the project root for full license information.
version: "2"
checks:
method-lines:
enabled: true
config:
threshold: 100
plugins:
csslint:
enabled: true
checks:
order-al... | Exclude Views from code climate | Exclude Views from code climate
| YAML | mit | SimplyCodeUK/packer-strategy,SimplyCodeUK/packer-strategy,SimplyCodeUK/packer-strategy |
c12763ac71781420c1cf69f1bb76b1fa65e45051 | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
silta: silta/silta@0.1
workflows:
version: 2
commit:
jobs:
- silta/drupal-validate:
name: validate
drupal-root: drupal
post-validation:
- run: echo "You can add additional validation here!"
- silta/drupal-build-deploy: &build-deploy
... | version: 2.1
orbs:
silta: silta/silta@0.1
workflows:
version: 2
commit:
jobs:
- silta/drupal-validate:
name: validate
drupal-root: drupal
post-validation:
- run: echo "You can add additional validation here!"
- silta/drupal-build-deploy: &build-deploy
... | Set the path to the npm location, this way we easily adjust it. | Set the path to the npm location, this way we easily adjust it.
| YAML | mit | wunderkraut/WunderTools,wunderkraut/WunderTools,wunderkraut/WunderTools |
5947adbe062fb85015473f12b1c0199b16b3e1c8 | .circleci/config.yml | .circleci/config.yml | version: 2.1
###########################################
# Constants
###########################################
workspace_root: &workspace_root
~/repo
###########################################
# Executors Definitions
###########################################
executors:
build_executor:
working_di... | version: 2.1
###########################################
# Constants
###########################################
workspace_root: &workspace_root
~/repo
###########################################
# Executors Definitions
###########################################
executors:
nodejs_10_executor:
workin... | Enable CI build for the latest Node.js | Enable CI build for the latest Node.js
| YAML | mit | saneyuki/option-t.js,saneyuki/option-t.js |
958e05f95a1689075733e6075723b375000cdd8c | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:0f7e40987efd757877a64d34f49ed5b9d611e9d2f969d12bdabdf87daf45f29a
- image: circleci/mongo:3@sha256:04a81e1cd52345ebf5886874621d47f32662810213ef327532bf2aa63ae86dc6
steps:
- checkout
- run: yarn install --frozen-lockfile
... | version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:ea6a1dfa308a6af75b880f1db86da4cf78955e68d1a56dd2e64280fc546665a0
- image: circleci/mongo:3@sha256:04a81e1cd52345ebf5886874621d47f32662810213ef327532bf2aa63ae86dc6
steps:
- checkout
- run: yarn install --frozen-lockfile
... | Update circleci/node:8 Docker digest to ea6a1d | Update circleci/node:8 Docker digest to ea6a1d | YAML | mit | js-accounts/accounts |
80380da876cafdc3f4b145c1e49f935ec24acbe0 | .pullapprove.yml | .pullapprove.yml | approve_by_comment: true
approve_regex: ':lgtm:|^(LGTM|lgtm)'
reject_regex: '^Rejected'
reset_on_push: false
reviewers:
name: vitess-eng
required: 1
members:
- alainjobart
- alainjobart-bot
- AndyDiamondstein
- dumbunny
- enisoc
- enisoc-bot
- erzel
- erzel-bot
- mberlin-bot
- michael-berlin
... | version: 2
approve_by_comment: true
approve_regex: ':lgtm:|^(LGTM|lgtm)'
reject_regex: '^Rejected'
reset_on_push: false
groups:
vitess-eng:
required: 1
users:
- alainjobart
- alainjobart-bot
- AndyDiamondstein
- dumbunny
- enisoc
- enisoc-bot
- erzel
- erzel-bot... | Migrate PullApprove configuration from v1 to v2. | Migrate PullApprove configuration from v1 to v2.
I've followed https://docs.pullapprove.com/migrating-to-v2/ to do so.
We're migrating because v2 is required to recognize GitHub review approvals as LGTM. See https://github.com/pullapprove/support/issues/98#issuecomment-256448778
| YAML | apache-2.0 | rnavarro/vitess,pivanof/vitess,mapbased/vitess,tirsen/vitess,sougou/vitess,mattharden/vitess,applift/vitess,dcadevil/vitess,sougou/vitess,dcadevil/vitess,HubSpot/vitess,mahak/vitess,mapbased/vitess,sougou/vitess,mapbased/vitess,davygeek/vitess,mahak/vitess,HubSpot/vitess,vitessio/vitess,pivanof/vitess,mattharden/vitess... |
f915a4eda99e0acf667fcfebb53bef35bc4ff415 | packages/pe/periodic-polynomials.yaml | packages/pe/periodic-polynomials.yaml | homepage: https://hackage.haskell.org/package/periodic-polynomials
changelog-type: markdown
hash: d3dd086a0f04a11d6a72bbaaaaccb5310eab78bbb473693cc5de5b96e8983f9e
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: A library for working with periodic polynomials (very basic functionality)
changelog: |
# R... | homepage: https://hackage.haskell.org/package/periodic-polynomials
changelog-type: markdown
hash: d3dd086a0f04a11d6a72bbaaaaccb5310eab78bbb473693cc5de5b96e8983f9e
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: A library for working with periodic polynomials (very basic functionality)
changelog: |
# R... | Update from Hackage at 2020-06-26T09:38:59Z | Update from Hackage at 2020-06-26T09:38:59Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3a453720817461629d2b3caa23f3d21e49ed3cfe | .github/workflows/main.yml | .github/workflows/main.yml | name: Evolene CI
on:
push:
pull_request:
branches:
- main
paths-ignore:
- '*.md'
- '*.png'
workflow_dispatch:
jobs:
Evolene:
name: Continuous Integration
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.3.4
- name: Run Evolene CI pipeline steps
... | name: Evolene CI
on:
push:
branches:
- main
- v-7
pull_request:
branches:
- main
- v-7
paths-ignore:
- '*.md'
- '*.png'
workflow_dispatch:
jobs:
Evolene:
name: Continuous Integration
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.3.4
... | Include v-7 to be built and published | Include v-7 to be built and published | YAML | mit | KTH/kth-style,KTH/kth-style |
d52406182e3929b3753caad4f5a98c90f1b71569 | data/external_links.yml | data/external_links.yml | ecto_well_designed:
date: '2017-10-30'
title: "How Elixir's Ecto Promotes Well-Designed Applications"
url: 'https://www.mojotech.com/blog/how-elixir-ecto-promotes-well-designed-applications'
chrome_extensions:
date: '2016-05-16'
title: 'Making Chrome Extensions is Easy with Yeoman'
url: 'https://www.forake... | practices_and_tools:
date: '2019-07-09'
title: "Practices and Tools that Make for a Good Project"
url: 'https://www.mojotech.com/blog/good-software-project'
ecto_well_designed:
date: '2017-10-30'
title: "How Elixir's Ecto Promotes Well-Designed Applications"
url: 'https://www.mojotech.com/blog/how-elixir-e... | Add link to "Practices and Tools" blog post | Add link to "Practices and Tools" blog post
| YAML | mit | jeffcole/jeffcole.github.io,jeffcole/jeffcole.github.io,jeffcole/jeffcole.github.io,jeffcole/jeffcole.github.io |
f4370ddc0cf34d9e5f4b8856e594c04d92139afd | ci/settings.yml | ci/settings.yml | ---
meta:
kit: shield
release: S.H.I.E.L.D. Genesis Kit
target: buf
url: https://10.200.131.2.netip.cc
initial_version: 0.3.0
bosh:
uri: (( vault "secret/pipelines/genesis-ci/bosh:uri" ))
username: (( vault "secret/pipelines/genesis-ci/admin:username" ))
password: (( vault "secre... | ---
meta:
kit: shield
release: S.H.I.E.L.D. Genesis Kit
target: buf
url: https://10.200.131.2.netip.cc
initial_version: 0.3.0
bosh:
uri: (( vault "secret/pipelines/genesis-ci/bosh:uri" ))
username: (( vault "secret/pipelines/genesis-ci/admin:username" ))
password: (( vault "secre... | Use genesis-bot account in CI Pipelines | Use genesis-bot account in CI Pipelines
| YAML | mit | genesis-community/shield-genesis-kit,genesis-community/shield-genesis-kit,genesis-community/shield-genesis-kit |
7386cea9a7452c5bbdc54b90b11400dd95ef9660 | .github/workflows/test.yml | .github/workflows/test.yml | ---
name: test
on: [push, pull_request]
jobs:
test:
if: github.ref != 'refs/heads/master'
runs-on: ubuntu-18.04
strategy:
matrix:
ruby_version:
- 2.6
ar_version:
- 5.2
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@... | ---
name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-18.04
strategy:
matrix:
ruby_version:
- 2.5
- 2.6
- 2.7
ar_version:
- 4.2
- 5.2
- 6.0
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
u... | Test with matrix every time | Test with matrix every time
| YAML | mit | degica/voynich,degica/voynich |
667920d7e002cd393f8af520081cd97f4e920342 | common/defaults/main.yml | common/defaults/main.yml | # Lab playbook - sets up the host specific shit
---
epel_rpm: "http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm"
ol6_repo_file: public-yum-ol6.repo
repo_dir: /etc/yum.repos.d/
# default_user: ansible
install_os_packages: true
configure_epel_repo: true
configure_public_yum_rep... | # Lab playbook - sets up the host specific shit
---
epel_rpm: "http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm"
ol6_repo_file: public-yum-ol6.repo
repo_dir: /etc/yum.repos.d/
# default_user: ansible
install_os_packages: true
configure_epel_repo: true
configure_public_yum_rep... | Revert "Added tmux to common packages" | Revert "Added tmux to common packages"
This reverts commit ca2d666a07c6f26e9d60a27e4ba9efd3f6f75d65.
| YAML | mit | fogartyp/ansible-oracle,oravirt/ansible-oracle,kikitux/ansible-oracle,oravirt/ansible-oracle,ilspleno/ansible-oracle,kikitux/ansible-oracle,fogartyp/ansible-oracle,kikitux/ansible-oracle,ilspleno/ansible-oracle |
206082fe4812d00e8ac0c4daafcaf48f01de6a1a | hieradata/osl/roles/master.yaml | hieradata/osl/roles/master.yaml | ---
ntp::servers:
- 172.16.32.100
- 172.16.32.101
- 172.16.32.102
# NOTE: reflectors will be on cumulus gws for prod
calico::reflector: true
profile::base::network::manage_httpproxy: 'true'
profile::base::network::http_proxy: "%{hiera('service__address__proxy')}:8888"
puppet::cron_cmd: "/usr/bin/env pupp... | ---
ntp::servers:
- 172.16.32.100
- 172.16.32.101
- 172.16.32.102
# NOTE: reflectors will be on cumulus gws for prod
calico::reflector: true
profile::base::network::manage_httpproxy: 'true'
profile::base::network::http_proxy: "%{hiera('service__address__proxy')}:8888"
puppet::cron_cmd: "/usr/bin/env pupp... | Add OpenStack public network for osl location | Add OpenStack public network for osl location
| YAML | apache-2.0 | eckhart/himlar,tanzr/himlar,mikaeld66/himlar,eckhart/himlar,TorLdre/himlar,TorLdre/himlar,norcams/himlar,norcams/himlar,norcams/himlar,raykrist/himlar,raykrist/himlar,TorLdre/himlar,tanzr/himlar,raykrist/himlar,mikaeld66/himlar,mikaeld66/himlar,raykrist/himlar,raykrist/himlar,tanzr/himlar,eckhart/himlar,norcams/himlar,... |
a8c03615163524e1db4424a0c5843dd2a8548dc8 | lib/assets/data/supplier_numbers.yml | lib/assets/data/supplier_numbers.yml | Test chamber/firm:
- 1B555X
- 2B444Z
Galbraith Branley:
- 0X925V
Sonn Macmillan Walker:
- 0A719G
Mark Jones & Partners:
- 0Z310A
- 1G245N
Tuckers Solicitors:
- 1K905R
- 2F741Q
- 2M410C
- 2N915N
- 2M411D
- 2L705L
- 0M058V
- 2N827T
- 2N829V
- 2M412E
- 0V774G
- 2N826R
- 2N828U
- 2L6... | Test chamber/firm:
- 1B555X
- 2B444Z
Galbraith Branley:
- 0X925V
Sonn Macmillan Walker:
- 0A719G
Mark Jones & Partners:
- 0Z310A
- 1G245N
Tuckers Solicitors:
- 1K905R
- 2F741Q
- 2M410C
- 2N915N
- 2M411D
- 2L705L
- 0M058V
- 2N827T
- 2N829V
- 2M412E
- 0V774G
- 2N826R
- 2N828U
- 2L6... | Add supplier numbers for another provider. | Add supplier numbers for another provider.
| YAML | mit | ministryofjustice/advocate-defence-payments,ministryofjustice/advocate-defence-payments,ministryofjustice/advocate-defence-payments,ministryofjustice/advocate-defence-payments |
312df20b64f33dc5094f183afa7fae5052d09690 | .readthedocs.yaml | .readthedocs.yaml | version: 2
build:
os: "ubuntu-22.04"
tools:
python: "3.9"
python:
install:
- method: pip
path: .
extra_requirements:
- doc
- cesium
sphinx:
# fail_on_warning: true # Too hard, maybe one day?
fail_on_warning: false
| version: 2
build:
os: "ubuntu-22.04"
tools:
python: "3.9"
formats:
- epub
- htmlzip
python:
install:
- method: pip
path: .
extra_requirements:
- doc
- cesium
sphinx:
# fail_on_warning: true # Too hard, maybe one day?
fail_on_warning: false
| Add offline-friendly formats to Read the Docs | Add offline-friendly formats to Read the Docs
| YAML | mit | poliastro/poliastro |
675013e140f81f7ef7e4780ab636000a7e6514ea | ansible/deploy_local.yml | ansible/deploy_local.yml | ---
- hosts: local
roles:
- common
- mongodb
- openslide
- girder
- mq
- worker
#- itk
vars:
root_dir: /opt/histomicstk
girder_admin_user: admin
girder_admin_email: histomicstk.admin@kitware.com
girder_admin_password: password
girder_socket_host: localhost
girder_... | ---
- hosts: local
roles:
- common
- mongodb
- openslide
- girder
- mq
- worker
#- itk
vars:
root_dir: /opt/histomicstk
girder_admin_user: admin
girder_admin_email: histomicstk.admin@kitware.com
girder_admin_password: password
girder_socket_host: localhost
girder_... | Add message to indicate girder port | Add message to indicate girder port
| YAML | apache-2.0 | DigitalSlideArchive/HistomicsTK,DigitalSlideArchive/HistomicsTK |
ed955085a1cb86d007d9b799bb78d8d8d15755e0 | ansible/main.yml | ansible/main.yml | ---
- hosts: all
vars:
cf_cli_version: "6.25.0"
maven_version: "3.3.9"
maven_checksum: "516923b3955b6035ba6b0a5b031fbd8b"
sbt_version: "0.13.13"
intellij_version: "2017.1"
sts_version: "3.8.3"
eclipse_version: "4.6.2"
docker_compose_version: "1.11.2"
atom_version: "1.15.0"
grad... | ---
- hosts: all
vars:
cf_cli_version: "6.25.0"
maven_version: "3.3.9"
maven_checksum: "516923b3955b6035ba6b0a5b031fbd8b"
sbt_version: "0.13.13"
intellij_version: "2017.1"
sts_version: "3.8.3"
eclipse_version: "4.6.2"
docker_compose_version: "1.12.0"
atom_version: "1.15.0"
grad... | Update docker compose to 1.12.0 | Update docker compose to 1.12.0
| YAML | apache-2.0 | cagiti/developer-environment |
ad799649e35bdb2223d0852e0063955b41d89a80 | docker-compose.prod.yml | docker-compose.prod.yml | version: '3'
services:
app:
build: .
environment:
DEBUG:
INTERNAL_IPS:
ALLOWED_HOSTS:
DATABASE_URL:
SECRET_KEY:
EMAIL_URL:
DJANGO_ADMINS:
ORDER_FORM_SEND_EMAIL:
ORDER_FORM_REPLY_TO_EMAIL:
GANALYTICS_TRACKING_CODE:
restart: always
expose:
... | version: '3'
services:
app:
build: .
environment:
DEBUG:
INTERNAL_IPS:
ALLOWED_HOSTS:
DATABASE_URL:
SECRET_KEY:
EMAIL_URL:
DJANGO_ADMINS:
ORDER_FORM_SEND_EMAIL:
ORDER_FORM_REPLY_TO_EMAIL:
GANALYTICS_TRACKING_CODE:
restart: always
expose:
... | Add certbot service to docker-compose | Add certbot service to docker-compose
This will request letsencrypt certificates using digitalocean dns plugin
| YAML | mit | brew/fruitynutters,brew/fruitynutters,brew/fruitynutters,brew/fruitynutters |
352e22e7f346de479d8dd603e52a430a8593a6ae | metadata/com.apozas.contactdiary.yml | metadata/com.apozas.contactdiary.yml | Categories:
- Writing
License: GPL-3.0-or-later
AuthorName: Alex Pozas-Kerstjens
AuthorWebSite: https://www.alexpozas.com/
SourceCode: https://github.com/apozas/contactdiary
IssueTracker: https://github.com/apozas/contactdiary/issues
Donate: https://paypal.me/apozasker
AutoName: Contact Diary
RepoType: git
Repo: ht... | Categories:
- Writing
License: GPL-3.0-or-later
AuthorName: Alex Pozas-Kerstjens
AuthorWebSite: https://www.alexpozas.com/
SourceCode: https://github.com/apozas/contactdiary
IssueTracker: https://github.com/apozas/contactdiary/issues
Donate: https://paypal.me/apozasker
AutoName: Contact Diary
RepoType: git
Repo: ht... | Update Contact Diary to 1.1.1 (7) | Update Contact Diary to 1.1.1 (7)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
026c964747ea8186300e1cd27aff45a4fb01bd08 | .github/workflows/merge-dependabot-upgrades.yml | .github/workflows/merge-dependabot-upgrades.yml | # See https://github.com/ridedott/merge-me-action/
# This workflow automates merges from patches sent by Dependabot, and
# only by dependabot, once the other CI workflows pass
name: Auto-merge Dependabot PRs
on:
workflow_run:
types:
- completed
workflows:
- "Continuous Integration"
jobs:
merge... | # See https://github.com/ridedott/merge-me-action/
# This workflow automates merges from patches sent by Dependabot, and
# only by dependabot, once the other CI workflows pass
name: Auto-merge Dependabot PRs
on:
workflow_run:
types:
- completed
workflows:
- "Continuous Integration"
jobs:
merge... | Bump ridedott/merge-me-action from 2.9.54 to 2.9.55 | Bump ridedott/merge-me-action from 2.9.54 to 2.9.55
| YAML | mit | Ocramius/CodeGenerationUtils |
5f5e48fd0b43d143370aed08b1605c8ed5ecc79a | .forestry/front_matter/templates/test.yml | .forestry/front_matter/templates/test.yml | ---
label: test
hide_body: true
fields:
- name: layout
type: text
config:
required: true
label: layout
default: post
- name: title
type: text
config:
required: true
min: 8
label: title
- name: tag
type: text
config:
required: true
label: tag
default: ml
| ---
label: test
hide_body: true
fields:
- name: layout
type: text
config:
required: true
label: layout
default: post
- name: title
type: text
config:
required: true
min: 8
label: title
- name: tag
type: text
config:
required: true
label: tag
default: ml
- name: content
type: text... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | gurugaurav/gurugaurav.github.io,gurugaurav/gurugaurav.github.io,gurugaurav/gurugaurav.github.io,gurugaurav/gurugaurav.github.io |
e8b0dc34921d8a3dab09e632177803bb6a725c26 | .github/workflows/close-subsplit-prs.yaml | .github/workflows/close-subsplit-prs.yaml | ---
name: Close sub-split PRs
on:
push:
branches:
- 2.x
- 3.x
pull_request:
branches:
- 2.x
- 3.x
schedule:
- cron: '30 7 * * *'
jobs:
close_subsplit_prs:
runs-on: ubuntu-latest
name: Close sub-split PRs
steps:
- uses: frankdejonge/action-close-subsplit-pr... | ---
name: Close sub-split PRs
on:
push:
branches:
- 2.x
- 3.x
pull_request:
branches:
- 2.x
- 3.x
schedule:
- cron: '30 7 * * *'
jobs:
close_subsplit_prs:
runs-on: ubuntu-latest
name: Close sub-split PRs
steps:
- uses: frankdejonge/action-close-subsplit-pr... | Install sub-split PR closer on all sub-splits. | Install sub-split PR closer on all sub-splits.
| YAML | mit | thephpleague/flysystem-aws-s3-v3 |
f664613d82bc983944f1057b55248ae3cb819650 | molecule/default/molecule.yml | molecule/default/molecule.yml | ---
dependency:
name: galaxy
options:
role-file: ../../requirements.yml
ignore-errors: true
driver:
name: vagrant
provider:
name: libvirt
platforms:
- name: instance
box: ${MOLECULE_DISTRO:-generic/ubuntu1804}
memory: 4096
cpus: 1
interfaces:
- auto_config: true
netwo... | ---
dependency:
name: galaxy
options:
role-file: requirements.yml
ignore-errors: true
driver:
name: vagrant
provider:
name: libvirt
platforms:
- name: instance
box: ${MOLECULE_DISTRO:-generic/ubuntu1804}
memory: 4096
cpus: 1
interfaces:
- auto_config: true
network_nam... | Fix dependency stage in Molecule test. | Fix dependency stage in Molecule test.
| YAML | apache-2.0 | Graylog2/graylog-ansible-role |
e962ab254d80e61c405433c8f9fbdd37b5d21610 | .github/workflows/build-docs.yml | .github/workflows/build-docs.yml | name: FAKE Build on PR
on:
pull_request:
workflow_dispatch:
jobs:
win-build:
name: Windows Build (No Tests)
runs-on: windows-latest
defaults:
run:
shell: cmd
steps:
- name: System Info
run: systeminfo
- uses: actions/checkout@v2
- name: Setup .NET Core
... | name: BuildDocs
on:
push:
pull_request:
workflow_dispatch:
jobs:
win-build:
name: Windows Build Docs
runs-on: windows-latest
defaults:
run:
shell: cmd
steps:
- name: System Info
run: systeminfo
- uses: actions/checkout@v2
- name: Setup .NET Core
... | Build docs workflow description fixed. | Build docs workflow description fixed.
| YAML | epl-1.0 | YaccConstructor/Brahma.FSharp,YaccConstructor/Brahma.FSharp,YaccConstructor/Brahma.FSharp,YaccConstructor/Brahma.FSharp |
7f84ef72bde4a43191334dafcb96eaac6a117a4c | packages/la/language-cil.yaml | packages/la/language-cil.yaml | homepage: https://github.com/tomlokhorst/language-cil
changelog-type: ''
hash: 8fecbdbf8213de7415da4e3d54d4cd373ed415950588f2d06da840b0aacd2e56
test-bench-deps: {}
maintainer: Tom Lokhorst <tom@lokhorst.eu>
synopsis: Manipulating Common Intermediate Language AST
changelog: ''
basic-deps:
base: ! '>3 && <5'
bool-ext... | homepage: https://github.com/tomlokhorst/language-cil
changelog-type: ''
hash: d163acc92aa56953089fa49ed2a18e04408748a0e41f33fcda29da61dc1434a0
test-bench-deps: {}
maintainer: Tom Lokhorst <tom@lokhorst.eu>
synopsis: Manipulating Common Intermediate Language AST
changelog: ''
basic-deps:
base: ! '>3 && <5'
bool-ext... | Update from Hackage at 2016-09-19T12:21:29+00:00 | Update from Hackage at 2016-09-19T12:21:29+00:00
| YAML | mit | commercialhaskell/all-cabal-metadata |
ae337ca76ca93b1dd7678acce63ff88858dd6018 | config/kubernetes-sigs/sig-node/teams.yaml | config/kubernetes-sigs/sig-node/teams.yaml | teams:
node-feature-discovery-operator-admins:
description: Admin access to node-feature-discovery-operator repo
members:
- ArangoGutierrez
- marquiz
- zvonkok
privacy: closed
node-feature-discovery-operator-maintainers:
description: Write access to node-feature-discovery-operator repo
... | teams:
kernel-module-management-admins:
description: Admin access to kernel-module-management repo
members:
- qbarrand
privacy: closed
kernel-module-management-maintainers:
description: Write access to kernel-module-management repo
members:
- qbarrand
privacy: closed
node-feature-d... | Add qbarrand as KMM admin. | Add qbarrand as KMM admin.
| YAML | apache-2.0 | kubernetes/org,kubernetes/org,kubernetes/org |
f3b48a8c7eb7e75743970f9fcf63d3d057710e93 | packages/ha/haskell-compression.yaml | packages/ha/haskell-compression.yaml | homepage: codekinder.com
changelog-type: ''
hash: bd6b5276c1845fa170df1c349a1d6b80ccd3317e51cea42be746446d20c67f6b
test-bench-deps: {}
maintainer: hawk.alan@gmail.com
synopsis: ''
changelog: ''
basic-deps:
bimap: -any
bytestring: -any
base: <10000
containers: -any
boolean-list: -any
all-versions:
- '0.1'
- '0... | homepage: http://xy30.com
changelog-type: ''
hash: be6c33d04b30134d4e1e77459ac61607d00ccf4d69013f885b649bb6e27ce9c4
test-bench-deps: {}
maintainer: hawk.alan@gmail.com
synopsis: compress files
changelog: ''
basic-deps:
bimap: <10000
bytestring: <10000
base: <10000
booleanlist: <10000
containers: <10000
all-ve... | Update from Hackage at 2017-01-15T02:36:52Z | Update from Hackage at 2017-01-15T02:36:52Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
fdc558a787d0d6251785f35ff8bfa4568d53806b | oddbaby.libraries.yml | oddbaby.libraries.yml | global:
css:
theme:
dist/css/main.css: {}
dist/css/print.css: { media: print }
js:
dist/js/bundle.js: {}
dependencies:
- core/jquery
- core/drupal
- core/drupalSettings
| global:
css:
theme:
dist/css/main.css: {}
dist/css/print.css: { media: print }
js:
dist/js/bundle.js: { minified: true }
dependencies:
- core/jquery
- core/drupal
- core/drupalSettings
| Set minified flag on bundle.js | Set minified flag on bundle.js
Close #9
| YAML | mit | oddhill/oddbaby-8 |
e202f768358280dfbe6fd0733c5d6b5c593e1822 | rancher-config/docker-compose.yml | rancher-config/docker-compose.yml | version: '2'
services:
gp-finder-frontend:
image: "nhsuk/gp-finder:$DOCKER_IMAGE_TAG"
environment:
NODE_ENV: production
HOTJAR_ANALYTICS_TRACKING_ID: $HOTJAR_ANALYTICS_TRACKING_ID
GOOGLE_ANALYTICS_TRACKING_ID: $GOOGLE_ANALYTICS_TRACKING_ID
WEBTRENDS_ANALYTICS_TRACKING_ID: $WEBTRENDS_... | version: '2'
services:
gp-finder-frontend:
image: "nhsuk/gp-finder:$DOCKER_IMAGE_TAG"
environment:
NODE_ENV: production
HOTJAR_ANALYTICS_TRACKING_ID: $HOTJAR_ANALYTICS_TRACKING_ID
GOOGLE_ANALYTICS_TRACKING_ID: $GOOGLE_ANALYTICS_TRACKING_ID
WEBTRENDS_ANALYTICS_TRACKING_ID: $WEBTRENDS_... | Add labels for Prometheus federation in Rancher env | :name_badge: Add labels for Prometheus federation in Rancher env
| YAML | mit | nhsuk/gp-finder,nhsuk/gp-finder |
8cba6509e4aa55e6cecff253f8eeb823e34e758d | rest-api-spec/test/script/30_expressions.yaml | rest-api-spec/test/script/30_expressions.yaml | ---
setup:
- skip:
version: "0 - 100"
reason: Java returns floating point, but JSON returns integer
- do:
indices.create:
index: test123
body:
mappings:
test:
properties:
age:
type: long
- do:
... | ---
setup:
- do:
indices.create:
index: test123
body:
mappings:
test:
properties:
age:
type: long
- do:
index:
index: test123
type: test
id: 1
body: { age: 23 }
- do:
i... | Fix script-expressions test to work with Perl | REST: Fix script-expressions test to work with Perl
Closes #9931
| YAML | apache-2.0 | humandb/elasticsearch,MetSystem/elasticsearch,springning/elasticsearch,rmuir/elasticsearch,humandb/elasticsearch,xingguang2013/elasticsearch,lchennup/elasticsearch,ivansun1010/elasticsearch,AshishThakur/elasticsearch,scorpionvicky/elasticsearch,vingupta3/elasticsearch,feiqitian/elasticsearch,ckclark/elasticsearch,adria... |
aed73acfd18344c397f67cc9998248fe8359e8ad | db/seeds/prisons/BFI-bedford.yml | db/seeds/prisons/BFI-bedford.yml | ---
name: Bedford
nomis_id: BFI
address: |-
St. Loyes Street
postcode: MK40 1HG
email_address: socialvisits.bedford@hmps.gsi.gov.uk
phone_no: 01234 373196
enabled: true
private: false
closed: false
booking_window: 14
recurring:
mon:
- 1345-1515
sat:
- 1345-1445
- 1515-1615
sun:
- 1345-1445
- 1515-1615... | ---
name: Bedford
nomis_id: BFI
address: |-
St. Loyes Street
postcode: MK40 1HG
email_address: socialvisits.bedford@hmps.gsi.gov.uk
phone_no: 01234 373196
enabled: false
private: false
closed: false
booking_window: 14
recurring:
mon:
- 1345-1515
sat:
- 1345-1445
- 1515-1615
sun:
- 1345-1445
- 1515-161... | Disable Bedford prison to NOT allow bookings | Disable Bedford prison to NOT allow bookings
| YAML | mit | ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2 |
f9c38b40b00c9ae148e90642bcb9cdf549b49fd3 | packages/se/servant-JuicyPixels.yaml | packages/se/servant-JuicyPixels.yaml | homepage: https://github.com/tvh/servant-JuicyPixels
changelog-type: ''
hash: ede33c102189882735c5843fce316082f2c7e56de84330e4bb59167f253ee9d6
test-bench-deps: {}
maintainer: tvh@tvholtz.de
synopsis: Servant support for JuicyPixels
changelog: ''
basic-deps:
warp: -any
JuicyPixels: ! '>=3.2.5.3'
bytestring: -any
... | homepage: https://github.com/tvh/servant-JuicyPixels
changelog-type: ''
hash: 0c2e27ad5e472b1062da07d9d2e6eceb77e96bef43a305f35e5644edc4ced676
test-bench-deps: {}
maintainer: tvh@tvholtz.de
synopsis: Servant support for JuicyPixels
changelog: ''
basic-deps:
warp: -any
JuicyPixels: '>=3.2.5.3'
bytestring: -any
w... | Update from Hackage at 2021-06-06T22:04:12Z | Update from Hackage at 2021-06-06T22:04:12Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
8a9a0a09820d8bb9e56bc40832b1fcf5dea632e4 | roles/email-server/tasks/main.yml | roles/email-server/tasks/main.yml | ---
- name: Install required packages
package: name={{ item }} state=installed
with_items:
- "{{ pkg_clamd }}"
- clamav-milter
- "{{ pkg_dovecot }}"
- dovecot-antispam
- "{{ pkg_dovecot_managesieved }}"
- "{{ pkg_dovecot_sieve }}"
- opendkim
- "{{ pkg_razor }}"
- postfix
- "{... | ---
- name: Install required packages
package:
name: "{{ item }}"
state: present
with_items:
- "{{ pkg_clamd }}"
- clamav-milter
- "{{ pkg_dovecot }}"
- dovecot-antispam
- "{{ pkg_dovecot_managesieved }}"
- "{{ pkg_dovecot_sieve }}"
- opendkim
- "{{ pkg_razor }}"
- postfi... | Fix deprecated syntax for package module | Fix deprecated syntax for package module
| YAML | bsd-3-clause | patrickmacarthur/ansible-playbook,patrickmacarthur/ansible-playbook |
de0d50bda82767c64a8898a0d9af54e61bc75654 | packages/he/here.yaml | packages/he/here.yaml | homepage: https://github.com/tmhedberg/here
changelog-type: ''
hash: 06713fee7925d6b5fd24800c5ba339f638e9e074739f8490de5aee2be7cda96e
test-bench-deps: {}
maintainer: t@tmh.cc
synopsis: Here docs & interpolated strings via quasiquotation
changelog: ''
basic-deps:
base: ! '>=4.5 && <4.10'
parsec: ==3.1.*
mtl: ! '>=... | homepage: https://github.com/tmhedberg/here
changelog-type: ''
hash: e2c67680ab030dfdc9aaedf46e518f86ad17e96f699ec1d598c25e04288b8b87
test-bench-deps: {}
maintainer: t@tmh.cc
synopsis: Here docs & interpolated strings via quasiquotation
changelog: ''
basic-deps:
base: ! '>=4.5 && <4.10'
parsec: ==3.1.*
mtl: ! '>=... | Update from Hackage at 2017-05-27T19:34:56Z | Update from Hackage at 2017-05-27T19:34:56Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
150af8ce9d0d5680aee3827de3fd7905f2945400 | metadata/de.csicar.ning.yml | metadata/de.csicar.ning.yml | Categories:
- Development
- Internet
License: LGPL-3.0-only
AuthorName: csicar
SourceCode: https://github.com/csicar/Ning
IssueTracker: https://github.com/csicar/Ning/issues
AutoName: Ning
RepoType: git
Repo: https://github.com/csicar/Ning
Builds:
- versionName: '1.2'
versionCode: 12
commit: v1.2
s... | Categories:
- Development
- Internet
License: LGPL-3.0-only
AuthorName: csicar
SourceCode: https://github.com/csicar/Ning
IssueTracker: https://github.com/csicar/Ning/issues
AutoName: Ning
RepoType: git
Repo: https://github.com/csicar/Ning
Builds:
- versionName: '1.2'
versionCode: 12
commit: v1.2
s... | Update CV of Ning to 1.2.3 (123) | Update CV of Ning to 1.2.3 (123)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
1f4aaca7b07615a5b61220023817729138cfde63 | packages/bi/BitSyntax.yaml | packages/bi/BitSyntax.yaml | homepage: http://www.imperialviolet.org/bitsyntax
changelog-type: ''
hash: 1969f1c76c6931e5f8c7db809546d3b6b3f8acad86d4a87e68ef1672daf4a9fd
test-bench-deps: {}
maintainer: ''
synopsis: A module to aid in the (de)serialisation of binary data
changelog: ''
basic-deps:
bytestring: -any
base: -any
haskell98: -any
Q... | homepage: https://github.com/joecrayne/hs-bitsyntax
changelog-type: ''
hash: 3abe1f4f0e6a858fc001eb1d61980ca8e1ba304453ab1664ffeae587387de97d
test-bench-deps: {}
maintainer: Joe Crayne
synopsis: A module to aid in the (de)serialisation of binary data
changelog: ''
basic-deps:
bytestring: -any
base: <5
QuickCheck:... | Update from Hackage at 2015-10-26T02:16:57+0000 | Update from Hackage at 2015-10-26T02:16:57+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
2d6baf1bdabf1665f0b96ea41c5b681698c397e0 | playbooks/edx-east/feanil_deploy.yml | playbooks/edx-east/feanil_deploy.yml | ---
- hosts: tag_aws_cloudformation_stack-name_feanilpractice:&tag_group_edxapp
sudo: True
vars_files:
- "{{ secure_dir }}/vars/edxapp_continuous_integration_vars.yml"
- "{{ secure_dir }}/vars/users.yml"
roles:
- common
- nginx
- edxapp
- hosts: tag_aws_cloudformation_stack-name_feanilpractic... | ---
- hosts: tag_aws_cloudformation_stack-name_feanilpractice:&tag_group_edxapp
sudo: True
vars_files:
- "{{ secure_dir }}/vars/edxapp_continuous_integration_vars.yml"
- "{{ secure_dir }}/vars/users.yml"
roles:
- common
- nginx
- edxapp
- hosts: tag_aws_cloudformation_stack-name_feanilpractic... | Add a play for rabbitmq. | Add a play for rabbitmq.
| YAML | agpl-3.0 | kursitet/configuration,leansoft/configuration,antoviaque/configuration,AlfiyaZi/configuration,armaan/edx-configuration,knehez/configuration,arbrandes/edx-configuration,4eek/configuration,nunpa/configuration,cyanna/configuration,kencung/configuration,ovnicraft/evex-configuration,leansoft/configuration,usernamenumber/con... |
95bd378a01d16d9e6c319c3fad1d5150ae0c8618 | packages/fu/fuzzy.yaml | packages/fu/fuzzy.yaml | homepage: http://github.com/joom/fuzzy
changelog-type: ''
hash: 123b9581c587ae5422b67bbad7e81186b1ecbf86941a8049f921ddf136f2234e
test-bench-deps:
base: -any
HUnit: ! '>=1.2.5.0'
fuzzy: -any
maintainer: joomy@cattheory.com
synopsis: Filters a list based on a fuzzy string search.
changelog: ''
basic-deps:
monoid-... | homepage: http://github.com/joom/fuzzy
changelog-type: ''
hash: 7e1ba6e868034e7872bc42aaab64f39e0d942e33c68d007bbb7895eb2d28a4b6
test-bench-deps:
base: -any
HUnit: '>=1.2.5.0'
fuzzy: -any
maintainer: joomy@cattheory.com
synopsis: Filters a list based on a fuzzy string search.
changelog: ''
basic-deps:
monoid-su... | Update from Hackage at 2021-09-20T11:48:59Z | Update from Hackage at 2021-09-20T11:48:59Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
50eea4c3c818920cc41851362c06169c4053afde | packages/st/Stack.yaml | packages/st/Stack.yaml | homepage: https://en.wikipedia.org/wiki/Stack_(abstract_data_type)
changelog-type: ''
hash: 3d5edf731a665f3d971500598e60de509ae8410d65c5d3526868361b6d05598a
test-bench-deps: {}
maintainer: rwlock404@yahoo.com
synopsis: Stack data structure
changelog: ''
basic-deps:
stm: ! '>=2.4.4.1 && <2.5'
base: ! '>=4.7 && <5'
... | homepage: https://en.wikipedia.org/wiki/Stack_(abstract_data_type)
changelog-type: ''
hash: a802798b57f3566b18471ec01a25ae435f6a03b137918610604eb08aa9cffed9
test-bench-deps: {}
maintainer: rwlock404@yahoo.com
synopsis: Stack data structure
changelog: ''
basic-deps:
stm: ! '>=2.4.4.1 && <2.6'
base: ! '>=4.7 && <5'
... | Update from Hackage at 2018-11-05T22:09:19Z | Update from Hackage at 2018-11-05T22:09:19Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
597e9b4aae62a1e523f7bdd1760cf9b317db4d6a | workshops/basic_playbook/solution/telegraf.yml | workshops/basic_playbook/solution/telegraf.yml | ---
- hosts: web
become: yes
name: Setup telegraf on all web servers
vars:
telegraf_version: 0.2.4
telegraf_flush_retries: 2
influxdb_db_name: telegraf
influxdb_url: http://localhost:8086
packages:
- vim
- epel-release
tasks:
- name: Add InfluxDB repository file [RHEL/CentOS]... | ---
- hosts: web
become: yes
name: Setup telegraf on all web servers
vars:
telegraf_version: 0.2.4
telegraf_flush_retries: 2
influxdb_db_name: telegraf
influxdb_url: http://localhost:8086
packages:
- vim
- epel-release
tasks:
- name: Add InfluxDB repository file [RHEL/CentOS]... | Fix use of bare variable in with_items | Fix use of bare variable in with_items
| YAML | mit | tima/lightbulb,ansible/lightbulb,thisdavejohnson/lightbulb,tima/lightbulb,ansible/lightbulb,ansible/lightbulb,tima/lightbulb,thisdavejohnson/lightbulb,ansible/lightbulb |
b97a18dc00d6c7eb5b23a6bfcc3dc5d2c87a7060 | _data/scroll.yml | _data/scroll.yml | header:
- title: "Upcoming events"
type: info
icon: calendar
scroll:
- text: 2/29 – Theater Boosters @ 6:45 pm in the X-Theater
- text: 3/1 – Coffee Connections with Dr. Marshhausen @ 7:30 am, Starbucks in Mill Run
- text: 3/1 – Harlem Wizards vs. HCSD Staff @ 7 pm in the Darby Main Gym... | header:
- title: "Upcoming events"
type: info
icon: calendar
scroll:
- text: 3/4 – Coffee Connections with Dr. Marshhausen @ 9 am, Panera Bread on Hilliard Rome Rd.
- text: 3/7 – Gridiron Club Meeting @ 7 pm in room 160
- text: 3/7 – Diamond Club Meeting @ 7 pm in room 200
- text: ... | Update and limit to five events | Update and limit to five events | YAML | agpl-3.0 | enzanki-ars/dbyannounce,enzanki-ars/dbyannounce,enzanki-ars/dbyannounce,enzanki-ars/dbyannounce |
f2f9e6ca1c4daf12a5d1c7ca5ea9689fc719829d | data/index.yaml | data/index.yaml | # Definition build list
---
defs:
AU: ['au.yaml']
CA: ['ca.yaml', 'north_america_informal.yaml']
CZ: ['cz.yaml']
DK: ['dk.yaml']
DE: ['de.yaml']
ES: ['es.yaml']
FR: ['fr.yaml']
GB: ['gb.yaml']
IE: ['ie.yaml']
IS: ['is.yaml']
IT: ['it.yaml']
MX: ['mx.yaml', 'north_america_informal.yaml']
NL: [... | # Definition build list
---
defs:
AU: ['au.yaml']
CA: ['ca.yaml', 'north_america_informal.yaml']
CZ: ['cz.yaml']
DK: ['dk.yaml']
DE: ['de.yaml']
ES: ['es.yaml']
FR: ['fr.yaml']
GB: ['gb.yaml']
IE: ['ie.yaml']
IS: ['is.yaml']
IT: ['it.yaml']
MX: ['mx.yaml', 'north_america_informal.yaml']
NL: [... | Add missing Scandinavia and SE definitions | Add missing Scandinavia and SE definitions
| YAML | mit | tallgreentree/holidays,emilianodellacasa/holidays,ptrimble/holidays,ghiculescu/holidays,hasanen/holidays,domain7/holidays,mirelon/holidays,dceddia/holidays,ghiculescu/holidays,causztic/holidays,samzurcher/holidays,timur/holidays,alexdunae/holidays,alexdunae/holidays,ptrimble/holidays,thomasguillory/holidays,sugi/holida... |
b4e4150fb9604a562b84b52018db477b37b4c952 | actions/st2workroom_run_st2installer.yaml | actions/st2workroom_run_st2installer.yaml | ---
name: "st2workroom_run_installer"
runner_type: "remote-shell-script"
description: "Script which runs installer with the provided data"
enabled: true
entry_point: "scripts/run_installer.py"
parameters:
installer_url:
type: "string"
description: "Installer URL without the trailing slash."
... | ---
name: "st2workroom_run_st2installer"
runner_type: "remote-shell-script"
description: "Script which runs installer with the provided data"
enabled: true
entry_point: "scripts/run_installer.py"
parameters:
installer_url:
type: "string"
description: "Installer URL without the trailing slash... | Fix action name - use consistent file and action names. | Fix action name - use consistent file and action names.
| YAML | apache-2.0 | StackStorm/st2cd,StackStorm/st2cd |
9ba4ecf51ce87f1c6de3c75dab3abd3a593e650f | packages/ti/tidal-midi.yaml | packages/ti/tidal-midi.yaml | homepage: http://tidal.lurk.org/
changelog-type: ''
hash: 29b0d9090b6de731f2e7147d0ab1589e9eea5a1ec19257701c097281a318969f
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
containers: -... | homepage: http://tidal.lurk.org/
changelog-type: ''
hash: f89469bcda07714d17375974b7384f7c22ce3866e3fbcc38d6822e32e89896b6
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
containers: -... | Update from Hackage at 2018-04-14T09:47:59Z | Update from Hackage at 2018-04-14T09:47:59Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
318b7dcb5755f80d4331c9c1e5d732d63ad061e1 | packages/ti/tidal-midi.yaml | packages/ti/tidal-midi.yaml | homepage: http://tidal.lurk.org/
changelog-type: ''
hash: fe86dee6e6fa0be36385d2c2f0b9ebfc812324a351a0d0d076290fc32bd568e4
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
containers: -... | homepage: http://tidal.lurk.org/
changelog-type: ''
hash: 642320dd6172c50c528a91e302d2e747fafd780f8a49474ee18d65f9e6daee90
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
containers: -... | Update from Hackage at 2017-03-10T07:50:52Z | Update from Hackage at 2017-03-10T07:50:52Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
96b08b63b089c5427f4238c1c1989d9c0b63bbde | packages/hu/HulkImport.yaml | packages/hu/HulkImport.yaml | homepage: http://github.com/tobs169/HulkImport#readme
changelog-type: ''
hash: d9c870280cda1bd6cc1bc1b98daf014371523c4b11bdbae9f5ff07f538a2afec
test-bench-deps:
base: -any
tasty-golden: -any
HulkImport: -any
tasty: -any
maintainer: tobs169@gmail.com
synopsis: Initial project template from stack
changelog: ''
ba... | homepage: http://github.com/tobs169/HulkImport#readme
changelog-type: ''
hash: a2a4572cc55b9c3a88b6692bfdb37e076c2ef53df8eec7a85a9ed022d8470f6a
test-bench-deps:
base: -any
tasty-golden: -any
HulkImport: -any
tasty: -any
maintainer: tobs169@gmail.com
synopsis: Easily bulk import CSV data to SQL Server
changelog:... | Update from Hackage at 2015-11-03T19:37:02+0000 | Update from Hackage at 2015-11-03T19:37:02+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
477567c6d16a3ec344c4bf4c2e8db5e5d6977def | packages/mo/monad-tree.yaml | packages/mo/monad-tree.yaml | homepage: ''
changelog-type: markdown
hash: 0dc0b41bd77b0f8467ed642efaf4327236c1d0bbf3b633eb699b8d1091159924
test-bench-deps: {}
maintainer: nbedell@tulane.edu
synopsis: Tree data structure for nondeterministic computations.
changelog: |
# Revision history for monad-tree
## 0.1.0 -- 2021-08-20
* First version... | homepage: ''
changelog-type: markdown
hash: fe4e388ab4f7d586f5415c2ef0a77742cf12255f1401adbf55ce92d3dad37d55
test-bench-deps: {}
maintainer: nbedell@tulane.edu
synopsis: Tree data structure for nondeterministic computations.
changelog: |
# Revision history for monad-tree
## 0.1.0 -- 2021-08-20
* First version... | Update from Hackage at 2021-11-09T14:12:19Z | Update from Hackage at 2021-11-09T14:12:19Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0f03d837c54517f847c0ca23fe368305ca89f708 | roles/dotfiles/tasks/main.yml | roles/dotfiles/tasks/main.yml | ---
- name: Create ~/.bin
file: dest=~/.bin state=directory
- name: Link dotfiles
file: src={{ item }} dest=~/.{{ item | basename }} state=link
with_fileglob:
- ./conf/*
- name: Link executables
file: src={{ item }} dest=~/.bin/{{ item | basename }} state=link
with_fileglob:
- ./bin/*
| ---
- name: Create ~/.bin
file: dest=~/.bin state=directory
- name: Link dotfiles
file: src={{ item }} dest=~/.{{ item | basename }} state=link
with_fileglob:
- ./conf/*
- name: Link executables
file: src={{ item }} dest=~/.bin/{{ item | basename }} state=link
with_fileglob:
- ./bin/*
- name: Insta... | Add docker-enter to dotfiles role | Add docker-enter to dotfiles role
| YAML | mit | jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles |
945cc16dbed91e0c2cc4ed1279a88022d68ffae5 | roles/security/tasks/main.yml | roles/security/tasks/main.yml | ---
- include: sshd.yml
sudo: true
- include: firewalld.yml
sudo: true
- include: fail2ban.yml
# ipv6? Check it if you have it.
- include: ipv6.yml
sudo: true
when: "ansible_default_ipv6 != {}"
| ---
- include: sshd.yml
sudo: true
- include: firewalld.yml
sudo: true
- include: fail2ban.yml
sudo: true
# ipv6? Check it if you have it.
- include: ipv6.yml
sudo: true
when: "ansible_default_ipv6 != {}"
- file: path=~/.ssh state=directory mode=0700
- name: add authorized keys
copy: content={{ authorized... | Add task to copy in authorized key files | Add task to copy in authorized key files
| YAML | mit | ryansb/workstation,ryansb/workstation,ryansb/workstation |
6fac9ec144b94d88c9a07d77caec3a232be9ee97 | roles/vpn/tasks/libreswan.yml | roles/vpn/tasks/libreswan.yml | ---
- yum: name=libreswan state=latest
tags:
- packages
- copy: dest=/etc/ipsec.d/redhat.secrets content="{{ vpn_secret }}"
owner=root group=root
notify: restart ipsec
- template: dest=/etc/ipsec.conf src=ipsec.conf
owner=root group=root
notify: restart ipsec
- service: name=ipsec enabled... | ---
- yum: name=libreswan state=latest
tags:
- packages
- copy: dest=/etc/ipsec.d/redhat.secrets content="{{ vpn_secret }}"
owner=root group=root
notify: restart ipsec
- template: dest=/etc/ipsec.conf src=ipsec.conf
owner=root group=root
notify: restart ipsec
- service: name=ipsec enabled... | Replace `sleep` with pause builtin | Replace `sleep` with pause builtin
| YAML | mit | ryansb/workstation,ryansb/workstation,ryansb/workstation |
3513aa7672081335ac992da57f972dc232c5d879 | spec/internal/config/database.yml | spec/internal/config/database.yml | test: &test
adapter: postgresql
database: activerecord_views_test
min_messages: warning
development:
<<: *test
production:
<<: *test
| test: &test
adapter: postgresql
database: activerecord_views_test
min_messages: warning
advisory_locks: <%= !Rails.version.start_with?('6.0.') %>
development:
<<: *test
production:
<<: *test
| Disable migration advisory locks on Rails 6.0 | Disable migration advisory locks on Rails 6.0
The connection for the lock prevents Combustion from
dropping and re-creating the test database.
This seems to only be a problem in Rails 6.0
and is fixed in Rails 6.1.
| YAML | mit | jasoncodes/activerecord_views,jasoncodes/activerecord_views |
5458e99a590be35a13efeb1da16929afdd575a22 | app/config/config_jenkins.yml | app/config/config_jenkins.yml | imports:
- { resource: config_dev.yml }
- { resource: "@SimplyTestableApiBundle/Resources/config/parameters_test.yml" }
- { resource: "@SimplyTestableApiBundle/Resources/config/services_test.yml" }
framework:
test: ~
session:
storage_id: session.storage.mock_file
web_profiler:
... | imports:
- { resource: config_dev.yml }
- { resource: "@SimplyTestableApiBundle/Resources/config/parameters_test.yml" }
- { resource: "@SimplyTestableApiBundle/Resources/config/services_test.yml" }
framework:
test: ~
session:
storage_id: session.storage.mock_file
web_profiler:
... | Use mysql not sqlite for jenkins app.test (maybe quicker now?) | Use mysql not sqlite for jenkins app.test (maybe quicker now?)
| YAML | mit | webignition/app.simplytestable.com,webignition/app.simplytestable.com |
70357dbd6cd5678d3d842b3b2313a846929f1bf5 | close_pull_requests.yaml | close_pull_requests.yaml | # YAML file to give repositories and text to close PRs with
---
# organization/owner
# repository
# close - boolean - close any open PR
# lock - boolean - lock further discussion (must be done manually, but
# URL provided)
# message - str - text for closing comment
- organization: mozilla
reposito... | # YAML file to give repositories and text to close PRs with
---
# organization/owner
# repository
# close - boolean - close any open PR
# lock - boolean - lock further discussion (must be done manually, but
# URL provided)
# message - str - text for closing comment
- organization: mozilla
reposito... | Add mozilla/webtools-bmo-mozilla to list per glob | Add mozilla/webtools-bmo-mozilla to list per glob
| YAML | mpl-2.0 | mozilla/github-org-scripts,hwine/github-org-scripts,fwenzel/github-org-scripts,fwenzel/github-org-scripts,mozilla/github-org-scripts,mozilla/github-org-scripts,hwine/github-org-scripts |
f2ef1a0be89927eab2fcd5b31cc4ab183c19567a | _data/main_nav.yml | _data/main_nav.yml | links:
- title: Vision
url: /vision/
- title: Bisq DAO
url: /dao/
- title: Network Stats
url: /stats/
- title: FAQ
url: /faq/
- title: Markets
url: /markets/
mobile_links:
- title: Community
url: /community/
- title: Blog
url: /blog/
- title: Documentation
url: https://docs.bisq.network/
targ... | links:
- title: Vision
url: /vision/
- title: Bisq DAO
url: /dao/
- title: Statistics
url: /stats/
- title: FAQ
url: /faq/
- title: Markets
url: /markets/
mobile_links:
- title: Community
url: /community/
- title: Blog
url: /blog/
- title: Documentation
url: https://docs.bisq.network/
target:... | Change stats page name to 'statistics' | Change stats page name to 'statistics'
Was 'network stats'.
| YAML | agpl-3.0 | bitsquare/site,bitsquare/site,bitsquare/site |
bb0950828a774d5ce8ff8fc90a43e6f7c9f39214 | .scrutinizer.yml | .scrutinizer.yml | filter:
excluded_paths:
- 'tests/*'
checks:
php: true
coding_style:
php:
spaces:
around_operators:
concatenation: true
build:
tests:
override:
-
command: 'tools/phpunit --coverage-clover=coverage-file'
cover... | filter:
excluded_paths:
- 'tests/*'
checks:
php: true
coding_style:
php:
spaces:
around_operators:
concatenation: true
build:
tests:
override:
-
command: 'phpunit --coverage-clover=coverage-file'
coverage:
... | Use different approach & test with php 7. | Use different approach & test with php 7.
| YAML | mit | SAM-IT/react-smtp |
d818519f143d7490ec2bede30181bc9c2837ed4c | .scrutinizer.yml | .scrutinizer.yml | build:
tests:
before:
- mysql --version
- mysql -u root -e "create database if not exists test_audit character set = 'utf8' collate='utf8_general_ci';"
- mysql -u root -e "create database if not exists test_data character set = 'utf8' collate='utf8_general_ci';"
... | build:
tests:
before:
- mysql --version
- mysql -u root -e "create database if not exists test_audit character set = 'utf8' collate='utf8_general_ci';"
- mysql -u root -e "create database if not exists test_data character set = 'utf8' collate='utf8_general_ci';"
... | Load all time zones into MySQL. | Load all time zones into MySQL.
| YAML | mit | SetBased/php-audit |
02bc3db0342cc924a389a6ed7598c8a6665c82c9 | playbooks/byo/openshift-master/scaleup.yml | playbooks/byo/openshift-master/scaleup.yml | ---
- include: ../openshift-cluster/initialize_groups.yml
- name: Ensure there are new_masters
hosts: localhost
connection: local
become: no
gather_facts: no
tasks:
- fail:
msg: >
Detected no new_masters or no new_nodes in inventory. Please
add hosts to the new_masters and new_nodes h... | ---
- include: ../openshift-cluster/initialize_groups.yml
- name: Ensure there are new_masters or new_nodes
hosts: localhost
connection: local
become: no
gather_facts: no
tasks:
- fail:
msg: >
Detected no new_masters or no new_nodes in inventory. Please
add hosts to the new_masters an... | Fix new_master or new_node fail check | Fix new_master or new_node fail check | YAML | apache-2.0 | ttindell2/openshift-ansible,miminar/openshift-ansible,twiest/openshift-ansible,detiber/openshift-ansible,detiber/openshift-ansible,miminar/openshift-ansible,sdodson/openshift-ansible,anpingli/openshift-ansible,twiest/openshift-ansible,miminar/openshift-ansible,akubicharm/openshift-ansible,twiest/openshift-ansible,avesh... |
7c84c720d62c09f8acc89d501d692897721a3d00 | playbooks/galera_status.yml | playbooks/galera_status.yml | - service: name=mysql state=started
- name: Fetch Galera sync status from MySQL
sudo: yes
command: mysql -N -e "SHOW STATUS LIKE 'wsrep_local_state'"
register: wsrep_local_state
- set_fact: galera_status="Synced"
when: wsrep_local_state.stdout == "wsrep_local_state\t4"
- set_fact: galera_status="Out of Sync"
... | - service: name=mysql state=started
- name: Fetch Galera sync status from MySQL
sudo: yes
command: mysql --defaults-file=/mnt/state/root/metadata.my.cnf -N -e "SHOW STATUS LIKE 'wsrep_local_state'"
register: wsrep_local_state
- set_fact: galera_status="Synced"
when: wsrep_local_state.stdout == "wsrep_local_stat... | Use defaults file explicitly for galera status | Use defaults file explicitly for galera status
There are corner cases while recovering from errors where this file will be
available but the resulting .my.cnf will not be installed into root's home
directory yet. This makes the process more resilient.
Change-Id: I2e9bf921ddaba82a9c40a8df44b05fe7dee92fb6
| YAML | apache-2.0 | SpamapS/tripleo-ansible,SpamapS/tripleo-ansible |
300656c30dff16478770a8385f529d8e55a96108 | playbooks/util_playbooks/register_host.yml | playbooks/util_playbooks/register_host.yml | # vim: set ft=ansible:
---
- hosts: localhost
connection: local
sudo: no
gather_facts: no
vars_files:
- ../vars.yml
vars:
cluster_hosts: "{{ groups['tag_env_' ~ cluster_id] }}"
tasks:
- fail:
msg: required values not set
when: rhsm_user is not defined or rhsm_pass is not defined or cluster... | # vim: set ft=ansible:
---
- hosts: localhost
connection: local
sudo: no
gather_facts: no
vars_files:
- ../vars.yml
vars:
cluster_hosts: "{{ groups['tag_env_' ~ cluster_id] }}"
tasks:
- fail:
msg: required values not set
when: rhsm_user is not defined or rhsm_pass is not defined or cluster... | Add support for OpenShift Enterprise Premium RHSM pool | Add support for OpenShift Enterprise Premium RHSM pool
| YAML | apache-2.0 | ryanj/demo-ansible,christian-posta/demo-ansible,thoraxe/demo-ansible,christian-posta/demo-ansible,thoraxe/demo-ansible,detiber/demo-ansible,2015-Middleware-Keynote/demo-ansible,detiber/demo-ansible,2015-Middleware-Keynote/demo-ansible,ryanj/demo-ansible |
523f37189989285315e2f0b07393aafb59ada60f | docker/test.yml | docker/test.yml | app:
extends:
file: common.yml
service: app
image: mycompany/myapp-test:latest
links:
- db
volumes_from:
- cache
volumes:
- ../src:/application
db:
extends:
file: common.yml
service: db
cache:
image: mycompany/myapp-test:latest
container_name: mycompany_myapp_cache
volume... | app:
extends:
file: common.yml
service: app
image: mycompany/myapp-test:latest
links:
- db
volumes_from:
- cache
volumes:
- ../src:/application
db:
extends:
file: common.yml
service: db
cache:
image: mycompany/myapp-test:latest
container_name: mycompany_myapp_cache
volume... | Change build directory to target | Change build directory to target
| YAML | mit | cloudhotspot/pypackage-docker,cloudhotspot/pypackage-docker,cloudhotspot/pypackage-docker,cloudhotspot/pypackage-docker |
dac06715f5c00883d7359b4098d332d74614f01f | snapcraft.yaml | snapcraft.yaml | name: syncplay
summary: Syncplay
version: build
version-script: cat syncplay/__init__.py | awk '/version/ {gsub("\047", "", $3); print $NF}'
summary: Client/server to synchronize media playback on many computers
description: |
Syncplay synchronises the position and play state of multiple media players
so that the v... | name: syncplay
summary: Syncplay
version: build
version-script: cat syncplay/__init__.py | awk '/version/ {gsub("\047", "", $3); print $NF}'
summary: Client/server to synchronize media playback on many computers
description: |
Syncplay synchronises the position and play state of multiple media players
so that the v... | Disable native wayland for snap | Disable native wayland for snap
Snap is using QT4 (due to lack of pyside2 in core18) which is not compatible with Wayland.
Hopefully this should prevent #331 from occurring. | YAML | apache-2.0 | alby128/syncplay,alby128/syncplay,Syncplay/syncplay,Syncplay/syncplay |
bd8f1bdde466dc417b4757c2a8f14eaf5807815b | metadata/de.taz.android.app.free.yml | metadata/de.taz.android.app.free.yml | Categories:
- Multimedia
- Reading
- Science & Education
License: AGPL-3.0-or-later
WebSite: https://www.taz.de
SourceCode: https://github.com/die-tageszeitung/taz-neo
IssueTracker: https://github.com/die-tageszeitung/taz-neo/issues
AutoName: die tageszeitung
RepoType: git
Repo: https://github.com/die-tageszeit... | Categories:
- Multimedia
- Reading
- Science & Education
License: AGPL-3.0-or-later
WebSite: https://www.taz.de
SourceCode: https://github.com/die-tageszeitung/taz-neo
IssueTracker: https://github.com/die-tageszeitung/taz-neo/issues
AutoName: die tageszeitung
RepoType: git
Repo: https://github.com/die-tageszeit... | Disable autoupdate and add maintainer note | Disable autoupdate and add maintainer note
https://forum.f-droid.org/t/corrected-autoupdatemode-after-source-release-will-it-apply/12843
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
f589dfd021a42925d802af351b9a08ab95d23e08 | metadata/org.segin.bfinterpreter.yml | metadata/org.segin.bfinterpreter.yml | Categories:
- Development
License: Apache-2.0
SourceCode: https://github.com/segin/BFInterpreter
IssueTracker: https://github.com/segin/BFInterpreter/issues
AutoName: BF Interpreter
Description: Implementation of the "Brainfuck" programming language.
RepoType: git
Repo: https://github.com/segin/BFInterpreter
Build... | Categories:
- Development
License: Apache-2.0
SourceCode: https://github.com/segin/BFInterpreter
IssueTracker: https://github.com/segin/BFInterpreter/issues
AutoName: BF Interpreter
Description: Implementation of the "Brainfuck" programming language.
RepoType: git
Repo: https://github.com/segin/BFInterpreter
Build... | Update CV of BF Interpreter to 0.8 (9) | Update CV of BF Interpreter to 0.8 (9)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
67fe3219ea5f10a463d999b8915f9a379746777e | templates/vsphere-resource-pools.yml | templates/vsphere-resource-pools.yml | jobs: (( merge ))
resource_pools:
- name: riak-pool
network: riak-cs-network
size: (( auto ))
stemcell:
name: bosh-aws-xen-ubuntu-lucid-go_agent
version: (( merge || 2578 ))
cloud_properties:
ram: 4096
disk: 10240
cpu: 2
- name: broker-pool
network: riak-cs-network
size: (( auto ))
ste... | jobs: (( merge ))
resource_pools:
- name: riak-pool
network: riak-cs-network
size: (( auto ))
stemcell:
name: bosh-vsphere-esxi-ubuntu-lucid-go_agent
version: (( merge || 2578 ))
cloud_properties:
ram: 4096
disk: 10240
cpu: 2
- name: broker-pool
network: riak-cs-network
size: (( auto ))
... | Use correct stemcell for vsphere | Use correct stemcell for vsphere
| YAML | apache-2.0 | datianshi/cf-riak-cs-release,cloudfoundry/cf-riak-cs-release,mikfreedman/cf-riak-cs-release,datianshi/cf-riak-cs-release,datianshi/cf-riak-cs-release,cloudfoundry/cf-riak-cs-release,mikfreedman/cf-riak-cs-release,mikfreedman/cf-riak-cs-release,cloudfoundry/cf-riak-cs-release,mikfreedman/cf-riak-cs-release,cloudfoundry/... |
2f110af596dfd9d96d9aea3252184e9bf9062367 | examples/cassandra-lib/client-config.yaml | examples/cassandra-lib/client-config.yaml | endpoints:
- localhost:9042
op_timeout: 5000000000 # 5 seconds (creating a new keyspace is very slow on travis)
dial_timeout: 3000000000 # 3 seconds
redial_interval: 60000000000 # 60 seconds
protocol_version: 4
| endpoints:
- localhost:9042
op_timeout: 10000000000 # 10 seconds (creating a new keyspace is very slow on travis)
dial_timeout: 3000000000 # 3 seconds
redial_interval: 60000000000 # 60 seconds
protocol_version: 4
| Extend optimout for cassandra in travis | Extend optimout for cassandra in travis
| YAML | apache-2.0 | junmipan/cn-infra,lukasmacko/cn-infra,jozef-slezak/cn-infra,mpundlik/cn-infra,ligato/cn-infra,lukasmacko/cn-infra,jozef-slezak/cn-infra,mpundlik/cn-infra,junmipan/cn-infra,ligato/cn-infra |
2031f101dc43d2a45f96700b0e0a757bf1f3dfe8 | 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: bu... | 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... | Exclude duplicate issues from changelog | Exclude duplicate issues from changelog
Closes gh-11154
| YAML | apache-2.0 | spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security |
0166e92d70063cc75e9a6c978f12b6166ebb321e | .github/assign-reviewers.yml | .github/assign-reviewers.yml | numberOfReviewers: 2
# This group should NEVER be changed based on availability; it's to help
# determine if a PR author is an external contributor.
team:
- brettcannon
- int19h
- karthiknadig
- karrtikr
- kimadeline
- luabud
- paulacamargo25
# Comment yourself out when you will be unavailable for revie... | numberOfReviewers: 2
# This group should NEVER be changed based on availability; it's to help
# determine if a PR author is an external contributor.
team:
- brettcannon
- int19h
- karthiknadig
- karrtikr
- kimadeline
- luabud
- paulacamargo25
# Comment yourself out when you will be unavailable for revie... | Add Paula back in the review queue | Add Paula back in the review queue | YAML | mit | DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode |
503089128397413431cbab80a0f9e9ed50532f6d | cluster/canary/tabulator.yaml | cluster/canary/tabulator.yaml | ---
apiVersion: apps/v1
kind: Deployment
metadata:
name: testgrid-tabulator
namespace: testgrid-canary
labels:
app: testgrid
channel: stable
component: tabulator
spec:
replicas: 1
selector:
matchLabels:
app: testgrid
channel: stable
component: tabulator
template:
metada... | ---
apiVersion: apps/v1
kind: Deployment
metadata:
name: testgrid-tabulator
namespace: testgrid-canary
labels:
app: testgrid
channel: stable
component: tabulator
spec:
replicas: 1
selector:
matchLabels:
app: testgrid
channel: stable
component: tabulator
template:
metada... | Remove filter-columns experiment from canary | Remove filter-columns experiment from canary
| YAML | apache-2.0 | GoogleCloudPlatform/testgrid,GoogleCloudPlatform/testgrid,GoogleCloudPlatform/testgrid,GoogleCloudPlatform/testgrid,GoogleCloudPlatform/testgrid,GoogleCloudPlatform/testgrid |
3b49c578345b1c32d3fdbc25533c718a5bb808b8 | purge-cluster.yml | purge-cluster.yml | ---
# This playbook purges Ceph
# It removes: packages, configuration files and ALL THE DATA
- hosts:
- mons
- osds
vars:
devices: [ '/dev/sdb', '/dev/sdc', '/dev/sdd', '/dev/sde', '/dev/sdf' ]
partitions: [ '1', '2', '3' ]
tasks:
- name: disk zap
command: /usr/sbin/sgdisk --zap-all --clear --... | ---
# This playbook purges Ceph
# It removes: packages, configuration files and ALL THE DATA
- hosts:
- mons
- osds
vars:
devices: [ '/dev/sdb', '/dev/sdc', '/dev/sdd', '/dev/sde', '/dev/sdf' ]
partitions: [ '1', '2', '3' ]
tasks:
- name: disk zap
command: /usr/sbin/sgdisk --zap-all --clear --... | Move parted to the end of the playbook | Move parted to the end of the playbook
If we call partprobe directly after the partition deletion the task will
get stucked.
Signed-off-by: Sébastien Han <62d754cc350e84d3b1c32ae79f976f5348e74a40@redhat.com>
| YAML | apache-2.0 | mcsage/ceph-ansible,nkmail/ceph-ansible,AcalephStorage/ceph-ansible,jsaintrocc/ceph-ansible,ceph/ceph-ansible,dang/ceph-ansible,jtaleric/ceph-ansible,sheepkiller/ceph-ansible,albertomurillo/ceph-ansible,fgal/ceph-ansible,PiotrProkop/ceph-ansible,albertomurillo/ceph-ansible,thetrav/ceph-ansible,jfcoz/ceph-ansible,Acalep... |
48de0b15804e56208df3d27695f3c25fe2fecb58 | manifests/cf-manifest/env-specific/prod-lon.yml | manifests/cf-manifest/env-specific/prod-lon.yml | ---
uaa_instances: 3
nats_instances: 3
diego_api_instances: 3
cell_instances: 105
router_instances: 15
api_instances: 12
doppler_instances: 54
log_api_instances: 27
scheduler_instances: 6
cc_worker_instances: 6
cc_hourly_rate_limit: 60000
cc_staging_timeout_in_seconds: 2700
cc_maximum_health_check_timeout_in_seconds: 3... | ---
uaa_instances: 3
nats_instances: 3
diego_api_instances: 3
cell_instances: 111
router_instances: 15
api_instances: 12
doppler_instances: 54
log_api_instances: 27
scheduler_instances: 6
cc_worker_instances: 6
cc_hourly_rate_limit: 60000
cc_staging_timeout_in_seconds: 2700
cc_maximum_health_check_timeout_in_seconds: 3... | Scale Cells in London to 111 | Scale Cells in London to 111
| YAML | mit | alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf |
ebeecd3d85df4b0452b93a8db08c434c03ed87ed | templates/docker/docker-compose.inherit.yml | templates/docker/docker-compose.inherit.yml | db:
container_name: <%= projectName %>_<%= environment %>_db
extends:
file: docker-compose.yml
service: db
volumes:
- /data/<%= projectName %>_<%= environment %>/mysql:/var/lib/mysql
<% if (cache.external) { %>
cache:
container_name: <%= projectName %>_<%= environment %>_cache
extends:
file: d... | db:
container_name: <%= projectName %>_<%= environment %>_db
extends:
file: docker-compose.yml
service: db
volumes:
- /data/<%= projectName %>_<%= environment %>/mysql:/var/lib/mysql
<% if (cache.external) { %>
cache:
container_name: <%= projectName %>_<%= environment %>_cache
extends:
file: d... | Fix virtualHost entry for devcloud environments. | Fix virtualHost entry for devcloud environments.
| YAML | mit | phase2/generator-outrigger-drupal,phase2/generator-outrigger-drupal,phase2/generator-outrigger-drupal |
ec58cbb5c5a8a0c02f5647b1e6251d8bf4b11e8d | ansible/site.yml | ansible/site.yml | ---
# Provisioning a dev box
- name: Configuring Base System
hosts: local
sudo: yes
sudo_user: vagrant
tasks:
- name: Checkout dotfiles
git: repo=git://github.com/scorpionresponse/dotfiles.git dest=/home/vagrant/dotfiles accept_hostkey=True
- name: Make install script executable
shell: chm... | ---
# Provisioning a dev box
- name: Configuring Base System
hosts: local
sudo: yes
sudo_user: vagrant
tasks:
- name: Checkout dotfiles
git: repo=git://github.com/scorpionresponse/dotfiles.git dest=/home/vagrant/dotfiles accept_hostkey=True
- name: Make install script executable
shell: chm... | Use shell to call dotfiles install script | Use shell to call dotfiles install script
| YAML | apache-2.0 | ScorpionResponse/devbox,ScorpionResponse/devbox |
3273e888f4d2038dc3eb177663cf702735761df6 | packs/windows/actions/winrm_cmd.yaml | packs/windows/actions/winrm_cmd.yaml | ---
name: "winrm_cmd"
runner_type: "run-python"
description: "Run a command via WinRM"
enabled: true
entry_point: "winrm_cmd.py"
parameters:
host:
type: "string"
description: "IP address of a Windows server to run the query on"
required: true
password:
type: "stri... | ---
name: "winrm_cmd"
runner_type: "run-python"
description: "Run a command via WinRM"
enabled: true
entry_point: "winrm_cmd.py"
parameters:
host:
type: "string"
description: "IP address of a Windows server to run the query on"
required: true
password:
type: "stri... | Change params type from list to array | Change params type from list to array
List is not a valid parameter type | YAML | apache-2.0 | StackStorm/st2contrib,StackStorm/st2contrib,StackStorm/st2contrib,tonybaloney/st2contrib,tonybaloney/st2contrib,tonybaloney/st2contrib |
4c987589b925a2d524d46763f234243354573985 | .github/workflows/coding-standards.yml | .github/workflows/coding-standards.yml | name: "CS"
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
coding-standards:
name: "CS Fixer & PHPStan"
runs-on: "ubuntu-16.04"
strategy:
matrix:
php:
- "7.3"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
... | name: "CS"
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
coding-standards:
name: "CS Fixer & PHPStan"
runs-on: "ubuntu-16.04"
strategy:
matrix:
php:
- "7.3"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
... | Remove cs2pr to have error reported in the build | Remove cs2pr to have error reported in the build
| YAML | mit | j0k3r/f43.me,j0k3r/f43.me,j0k3r/f43.me |
b6a151d28b6f362cf604200e391434e3e1e48fd7 | .github/workflows/clang-format.yml | .github/workflows/clang-format.yml | name: Clang-Format
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Clang-Format:
uses: steinwurf/clang-format-action/.github/workflows/action.yml@1.0.0
| name: Clang-Format
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Clang-Format:
uses: steinwurf/clang-format-action/.github/workflows/action.yml@2.0.0
| Update Clang-Format to new version 2.0.0 | Update Clang-Format to new version 2.0.0 | YAML | bsd-3-clause | steinwurf/endian,steinwurf/endian |
d1f7063a36b19c4c06c6b1e40b62906a9f699a3f | playbooks/roles/elasticsearch/defaults/main.yml | playbooks/roles/elasticsearch/defaults/main.yml | ---
elasticsearch_app_dir: "{{ COMMON_APP_DIR }}/elasticsearch"
elasticsearch_data_dir: "{{ COMMON_DATA_DIR }}/elasticsearch"
elasticsearch_log_dir: "{{ COMMON_LOG_DIR }}/elasticsearch"
elasticsearch_cfg_dir: "{{ COMMON_CFG_DIR }}/elasticsearch"
elasticsearch_apt_key_url: "https://artifacts.elastic.co/GPG-KEY-elasticse... | ---
elasticsearch_app_dir: "{{ COMMON_APP_DIR }}/elasticsearch"
elasticsearch_data_dir: "{{ COMMON_DATA_DIR }}/elasticsearch"
elasticsearch_log_dir: "{{ COMMON_LOG_DIR }}/elasticsearch"
elasticsearch_cfg_dir: "{{ COMMON_CFG_DIR }}/elasticsearch"
elasticsearch_apt_key_url: "https://artifacts.elastic.co/GPG-KEY-elasticse... | Upgrade ES version to 7.10 | Upgrade ES version to 7.10
| YAML | agpl-3.0 | mitodl/configuration,mitodl/configuration,arbrandes/edx-configuration,arbrandes/edx-configuration,arbrandes/edx-configuration,edx/configuration,edx/configuration,mitodl/configuration,arbrandes/edx-configuration,edx/configuration,arbrandes/edx-configuration,mitodl/configuration,edx/configuration |
304beeff19d5e70cfbf8cfd1cf93b8feeae8a11a | hieradata/common.yaml | hieradata/common.yaml | ---
# Classes is an array of Puppet modules to run
classes:
- site
site::domain: 'climate-cms.nci.org.au'
site::puppet::master: puppet-2
site::proxy_ip: '10.0.1.10'
# Default class arguments
apache::default_vhost: false
apache::default_mods: false
| ---
# Classes is an array of Puppet modules to run. This file defines classes to
# install on all servers.
classes:
- site
- client::icinga
site::domain: 'climate-cms.nci.org.au'
site::puppet::master: puppet-2
site::proxy_ip: '10.0.1.10'
# Default class arguments
apache::default_vhost: false
apache::default... | Enable icinga client for all servers | Enable icinga client for all servers
| YAML | apache-2.0 | coecms/climate-cms,coecms/climate-cms,coecms/climate-cms,coecms/climate-cms |
3d2af653be9bcc4f1c8b217edbec25d089aeba10 | packages/un/universe-instances-trans.yaml | packages/un/universe-instances-trans.yaml | homepage: https://github.com/dmwit/universe
changelog-type: ''
hash: 9f75eb7f8cda98e8ecb5e9f6ec079890a66265bdfd6707f4fa4cb8857327dfa4
test-bench-deps: {}
maintainer: me@dmwit.com
synopsis: Universe instances for types from the transformers and mtl packages
changelog: ''
basic-deps:
base: ! '>=4 && <5'
universe-base... | homepage: https://github.com/dmwit/universe
changelog-type: ''
hash: c96cbeb4bf0240bbe09476ca360e9d35cb07cb0af4324bfbfa5cce55df7a9c35
test-bench-deps: {}
maintainer: me@dmwit.com
synopsis: Universe instances for types from the transformers and mtl packages
changelog: ''
basic-deps:
base: ! '>=4 && <5'
universe-base... | Update from Hackage at 2016-01-18T06:35:15+0000 | Update from Hackage at 2016-01-18T06:35:15+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
a09ea9d95ea528b26c944a42b77c46694fda15c9 | .github/workflows/build-container.yml | .github/workflows/build-container.yml | name: Build Docker Container
on:
push:
branches: [ main ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Install doctl
... | name: Build Docker Container
on:
push:
branches: [ main ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to Contai... | Revert back to normal login | Revert back to normal login
| YAML | mit | cmcquillan/SMTPileIt,cmcquillan/SmtpPilot |
62225f4a47b4c3b0d3f845af785c99fee85527ef | .github/workflows/codeql-analysis.yml | .github/workflows/codeql-analysis.yml | name: "CodeQL"
on:
workflow_dispatch:
schedule:
- cron: '23 5 * * 0'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repo
uses: actions/checkout@v3
# The code in exa... | name: "CodeQL"
on:
workflow_dispatch:
schedule:
- cron: '23 5 * * 0'
pull_request:
branches:
- master
paths:
- '**.go'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- na... | Update CI configs to v0.7.10 | Update CI configs to v0.7.10
Update lint scripts and CI configs.
| YAML | mit | pion/transport |
12df6e39b8c6f4753e9d7b8683dfb8ef3ddd6fa6 | .github/workflows/test_and_deploy.yml | .github/workflows/test_and_deploy.yml | name: Test and deploy
on:
- push
- workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a
with:
ruby-version: 2.6.3
- name: Install dependencies
run: bund... | name: Test and deploy
on:
- push
- workflow_dispatch
jobs:
test_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a
with:
ruby-version: 2.6.3
- name: Install dependencies
... | Enforce consistency with other projects | Enforce consistency with other projects
| YAML | mit | mumuki/mumuki-gobstones-runner,mumuki/mumuki-gobstones-runner,mumuki/mumuki-gobstones-runner,mumuki/mumuki-gobstones-runner |
b26f7c9e603c062f5e3d202429bff867189b70e5 | data/sites/defra.yml | data/sites/defra.yml | ---
site: defra
whitehall_slug: department-for-environment-food-rural-affairs
host: www.defra.gov.uk
redirection_date: 10th April 2013
tna_timestamp: 20130128102031
title: Department for Environment, Food & Rural Affairs
furl: www.gov.uk/defra
homepage: https://www.gov.uk/government/organisations/department-for-env... | ---
site: defra
whitehall_slug: department-for-environment-food-rural-affairs
host: www.defra.gov.uk
redirection_date: 10th April 2013
tna_timestamp: 20130822084033
title: Department for Environment, Food & Rural Affairs
furl: www.gov.uk/defra
homepage: https://www.gov.uk/government/organisations/department-for-env... | Update crawl date for DEFRA partial transitions to August | Update crawl date for DEFRA partial transitions to August
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
5e53c7c4fd037c5fad48ae55dadd7a7e5e0b666d | update_idb_aus_slwa.yml | update_idb_aus_slwa.yml | ---
# Ansible playbook for State Library Western Australia, Australia (obviously)
- hosts: localhost
roles:
- logs
# We need to upgrade this.
- ideascube
#- role: kalite
# version: "0.15.0"
# lang: ["en"]
#- kiwix
#- role: zim_install
# zim_name: "wikipedia.en wiktionary.... | ---
# Ansible playbook for State Library Western Australia, Australia (obviously)
- hosts: localhost
roles:
- logs
#- role: kalite
# version: "0.15.0"
# lang: ["en"]
#- kiwix
#- role: zim_install
# zim_name: "wikipedia.en wiktionary.en wikiversity.en wikibooks.en wikisource.en gut... | Disable package upgrade for now. | Disable package upgrade for now.
| YAML | mit | ideascube/ansiblecube,ideascube/ansiblecube |
b7ebe4ee3611beaef08e8135320b64efdc215ade | src/fifth_robot_pkgs/fifth_robot_launcher/config/razor_imu_9dof.yaml | src/fifth_robot_pkgs/fifth_robot_launcher/config/razor_imu_9dof.yaml | ## USB port
port: /dev/serial/by-id/usb-SparkFun_SFE_9DOF-D21-if00
##### Calibration ####
### accelerometer
accel_x_min: -250.0
accel_x_max: 250.0
accel_y_min: -250.0
accel_y_max: 250.0
accel_z_min: -250.0
accel_z_max: 250.0
### magnetometer
# standard calibration
magn_x_min: -600.0
magn_x_max: 600.0
magn_y_min: -600... | ## USB port
port: /dev/serial/by-id/usb-SparkFun_SFE_9DOF-D21-if00
## Sensor Flame
## !!!!!!!!!!!!!!!!!!!! CHECK REQUIRED !!!!!!!!!!!!!!!!!!!!
flame_id: imu_link
##### Calibration ####
### accelerometer
accel_x_min: -250.0
accel_x_max: 250.0
accel_y_min: -250.0
accel_y_max: 250.0
accel_z_min: -250.0
accel_z_max: 250.... | Add flame_id param configure for imu | Add flame_id param configure for imu
| YAML | bsd-3-clause | CIR-KIT/fifth_robot_pkg,CIR-KIT/fifth_robot_pkg,CIR-KIT/fifth_robot_pkg |
cdf4eddc52c5d26b2ca7f8b2374db25cff62c92c | roles/StackStorm.st2chatops/meta/main.yml | roles/StackStorm.st2chatops/meta/main.yml | ---
galaxy_info:
description: Install st2chatops
author: humblearner
company: StackStorm
license: Apache 2.0
min_ansible_version: 2.5
platforms:
- name: Ubuntu
versions:
- bionic
- xenial
- name: EL
versions:
- 7
- 8
galaxy_tags:
- system
- st2
... | ---
galaxy_info:
description: Install st2chatops
author: humblearner
company: StackStorm
license: Apache 2.0
min_ansible_version: 2.5
platforms:
- name: Ubuntu
versions:
- bionic
- xenial
- focal
- name: EL
versions:
- 7
- 8
galaxy_tags:
- sy... | Update the st2chatops role and add support for Ubuntu 20.04 | Update the st2chatops role and add support for Ubuntu 20.04
| YAML | apache-2.0 | armab/ansible-st2,StackStorm/ansible-st2 |
bd992ff11c1f4b00eb0e0ebf348d5f3c3370ffa5 | packages/at/attoparsec-time.yaml | packages/at/attoparsec-time.yaml | homepage: https://github.com/nikita-volkov/attoparsec-time
changelog-type: ''
hash: 50d4c4fb080037721dc37e02f93d49a0e44c26408e46ac3e8e04683f0adbcc09
test-bench-deps:
base-prelude: <2
base: <5
filepath: ! '>=1.4 && <2'
doctest: ==0.13.*
directory: ! '>=1.2 && <2'
maintainer: Nikita Volkov <nikita.y.volkov@mail... | homepage: https://github.com/nikita-volkov/attoparsec-time
changelog-type: ''
hash: 170e366908be6d028cf1fc8f46117f51ebffacbda0d4855ce1f63bda6f3167af
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Attoparsec parsers of time
changelog: ''
basic-deps:
bytestring: ==0.10.*
base: ! '>=... | Update from Hackage at 2019-10-24T16:19:35Z | Update from Hackage at 2019-10-24T16:19:35Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f342a2405d8842c550127b9bda62fddcac701480 | common/server/framework/src/main/resources/log4j2.yml | common/server/framework/src/main/resources/log4j2.yml | Configuration:
name: Default
Appenders:
Console:
name: Console_Appender
target: SYSTEM_OUT
PatternLayout:
pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n"
Loggers:
Root:
level: info
AppenderRef:
- ref: Console_Appender
| Configuration:
name: Default
Appenders:
Console:
name: Console_Appender
target: SYSTEM_OUT
direct: true
PatternLayout:
pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{6} - %msg%n"
Loggers:
Root:
level: info
AppenderRef:
- ref: Console_Appender
| Use direct console logging and log more of the logger name. | Use direct console logging and log more of the logger name.
| YAML | mit | curioswitch/curiostack,curioswitch/curiostack,curioswitch/curiostack,curioswitch/curiostack,curioswitch/curiostack,curioswitch/curiostack,curioswitch/curiostack,curioswitch/curiostack,curioswitch/curiostack,curioswitch/curiostack |
5aac4185c38a58c5d4be5320d4ea20bc2423ff0a | packages/bl/blaze-colonnade.yaml | packages/bl/blaze-colonnade.yaml | homepage: https://github.com/andrewthad/colonnade#readme
changelog-type: ''
hash: 71af7674390e6395e1d755736a42be233682cae50189bc671c62c7c7f4918d8b
test-bench-deps:
base: ! '>=4.7 && <=5'
doctest: -any
colonnade: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Helper functions for using blaze-html with colonn... | homepage: https://github.com/andrewthad/colonnade#readme
changelog-type: ''
hash: c653cef15919aef41e2531dc78ea311617096c040b5a23027ba54eee38447646
test-bench-deps:
base: ! '>=4.7 && <=5'
doctest: -any
colonnade: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Helper functions for using blaze-html with colonn... | Update from Hackage at 2018-02-01T11:41:24Z | Update from Hackage at 2018-02-01T11:41:24Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
323893bc942e721b8981fb06263e5c58081b707c | .github/workflows/ci.yml | .github/workflows/ci.yml | name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: [2.4, 2.5, 2.6, 2.7]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
... | name: ci
on: [push, pull_request]
env:
RUBYOPT: -Eutf-8
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: [2.4, 2.5, 2.6, 2.7]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-r... | Fix failing tests on GitHub Actions | Fix failing tests on GitHub Actions
https://github.com/emsk/bundle_outdated_formatter/runs/434066982?check_suite_focus=true#step:5:8
| YAML | mit | emsk/bundle_outdated_formatter,emsk/bundle_outdated_formatter |
9b6640b4dcff5d3e0376beaf63c0127b3b6fae26 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [push]
jobs:
build:
name: Python ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-18.04
- macOS-10.14
python:
- '2.7'
- '3.7'
- 'pypy3'
steps:
- uses: actions/ch... | name: CI
on: [push]
jobs:
build:
name: Python ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-18.04
- macOS-10.14
python:
- '2.7'
- '3.7'
steps:
- uses: actions/checkout@master
... | Drop pypy3 on Mac for GitHub Actions since it segfaults | Drop pypy3 on Mac for GitHub Actions since it segfaults
| YAML | mit | wbond/oscrypto |
c09ddc2241516b8c5859b8ef1f70305f762f2d0a | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
jobs:
test:
name: Rust ${{matrix.rust}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [beta, stable, 1.36.0]
include:
- rust: nightly
rustflags: --cfg thiserror_night... | name: CI
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
jobs:
test:
name: Rust ${{matrix.rust}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [beta, stable, 1.36.0]
include:
- rust: nightly
rustflags: --cfg thiserror_night... | Fix catching clippy warnings as CI failures | Fix catching clippy warnings as CI failures
| YAML | apache-2.0 | dtolnay/thiserror |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.