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 |
|---|---|---|---|---|---|---|---|---|---|
92e1b977d5fa98b7d91f59ea9212c243140aea4c | roles/keystone/meta/main.yml | roles/keystone/meta/main.yml | ---
dependencies:
- role: monitoring-common
- role: logging-config
service: keystone
logdata: "{{ keystone.logs }}"
- role: openstack-source
project_name: keystone
project_rev: "{{ keystone.source.rev }}"
when: openstack_install_method == 'source'
| ---
dependencies:
- role: monitoring-common
- role: logging-config
service: keystone
logdata: "{{ keystone.logs }}"
- role: openstack-source
project_name: keystone
project_rev: "{{ keystone.source.rev }}"
# is this even required anymore with Juno?
python_requirements:
- { name: babel... | Break source install into an openstack-source role | Break source install into an openstack-source role
This is the first step to supporting both source installs as well as
package installs. Since the source installs are effectively the
same for all openstack projects, break the process into its own common
tasks and handlers. Then make install of source a dependency of... | YAML | mit | EricCrosson/ursula,dlundquist/ursula,knandya/ursula,greghaynes/ursula,nirajdp76/ursula,twaldrop/ursula,nirajdp76/ursula,pbannister/ursula,panxia6679/ursula,rongzhus/ursula,andrewrothstein/ursula,panxia6679/ursula,blueboxgroup/ursula,panxia6679/ursula,narengan/ursula,dlundquist/ursula,msambol/ursula,narengan/ursula,allo... |
b100f7d26001276a1b824e83d0d3bba10c88d98f | roles/taiga/tasks/circus.yml | roles/taiga/tasks/circus.yml | - name: install essential packages
become: true
become_user: root
apt:
name: "{{ item }}"
with_items:
- circus
- python-setuptools
- name: "make Circus configuration directory writeable for user {{ taiga_user }}"
become: true
become_user: root
file:
path: /etc/circus/conf.d
owner: roo... | - name: install essential packages
become: true
become_user: root
apt:
name: "{{ item }}"
with_items:
- circus
- python-setuptools
tags:
- install
- front-install
- back-install
- events-install
- name: "make Circus configuration directory writeable for user {{ taiga_user }}"
be... | Add missing install tags on Circus installation | Add missing install tags on Circus installation
| YAML | agpl-3.0 | fghaas/taiga-ansible |
219a7fdb47b514139cab6db1476f9131c80dec24 | .pre-commit-config.yaml | .pre-commit-config.yaml | ---
repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v2.2.3
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-yaml
- id: debug-statements
- id: detect-private-key... | ---
repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v2.2.3
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-yaml
- id: check-symlinks
- id: debug-statements
... | Add pre-commit hook to check symlinks | Add pre-commit hook to check symlinks
| YAML | mit | loliee/dotfiles,loliee/dotfiles |
3cff578f5070ea6d42de8c3c46f432935790668d | tasks/common.yml | tasks/common.yml | ---
# Common tasks applicable to both Oracle and OpenJDK
# this directory will contain the Java downloads
- name: Install local ansible data path directory (local)
tags:
- java
- download
local_action: file
state=directory
owner=0
group=0
mode=2777
dest={{ local_ansible_data_path }}
#... | ---
# Common tasks applicable to both Oracle and OpenJDK
# this directory will contain the Java downloads
- name: Install local ansible data path directory (local)
tags:
- java
- download
local_action: file
state=directory
owner=0
group=0
mode=2777
dest={{ local_ansible_data_path }}
#... | Fix wrong tag name (thx to review) | Fix wrong tag name (thx to review)
| YAML | apache-2.0 | silpion/ansible-java,ludovicc/ansible-java,ludovicc/ansible-java,silpion/ansible-java,hakamadare/ansible-java,AlbanAndrieu/ansible-java,hakamadare/ansible-java,ludovicc/ansible-java,silpion/ansible-java,hakamadare/ansible-java |
4001767c98f30654c71f3f7e3d1a0b8ca248284e | ansible/macbook_pro.yml | ansible/macbook_pro.yml | - hosts: all
tasks:
- name: register keyboard_id
shell: ioreg -n IOHIDKeyboard -r | grep -e VendorID\" -e ProductID | ruby -e 'print ARGF.read.scan(/\d+/).join(?-)'
register: keyboard_id
- name: s/caps lock/ctrl/
command: defaults -currentHost write -g com.apple.keyboard.modifiermapping.{{ ... | - hosts: all
tasks:
- name: register keyboard_id
shell: ioreg -n IOHIDKeyboard -r | grep -e VendorID\" -e ProductID | ruby -e 'print ARGF.read.scan(/\d+/).join(?-)'
register: keyboard_id
- name: s/caps lock/ctrl/
command: defaults -currentHost write -g com.apple.keyboard.modifiermapping.{{ ... | Install Logitech Options on the MBP | [ansible] Install Logitech Options on the MBP
| YAML | mit | kejadlen/dotfiles,kejadlen/dotfiles |
459faef7bbcbfd0124654aa773e1d3c4550c1048 | .github/workflows/build.yaml | .github/workflows/build.yaml | name: publish-to-pypi
on: [ push ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrad... | name: publish-to-pypi
on: [ push ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrad... | Add back publishing, to test.pypi | Add back publishing, to test.pypi
| YAML | mit | dgnorth/drift,dgnorth/drift,dgnorth/drift |
c46274f195307a68961b43abdbface163b89a1e8 | .github/workflows/docker.yml | .github/workflows/docker.yml | name: Docker
on:
push:
tags: ["v?[0-9]+.[0-9]+.[0-9]+"]
jobs:
cryptol:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- run: .github/ci.sh set_version
id: outputs
- name: Publish to Registry
uses: docker/build-push-ac... | name: Docker
on:
push:
tags: ["v?[0-9]+.[0-9]+.[0-9]+"]
jobs:
cryptol:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- run: .github/ci.sh set_version
id: outputs
- name: Publish to Registry
uses: docker/build-push-ac... | Set credentials for `cryptol-remote-api` Docker | Set credentials for `cryptol-remote-api` Docker
| YAML | bsd-3-clause | GaloisInc/cryptol,GaloisInc/cryptol,GaloisInc/cryptol |
656581abfb2576e36435f1a42417e881d5a523ed | .github/workflows/issues.yml | .github/workflows/issues.yml | name: Add bugs to bugs project
on:
issues:
types: [ opened, labeled ]
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.1.0
with:
project-url: https://github.com/orgs/timescale/projects/55
# Token will... | name: Add bugs to bugs project
on:
issues:
types: [ opened, labeled ]
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.1.0
with:
project-url: https://github.com/orgs/timescale/projects/55
github-token... | Update the name of the automation token | Update the name of the automation token
We now have an organization-wide token for automation. This patch
changes the name in existing Github actions accordingly.
| YAML | apache-2.0 | timescale/timescaledb-docker |
f994f461cd8aff9ae41c775103be999c6a2af113 | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,15.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-ver... | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-ver... | Build with Node.js 16 on GitHub Actions. | Build with Node.js 16 on GitHub Actions.
| YAML | mit | bigeasy/paxos,bigeasy/paxos |
7fd8dbf10b8d5ada549ed1c88c95877c223afedb | .github/workflows/wheels.yml | .github/workflows/wheels.yml | name: Build
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11, macos-10.15]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build wheels
... | name: Build
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build ... | Update build to build all | Update build to build all
| YAML | mit | viblo/pymunk,viblo/pymunk |
9e7ed83d1c8d2462f92c5fcf963c8a091d1cdd4d | config/database.yml | config/database.yml | default: &default
host: localhost
encoding: unicode
adapter: postgis
pool: 5
timeout: 5000
username: postgres
database: pp_development
development:
<<: *default
test:
<<: *default
database: pp_test
production:
<<: *default
database: pp_production
staging:
<<: *default
database: feature/n... | default: &default
host: localhost
encoding: unicode
adapter: postgis
pool: 5
timeout: 5000
username: postgres
database: pp_development
development:
<<: *default
test:
<<: *default
database: pp_test
production:
<<: *default
database: pp_production
staging:
<<: *default
database: develop
| Change staging repo to point to develop branch db | Change staging repo to point to develop branch db
| YAML | bsd-3-clause | unepwcmc/ProtectedPlanet,unepwcmc/ProtectedPlanet,unepwcmc/ProtectedPlanet,unepwcmc/ProtectedPlanet,unepwcmc/ProtectedPlanet |
4596840e6a9979f72c406dc129dd3c7f6ec59fef | config/livestax.yml | config/livestax.yml | livestax:
members:
- jamiecobbett
- lozette
- sl33p
- deberny
channel:
"#pull-requests"
exclude_titles:
- "[DO NOT MERGE]"
- DO NOT MERGE
- WIP
- "[DO NOT SEAL]"
- "[DON'T SEAL]"
- DO NOT SEAL
- DON'T SEAL
| livestax:
members:
- jamiecobbett
- lozette
- sl33p
- deberny
- shaffi
channel:
"#pull-requests"
exclude_titles:
- "[DO NOT MERGE]"
- DO NOT MERGE
- WIP
- "[DO NOT SEAL]"
- "[DON'T SEAL]"
- DO NOT SEAL
- DON'T SEAL
| Add Shaffi to the seal | Add Shaffi to the seal
| YAML | mit | livestax/seal,livestax/seal |
5490ba55103b6f7ae328e081d6348a934408e781 | k8s/demo/pvc-standard-cstor-default.yaml | k8s/demo/pvc-standard-cstor-default.yaml | kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: demo-cstor-vol1-claim
spec:
storageClassName: openebs-cstor-default-0.7.0
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 4G
| kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: demo-cstor-vol1-claim
spec:
storageClassName: openebs-cstor-sparse
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 4G
| Use cstor sparse sc for sample cstor PVC spec | refactor(yaml): Use cstor sparse sc for sample cstor PVC spec
Signed-off-by: ksatchit <4e09569602c0d91933a7f764cdb047663f85b57e@openebs.io>
| YAML | apache-2.0 | yudaykiran/openebs |
86680faac173fb46f81d7df0e0cf5417be27b79d | config/trinidad.yml | config/trinidad.yml | ---
classes_dir: src
libs_dir: jars/
public: ./public
jruby_max_runtimes: 5
extensions:
logging:
config: config/trinidad-logging.properties
logging_system: log4j
| ---
classes_dir: src
libs_dir: jars/
public: ./public
jruby_max_runtimes: 1
extensions:
logging:
config: config/trinidad-logging.properties
logging_system: log4j
| Revert jruby runtimes. It causes weird errors in production. | Revert jruby runtimes. It causes weird errors in production.
| YAML | epl-1.0 | circleci/frontend,RayRutjes/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,prathamesh-sonpatki/frontend,circleci/frontend |
be0be6cc9fe443c4da6ab415ce8e8f658f1ba278 | config_defaults.yml | config_defaults.yml | ---
.travis.yml:
includes:
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES=yes
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES=yes FUTURE_PARSER=yes
- rvm: 2.3.1
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES=yes
| ---
.travis.yml:
includes:
- rvm: 2.3.1
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES=yes
- rvm: 2.4.1
env: PUPPET_GEM_VERSION="~> 5.0" STRICT_VARIABLES=yes
| Remove puppet 3 testing, add puppet 5 testing | Remove puppet 3 testing, add puppet 5 testing
| YAML | apache-2.0 | rnelson0/puppet-modulesync_config,rnelson0/puppet-modulesync_config |
39144e5f70d7ea1c4d46db591eb3247640a30b12 | haskell-dev/tasks/main.yml | haskell-dev/tasks/main.yml | ---
- name: Add the unofficial GHC PPA
apt_repository: repo="ppa:hvr/ghc" state=present
- name: Install the basic Haskell packages
apt: name={{ item }} state=latest
with_items:
- alex-{{ alex_version }}
- ghc-{{ ghc_version }}
- happy-{{ happy_version }}
- cabal-install-{{ cabal_install_version }... | ---
- name: Add the unofficial GHC PPA
apt_repository: repo="ppa:hvr/ghc" state=present
- name: Add the FP Complete apt key
apt_key: url=https://s3.amazonaws.com/download.fpcomplete.com/ubuntu/fpco.key state=present
- name: Add the FP Complete repository
apt_repository: repo="deb http://download.fpcomplete.com/... | Add stack to Haskell role. | Add stack to Haskell role.
| YAML | mit | tomku/ansible-roles |
f7b0dfcf5325abc3b1dedd4cad6b580efd32fe3f | opensanctions/config/gb_hmt_sanctions.yml | opensanctions/config/gb_hmt_sanctions.yml | name: gb_hmt_sanctions
description: "[OSANC] UK HM Treasury sanctions list"
schedule: daily
pipeline:
init:
method: seed
params:
url: 'http://hmt-sanctions.s3.amazonaws.com/sanctionsconlist.csv'
handle:
pass: fetch
fetch:
method: fetch
handle:
pass: parse
parse:
method: o... | name: gb_hmt_sanctions
description: "[OSANC] UK HM Treasury sanctions list"
schedule: daily
pipeline:
init:
method: seed
params:
url: 'https://ofsistorage.blob.core.windows.net/publishlive/ConList.csv'
handle:
pass: fetch
fetch:
method: fetch
handle:
pass: parse
parse:
me... | Update HMT Sanctions Check URL | Update HMT Sanctions Check URL | YAML | mit | pudo/opennames,pudo/opennames |
84e1315a3e4ae8eefdbca2ae8e46727d8dd5253b | k8s/charts/openebs/Chart.yaml | k8s/charts/openebs/Chart.yaml | apiVersion: v1
version: 0.5.4
name: openebs
appVersion: 0.5.3
description: Containerized Storage for Containers
icon: https://raw.githubusercontent.com/openebs/chitrakala/master/OpenEBS%20logo/openebs%20logos-03.png
home: http://www.openebs.io/
keywords:
- cloud-native-storage
- block-storage
- iSCSI
- storage
... | apiVersion: v1
version: 0.5.4
name: openebs
appVersion: 0.5.4
description: Containerized Storage for Containers
icon: https://raw.githubusercontent.com/openebs/chitrakala/master/OpenEBS%20logo/openebs%20logos-03.png
home: http://www.openebs.io/
keywords:
- cloud-native-storage
- block-storage
- iSCSI
- storage
... | Update the helm chart appVersion to use 0.5.4 | Update the helm chart appVersion to use 0.5.4
Signed-off-by: ksatchit <4e09569602c0d91933a7f764cdb047663f85b57e@cloudbyte.com>
| YAML | apache-2.0 | yudaykiran/openebs |
79aae867713ff0758fa2aecd46330c9b352a0620 | packages/at/attoparsec-time.yaml | packages/at/attoparsec-time.yaml | homepage: https://github.com/nikita-volkov/attoparsec-time
changelog-type: ''
hash: ee92ab803345039990d6b68822ef9e198276e954dac2c7e790c53249a6bbe5ce
test-bench-deps:
base-prelude: <2
base: <5
filepath: ! '>=1.4 && <2'
doctest: ==0.11.*
directory: ! '>=1.2 && <2'
maintainer: Nikita Volkov <nikita.y.volkov@mail... | homepage: https://github.com/nikita-volkov/attoparsec-time
changelog-type: ''
hash: 09608f6d209d147ff1696d0aede1ba2331ba27fd1938738ae51dbe5fbe0a9a06
test-bench-deps:
base-prelude: <2
base: <5
filepath: ! '>=1.4 && <2'
doctest: ==0.11.*
directory: ! '>=1.2 && <2'
maintainer: Nikita Volkov <nikita.y.volkov@mail... | Update from Hackage at 2017-04-23T14:29:07Z | Update from Hackage at 2017-04-23T14:29:07Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
5e4207dcb741f7f4bedeea51fc683e28a5349900 | packages/ye/yesod-paginator.yaml | packages/ye/yesod-paginator.yaml | homepage: http://github.com/pbrisbin/yesod-paginator
changelog-type: ''
hash: c86062bddb72f54c06a767f096cb3dc16dbd6f6a71c753dc6f91da2ad751bc33
test-bench-deps: {}
maintainer: pbrisbin@gmail.com
synopsis: A pagination approach for yesod
changelog: ''
basic-deps:
base: ! '>=4 && <5'
persistent: ! '>=1.3 && <1.4'
te... | homepage: http://github.com/pbrisbin/yesod-paginator
changelog-type: ''
hash: 387bae75e4dd96591ee84a8592e492d4011b2f2e8a473af3b5e6184222c9b783
test-bench-deps: {}
maintainer: pbrisbin@gmail.com
synopsis: A pagination approach for yesod
changelog: ''
basic-deps:
base: ! '>=4 && <5'
persistent: ! '>=2.0'
text: ! '>... | Update from Hackage at 2015-11-02T19:16:52+0000 | Update from Hackage at 2015-11-02T19:16:52+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
d5ed97b0c0e7457b7d768f410389db6670dcd2dd | compiler/sim/compiler.yml | compiler/sim/compiler.yml | #
# Copyright (c) 2015 Runtime Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in wri... | #
# Copyright (c) 2015 Runtime Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in wri... | Fix sim build for Linux. | Fix sim build for Linux.
| YAML | apache-2.0 | andrzej-kaczmarek/incubator-mynewt-core,mlaz/mynewt-core,wes3/incubator-mynewt-core,IMGJulian/incubator-mynewt-core,wes3/incubator-mynewt-core,andrzej-kaczmarek/incubator-mynewt-core,mlaz/mynewt-core,andrzej-kaczmarek/apache-mynewt-core,wes3/incubator-mynewt-core,wes3/incubator-mynewt-core,andrzej-kaczmarek/incubator-m... |
f0119045e75493b7421ea244abd1a43cf16248b8 | _data/versions.yml | _data/versions.yml | "3.10": "v3.10.0-devel"
"3.9": "v3.9.0-beta.1"
"3.8": "v3.8.5"
"3.7": "v3.7.16"
"3.6": "v3.6.16"
"3.5": "v3.5.7"
"3.4": "v3.4.11"
"3.3": "v3.3.25"
| "3.10": "v3.10.0-devel"
"3.9": "v3.9.0-beta.1"
"3.8": "v3.8.5"
"3.7": "v3.7.17"
"3.6": "v3.6.16"
"3.5": "v3.5.7"
"3.4": "v3.4.11"
"3.3": "v3.3.25"
| Create 'release/3.7.17' for 3.7.17 release | Create 'release/3.7.17' for 3.7.17 release
| YAML | apache-2.0 | arangodb/docs,arangodb/docs,arangodb/docs,arangodb/docs |
7e21290d2d21c980d33976fd2011b68ac43b13d0 | _config/site.yml | _config/site.yml | encoding: UTF-8
profiles:
production:
disqus: v4tov6
google_analytics: UA-5839460-1
change_frequency: weekly
base_url: http://www.knowledgebombs.net/
deploy:
host: awestruct@oxygen.clearfly.net
path: /var/www/knowledgebombs.net
uncommitted: true | encoding: UTF-8
profiles:
production:
disqus: v4tov6
google_analytics: UA-5839460-1
change_frequency: weekly
base_url: https://www.knowledgebombs.net/
deploy:
host: awestruct@oxygen.clearfly.net
path: /var/www/knowledgebombs.net
uncommitted: true | Use HTTPS for base URL | Use HTTPS for base URL
| YAML | mit | codylerum/knowledgebombs.net,codylerum/knowledgebombs.net |
8108c040452856e161cfad73a2c29d60ea1cb97e | manifest.yml | manifest.yml | ---
applications:
- name: test-app
command: thin -R config.ru start
path: .
| ---
applications:
- name: rabbit-example-app
command: thin -R config.ru start
path: .
| Use the corrent application name for cf | Use the corrent application name for cf
[#127470381]
Signed-off-by: Svett Ralchev <da5e7676cee2b8579db636d977fd7d6ee8a31e38@pivotal.io>
| YAML | apache-2.0 | pivotal-cf/rabbit-example-app |
6575b36e86f601373b1ee86662692d8920b2517b | manifest.yml | manifest.yml | ---
applications:
- name: change-me
memory: 512M
buildpack: java_buildpack
services:
- change-me-db
env:
JBP_CONFIG_JAVA_MAIN: '{ arguments: "server s3://change-me/change-me.yaml" }'
AWS_ACCESS_KEY_ID: change-me
AWS_SECRET_ACCESS_KEY: change-me
AWS_DEFAULT_REGION: change-me
| ---
applications:
- name: change-me
memory: 512M
buildpack: java_buildpack
services:
- change-me-db
env:
JBP_CONFIG_JAVA_MAIN: '{ arguments: "server s3://change-me/change-me.yaml" }'
AWS_ACCESS_KEY_ID: change-me
AWS_SECRET_ACCESS_KEY: change-me
AWS_REGION: change-me
| Set the AWS region explicitly | Set the AWS region explicitly
| YAML | mit | openregister/openregister-java,openregister/openregister-java,openregister/openregister-java,openregister/openregister-java,openregister/openregister-java |
e4ca20659d182e0abfbbd53ad29fca86464bef5b | manifest.yml | manifest.yml | applications:
- name: pzsvc-pdal
host: pzsvc-pdal
memory: 1G
instances: 1
timeout: 80
command: ./pzsvc-pdal
buildpack: https://github.com/venicegeo/binary-pdal-buildpack
env:
GDAL_DATA: "/usr/local/share/gdal"
LD_LIBRARY_PATH: "/usr/local/lib"
PATH: "/usr/local/bin:/bin:/usr/bin:/home/vcap/app... | applications:
- name: pzsvc-pdal
host: pzsvc-pdal
memory: 1G
instances: 1
timeout: 80
command: ./pzsvc-pdal
buildpack: https://github.com/venicegeo/binary-pdal-buildpack
env:
GDAL_DATA: "/home/vcap/app/gdal/1.10"
LD_LIBRARY_PATH: "/home/vcap/app/pdal"
PATH: "/home/vcap/app/pdal:/bin:/usr/bin:/... | Revert "Unsure if we can write the buildpack binaries into /usr/local, but try to trigger the whole process regardless" | Revert "Unsure if we can write the buildpack binaries into /usr/local, but try to trigger the whole process regardless"
This reverts commit f7be0c5e427fa9bedced938c93e5840df8d0c4f5.
| YAML | apache-2.0 | venicegeo/pdal-microservice,venicegeo/pdal-microservice,venicegeo/pzsvc-pdal,venicegeo/pzsvc-pdal |
14f2c8baf8c40fc22a8357faf3591eaac41775c6 | .github/workflows/copy-pr-template-to-dependabot-prs.yaml | .github/workflows/copy-pr-template-to-dependabot-prs.yaml | name: Copy PR template to Dependabot PRs
on:
pull_request_target:
types: [opened]
jobs:
copy_pr_template:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
- name: Fetch PR template
id: fetch-pr-template
uses: juliangruber/re... | name: Copy PR template to Dependabot PRs
on:
pull_request_target:
types: [opened]
permissions:
contents: read
pull-requests: write
jobs:
copy_pr_template:
name: Copy PR template to Dependabot PR
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/chec... | Create workflow to copy PR template onto Dependabot PRs | Create workflow to copy PR template onto Dependabot PRs | YAML | mit | alphagov/content-tagger,alphagov/content-tagger,alphagov/content-tagger |
d2b5ceec0fbeba64b35be1c1964ce36adfd050da | config/database.sample.yml | config/database.sample.yml | # PostgreSQL. Versions 9.1 or later are supported.
#
# Install the pg driver:
# gem install pg
# On Mac OS X with macports:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem install pg
# Choose the win32 build.
# Install PostgreSQL and put its /bin dire... | # PostgreSQL. Versions 9.1 or later are supported.
#
# Install the pg driver:
# gem install pg
# On Mac OS X with macports:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem install pg
# Choose the win32 build.
# Install PostgreSQL and put its /bin dire... | Make a default database template for easy use with vagrant. | Make a default database template for easy use with vagrant.
| YAML | mit | raksonibs/raimcrowd,jessicalau/vamosagir,MicroPasts/micropasts-crowdfunding,diogob/catarse,diogob/catarse,mrmarcondes/catarse,manuelballmer/catarse_b,frbelli/catarse,rockkhuya/taydantay,pinak1180/cytarse,jinutm/silverl,wlads/catarse,Saharitte/catarse,victor95pc/catarse,jinutm/silverprod,wlads/catarse,BPluribus/Pluribus... |
05b169dc20eb28ecac43bfe8fe1306e21347ade8 | config/new_relic_agent.yml | config/new_relic_agent.yml | # Cloud Foundry Java Buildpack
# Copyright (c) 2013 the original author or authors.
#
# 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
#
# Unl... | # Cloud Foundry Java Buildpack
# Copyright (c) 2013 the original author or authors.
#
# 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
#
# Unl... | Upgrade New Relic to 3.8.+ | Upgrade New Relic to 3.8.+
A new version of New Relic is available and should be consumed in the Java
buildpack, this change does so.
[#74772414]
| YAML | apache-2.0 | leachbj/java-buildpack,BLaurent/java-buildpack,kyletravis/java-buildpack,ThomasBruggenwirth/shop-java-buildpack,datianshi/app-dynamic-jb,kaizimmerm/java-buildpack,yihyunyi/java-buildpack,shinji62/liferay-buildpack,broec/java-buildpack,andrewBrunette/java-buildpack,pivotal-cf/weblogic-buildpack,datianshi/app-dynamic-jb,... |
11b0cd415fb80c2cf07646b519ea7251fc5ca863 | vars/preview.yml | vars/preview.yml | ---
domain: preview.marketplace.team
maintenance_mode: live
api:
memory: 2GB
router:
instances: 2
rate_limiting_enabled: enabled
search-api:
instances: 2
| ---
domain: preview.marketplace.team
maintenance_mode: live
api:
memory: 2GB
buyer-frontend:
instances: 2
router:
instances: 2
rate_limiting_enabled: enabled
search-api:
instances: 2
| Scale Preview Buyer FE to 2 instances | Scale Preview Buyer FE to 2 instances
Following recent flakiness during smoulder tests.
| YAML | mit | alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws |
da8e2cfba6e2a2d67aa8c97b7e7864db3d197622 | metadata/app.fedilab.openmaps.yml | metadata/app.fedilab.openmaps.yml | Categories:
- Navigation
License: GPL-3.0-only
WebSite: https://framagit.org/tom79/openmaps
SourceCode: https://framagit.org/tom79/openmaps
IssueTracker: https://framagit.org/tom79/openmaps/issues
AutoName: OpenMaps
RepoType: git
Repo: https://framagit.org/tom79/openmaps.git
Builds:
- versionName: 1.0.5
vers... | Categories:
- Navigation
License: GPL-3.0-only
WebSite: https://framagit.org/tom79/openmaps
SourceCode: https://framagit.org/tom79/openmaps
IssueTracker: https://framagit.org/tom79/openmaps/issues
AutoName: OpenMultiMaps
RepoType: git
Repo: https://framagit.org/tom79/openmaps.git
Builds:
- versionName: 1.0.5
... | Update OpenMultiMaps to 1.1.0 (8) | Update OpenMultiMaps to 1.1.0 (8)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
031c7a6c9e66ac831ef0e07b3ff0f41e472d0761 | metadata/de.selfnet.wifisetup.yml | metadata/de.selfnet.wifisetup.yml | Categories:
- Connectivity
License: Apache-2.0
WebSite: https://www.selfnet.de/services/wlan.html
SourceCode: https://github.com/Selfnet/selfnet-wificonfig
IssueTracker: https://github.com/Selfnet/selfnet-wificonfig/issues
AutoName: Selfnet Wi-Fi Setup
RepoType: git
Repo: https://github.com/Selfnet/selfnet-wificonf... | Categories:
- Connectivity
License: Apache-2.0
WebSite: https://www.selfnet.de/services/wlan.html
SourceCode: https://github.com/Selfnet/selfnet-wificonfig
IssueTracker: https://github.com/Selfnet/selfnet-wificonfig/issues
AutoName: Selfnet Wi-Fi Setup
RepoType: git
Repo: https://github.com/Selfnet/selfnet-wificonf... | Update Selfnet Wi-Fi Setup to 1.1.2 (4) | Update Selfnet Wi-Fi Setup to 1.1.2 (4)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
9bf673f69954ed907e43ab9b9334e2a7b51914f5 | Stars_Without_Number_Revised/.github/workflows/main.yml | Stars_Without_Number_Revised/.github/workflows/main.yml | # This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in para... | # This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in para... | Update file(s) "/." from "Karlinator/Roll20-SWNRevised" | Update file(s) "/." from "Karlinator/Roll20-SWNRevised"
| YAML | mit | finderski/roll20-character-sheets,kreuvf/roll20-character-sheets,Roll20/roll20-character-sheets,vince-roll20/roll20-character-sheets,Zakarik/roll20-character-sheets,Polaris-Dust/roll20-character-sheets,mantonyz/roll20-character-sheets,kreuvf/roll20-character-sheets,Zakarik/roll20-character-sheets,vince-roll20/roll20-ch... |
8f2904be5a34d401514ae84490719733c0919387 | .github/workflows/node.js.yml | .github/workflows/node.js.yml | # This workflow will do a clean install of node dependencies, 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: Node.js CI
on:
push:
branches: [ master, master-v5 ... | # This workflow will do a clean install of node dependencies, 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: Node.js CI
on:
push:
branches: [ master ]
pull_re... | Remove master-v5 check from CI | Remove master-v5 check from CI
master-v5 is now merged!
| YAML | agpl-3.0 | internetarchive/bookreader,internetarchive/bookreader |
0781150f2005b478c3d58984ac300a2406e0342f | .gitlab/ci/lint.gitlab-ci.yml | .gitlab/ci/lint.gitlab-ci.yml | ########################################
# LINTER
########################################
# later we must fix lint and format-check jobs and remove "allow_failure"
lint27:
stage: lint
image: "before-install"
needs: []
allow_failure: true
script:
- tox -e py27-lint
lint37:
stage: lint
image: "before... | ########################################
# LINTER
########################################
# later we must fix lint and format-check jobs and remove "allow_failure"
lint37:
stage: lint
image: "before-install"
needs: []
allow_failure: true
script:
- tox -e py37-lint
invalidcode37:
stage: lint
image: ... | Remove python2.7 lint from CI | Remove python2.7 lint from CI
| YAML | agpl-3.0 | YunoHost/yunohost,YunoHost/moulinette-yunohost,YunoHost/moulinette-yunohost,YunoHost/moulinette-yunohost,YunoHost/yunohost,YunoHost/yunohost,YunoHost/moulinette-yunohost,YunoHost/moulinette-yunohost,YunoHost/yunohost |
0aae5da2340f37121a3f5c47d9b8b07da2b759d5 | setup.yml | setup.yml | ---
- name: playbook to set the MDC
hosts: local
connection: local
vars:
local_path: "{{ lookup('env', 'HOME') }}"
anaconda_path: "{{ local_path }}/anaconda"
mdc_path: "{{ local_path }}/git/mdc"
tasks:
# - name: apt-get installs
# apt:
# name: "{{ item }}"
... | ---
- name: playbook to set the MDC
hosts: local
connection: local
vars:
local_path: "{{ lookup('env', 'HOME') }}"
anaconda_path: "{{ local_path }}/anaconda"
mdc_path: "{{ local_path }}/git/mdc"
tasks:
- name: apt-get installs
apt:
name: "{{ item }}"
... | Add bzip2 to installation as it is required | Add bzip2 to installation as it is required
| YAML | mit | wd15/mdc-dockerize |
cb9376cb47b3f0eeeb5f9a137072e89b1bf902ce | packages/flutter/pubspec.yaml | packages/flutter/pubspec.yaml | name: sky
version: 0.0.26
author: Chromium Authors <sky-dev@googlegroups.com>
description: A framework for writing Sky applications
homepage: https://github.com/domokit/sky_engine/tree/master/sky/packages/sky
dependencies:
cassowary: ^0.1.7
material_design_icons: ^0.0.2
mojo_services: 0.0.21
mojo: 0.0.21
newt... | name: sky
version: 0.0.26
author: Chromium Authors <sky-dev@googlegroups.com>
description: A framework for writing Sky applications
homepage: https://github.com/domokit/sky_engine/tree/master/sky/packages/sky
dependencies:
cassowary: ^0.1.7
material_design_icons: ^0.0.2
mojo_services: 0.0.21
mojo: 0.0.21
newt... | Make sky package depend on new sky_engine and sky_services | Make sky package depend on new sky_engine and sky_services
| YAML | bsd-3-clause | jason-simmons/flutter,flutter/flutter,Hixie/flutter,cbracken/flutter,flutter/flutter,Hixie/flutter,cbracken/flutter,Hixie/flutter,tvolkert/flutter,flutter/flutter,tvolkert/flutter,tvolkert/flutter,Hixie/flutter,flutter/flutter,flutter/flutter,Hixie/flutter,cbracken/flutter,flutter/flutter,aghassemi/flutter,cbracken/flu... |
58aac53ddef4e0f13aff25b700f1ab035a02203d | packages/tr/trasa-client.yaml | packages/tr/trasa-client.yaml | homepage: ''
changelog-type: ''
hash: b2df00539f1061ac737eb9e5d6de05a65bc7362d1c35fbf9deab2439eabde15e
test-bench-deps:
http-client: -any
base: ! '>=4.9 && <5'
trasa: -any
unordered-containers: -any
text: -any
ip: -any
trasa-client: -any
http-types: -any
aeson: -any
maintainer: mckean.kylej@gmail.com
... | homepage: https://github.com/haskell-trasa/trasa
changelog-type: ''
hash: 35c281709ddbfc1746f43528240f1c53351026236eb4c88beea26920b8850497
test-bench-deps: {}
maintainer: |-
Andrew Martin <andrew.thaddeus@gmail.com>
Kyle McKean <mckean.kylej@gmail.com>
chessai <chessai1996@gmail.com>
synopsis: Type safe http requ... | Update from Hackage at 2019-03-24T17:43:42Z | Update from Hackage at 2019-03-24T17:43:42Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3db5a3256e4e5429dfbaffc1d9b0de0194d6e9aa | playbooks/provision-image.yml | playbooks/provision-image.yml | ---
- hosts: localhost
connection: local
vars:
- image: CentOS-7-x86_64-GenericCloud-GA-7.0.1406_01.raw
- image_url: http://cloud.centos.org/centos/7/devel/{{ image }}
tasks:
- name: download image
local_action: get_url
url={{ image_url }}
dest={{ ansible_env.PWD }}/{{ image }}
| ---
- hosts: localhost
connection: local
vars:
- base_url: http://cloud.centos.org/centos/7/devel
- image: CentOS-7-x86_64-GenericCloud-GA-7.0.1406_01
- sha256sum: 6a31fa7ad8c5b10d4c58e2dec47bf5971bb21ec730b830d9b6201eada1c9200c
- tmp_dir: "{{ ansible_env.PWD }}"/tmp
tasks:
- name: enable open... | Add playbook for provisioning image to glance. | Add playbook for provisioning image to glance.
| YAML | apache-2.0 | Parkayun/microservices-infrastructure,eirslett/microservices-infrastructure,chrislovecnm/microservices-infrastructure,sehqlr/mantl,eirslett/microservices-infrastructure,ludovicc/microservices-infrastructure,arminc/microservices-infrastructure,cmgc/microservices-infrastructure,asteris-llc/microservices-playground,CiscoC... |
10f91f1f28158422bf2446d35eb3a86f4fab674a | packages/at/ats-storable.yaml | packages/at/ats-storable.yaml | homepage: https://github.com//ats-generic#readme
changelog-type: ''
hash: dcd680b3d74eac3745b68f333ce06f02ef9dbd1ac9a07615f156c293172bfa6f
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: Marshal ATS types into Haskell
changelog: ''
basic-deps:
bytestring: -any
composition-prelude: -any
base: ! '>=4.9... | homepage: https://github.com//ats-generic#readme
changelog-type: ''
hash: 1ded67820d044d290b8404a5bc2f1cd170054d69a5aaf5c0e46a09b7ee2fbe7d
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: Marshal ATS types into Haskell
changelog: ''
basic-deps:
bytestring: -any
composition-prelude: -any
base: ! '>=4.9... | Update from Hackage at 2018-02-11T19:37:23Z | Update from Hackage at 2018-02-11T19:37:23Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
48ac4a84073d6def6f74df38b96111e92413a508 | packages/flutter/pubspec.yaml | packages/flutter/pubspec.yaml | name: sky
version: 0.0.24
author: Chromium Authors <sky-dev@googlegroups.com>
description: A framework for writing Sky applications
homepage: https://github.com/domokit/sky_engine/tree/master/sky/packages/sky
dependencies:
cassowary: ^0.1.7
material_design_icons: ^0.0.2
mojo_services: 0.0.20
mojo: 0.0.20
mojo... | name: sky
version: 0.0.24
author: Chromium Authors <sky-dev@googlegroups.com>
description: A framework for writing Sky applications
homepage: https://github.com/domokit/sky_engine/tree/master/sky/packages/sky
dependencies:
cassowary: ^0.1.7
material_design_icons: ^0.0.2
mojo_services: 0.0.21
mojo: 0.0.21
newt... | Update mojo and mojo_services dependencies | Update mojo and mojo_services dependencies
| YAML | bsd-3-clause | cbracken/flutter,cbracken/flutter,Hixie/flutter,aghassemi/flutter,Hixie/flutter,flutter/flutter,cbracken/flutter,Hixie/flutter,tvolkert/flutter,tvolkert/flutter,jason-simmons/flutter,turnidge/flutter,Hixie/flutter,turnidge/flutter,cbracken/flutter,Hixie/flutter,tvolkert/flutter,flutter/flutter,flutter/flutter,cbracken/... |
e8a0b8351b2576d7bde4ec31e56773b99c844317 | packages/ra/rank-product.yaml | packages/ra/rank-product.yaml | homepage: http://github.com/GregorySchwartz/rank-product#readme
changelog-type: ''
hash: baa32db0358a5c8cb9db1fdb0d60205f6bd8c2ed4a4605cc513c8879e994a4bd
test-bench-deps: {}
maintainer: gsch@mail.med.upenn.edu
synopsis: Find the rank product of a data set.
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
random-fu: ... | homepage: http://github.com/GregorySchwartz/rank-product#readme
changelog-type: ''
hash: b19c42db895c32198f1505fc881e7dbe4f3d12618cf40053583faf6d495a6514
test-bench-deps: {}
maintainer: gsch@mail.med.upenn.edu
synopsis: Find the rank product of a data set.
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
random-fu: ... | Update from Hackage at 2017-04-05T19:48:48Z | Update from Hackage at 2017-04-05T19:48:48Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
728912df26bb1ad2983336e5b99f51b8ad254ff6 | packages/ya/yampa-canvas.yaml | packages/ya/yampa-canvas.yaml | homepage: ''
changelog-type: markdown
hash: 40342318303cc5a26cd0089e2938f7e423942ac111f93957c891f8edea976e15
test-bench-deps: {}
maintainer: andygill@ku.edu
synopsis: blank-canvas frontend for Yampa
changelog: ! '## 0.2.2
* Allow building with `blank-canvas-0.6` and `Yampa-0.10`
## 0.2.1
* Allowed building wi... | homepage: ''
changelog-type: markdown
hash: bdd784726a9c0cd002854f0ffa8f5c3e6bceb79e4368d0f396fb4a3e33b345ae
test-bench-deps: {}
maintainer: andygill@ku.edu
synopsis: blank-canvas frontend for Yampa
changelog: ! '## 0.2.2
* Allow building with `blank-canvas-0.6` and `Yampa-0.10`
## 0.2.1
* Allowed building wi... | Update from Hackage at 2018-10-21T21:12:57Z | Update from Hackage at 2018-10-21T21:12:57Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
4c2bea630be001ebb0527402e6986970cb935d51 | docker/docker-compose.yml | docker/docker-compose.yml | spotscore:
image: spotscore/spotscore
ports:
- "3000:3000"
links:
- mongodb
mongodb:
image: mongo
| spotscore:
image: spotscore/spotscore
ports:
- "3000:3000"
links:
- postgresql_1
postgresql_1:
image: mdillon/postgis
| Use PostgreSQL with PostGIS instead of MongoDB | Use PostgreSQL with PostGIS instead of MongoDB
| YAML | bsd-2-clause | SpotScore/spotscore |
2879303f703c637e3b2a2f1f2eb96df51a674d2b | packages/he/hedgehog-fn.yaml | packages/he/hedgehog-fn.yaml | homepage: https://github.com/qfpl/hedgehog-fn
changelog-type: markdown
hash: 6316a86744e6730b031287a498b5089e5caab83c0a9af3c9d566696dd82642ff
test-bench-deps: {}
maintainer: Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
synopsis: Function generation for `hedgehog`
changelog: |
1.0 - 2019-05-17
* Drop sup... | homepage: https://github.com/qfpl/hedgehog-fn
changelog-type: markdown
hash: a4bc52eaba59ce23e221d77413ee6599cb82ada6600451d9bb347b8182ab82e6
test-bench-deps: {}
maintainer: Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
synopsis: Function generation for `hedgehog`
changelog: |
1.0 - 2019-05-17
* Drop sup... | Update from Hackage at 2022-02-03T12:38:21Z | Update from Hackage at 2022-02-03T12:38:21Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1234d1ce3b4df7b94e74f60d74b84871c50ecf55 | src/main/resources/paas.yaml | src/main/resources/paas.yaml | database:
driverClass: org.postgresql.Driver
url: "dummy-value"
initialSize: 1
minSize: 1
maxSize: 4
properties:
charSet: UTF-8
server:
requestLog:
appenders:
- type: access-logstash-console
registerDefaultExceptionMappers: false
register: ${REGISTER}
schema: ${REGISTER}
registerDomai... | database:
driverClass: org.postgresql.Driver
url: "dummy-value"
initialSize: 1
minSize: 1
maxSize: 4
properties:
charSet: UTF-8
server:
requestLog:
appenders:
- type: access-logstash-console
registerDefaultExceptionMappers: false
register: ${REGISTER}
schema: public
registerDomain: ${... | Use the default Postgres schema | Use the default Postgres schema
In the case of running on PaaS we only ever expect there to be one
register (for the time being and whilst we're only deploying throwaway
instances). In order to avoid the lack of `CREATE SCHEMA` permissions we
can just use the default Postgres schema.
| YAML | mit | openregister/openregister-java,openregister/openregister-java,openregister/openregister-java,openregister/openregister-java,openregister/openregister-java |
abfb5fb6a643b1c3c96f90d6b058db05b7dc950f | tasks/idp-credentials.yml | tasks/idp-credentials.yml | ---
- name: 'Restore IdP 3.x credentials'
copy:
src: 'assets/{{ inventory_hostname }}/idp/credentials/{{ item }}'
dest: '{{ shib_idp.home }}/credentials'
owner: root
group: root
mode: 0600
with_items:
- idp-backchannel.crt
- idp-backchannel.p12
- idp-encryption.crt
- idp-encryption.key
... | ---
- name: 'Restore IdP 3.x credentials'
copy:
src: 'assets/{{ inventory_hostname }}/idp/credentials/{{ item }}'
dest: '{{ shib_idp.home }}/credentials'
owner: root
group: root
mode: 0644
with_items:
- idp-backchannel.crt
- idp-backchannel.p12
- idp-encryption.crt
- idp-encryption.key
... | Update copy perms for credentials | Update copy perms for credentials
| YAML | apache-2.0 | ausaccessfed/shibboleth-idp-installer,ausaccessfed/shibboleth-idp-installer |
e958160224a1dac0071e2e9dfdc5a0c9d183215b | packages/st/strelka-wai.yaml | packages/st/strelka-wai.yaml | homepage: https://github.com/nikita-volkov/strelka-wai
changelog-type: ''
hash: 7c15a015a782a7723668e0cb46ac5af3840450c746ad67463f468505a5360f26
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: WAI compatibility layer for "strelka"
changelog: ''
basic-deps:
warp: ! '>=3.2 && <4'
byt... | homepage: https://github.com/nikita-volkov/strelka-wai
changelog-type: ''
hash: 1cb17383a3313748d52f546805644a46606d430f90d325044f6129b46c49c408
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: WAI compatibility layer for "strelka"
changelog: ''
basic-deps:
warp: ! '>=3.2 && <4'
byt... | Update from Hackage at 2016-12-09T12:59:33Z | Update from Hackage at 2016-12-09T12:59:33Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3b8a59d4bcfafd2ae65f44f75aa82208cd2dba8a | roles/mesos-master/vars/main.yml | roles/mesos-master/vars/main.yml | ---
# vars file for master
quorum: "{{ 2 if ec2_tag_environment == 'production' else 1 }}"
task_launch_timeout: 300000
gopath: '/usr/share/go'
marathon_event_subscriber: 'http_callback'
| ---
# vars file for master
quorum: "{{ 2 if ec2_tag_env == 'production' else 1 }}"
task_launch_timeout: 300000
gopath: '/usr/share/go'
marathon_event_subscriber: 'http_callback'
| Use correct var for AWS env tag | Use correct var for AWS env tag
| YAML | mpl-2.0 | flamingspaz/partinfra-playbooks,mozilla/partinfra-playbooks |
a650b7d4b5842fbf1bbd2055e10bbe90d5e78f19 | roles/swift-common/meta/main.yml | roles/swift-common/meta/main.yml | ---
dependencies:
- role: endpoints
- role: monitoring-common
- role: logging-config
service: swift
logdata: "{{ swift.logs }}"
- role: openstack-source
project_name: swift
system_dependencies: "{{ swift.source.system_dependencies }}"
python_dependencies: "{{ swift.source.python_dependencie... | ---
dependencies:
- role: endpoints
- role: monitoring-common
- role: logging-config
service: swift
logdata: "{{ swift.logs }}"
- role: openstack-source
project_name: swift
python_dependencies: "{{ swift.source.python_dependencies }}"
project_rev: "{{ swift.source.rev }}"
alternatives: ... | Remove system dependency variable so it gets set correctly to the empty set | Remove system dependency variable so it gets set correctly to the empty set
| YAML | mit | davidcusatis/ursula,masteinhauser/ursula,fancyhe/ursula,pgraziano/ursula,lihkin213/ursula,channus/ursula,twaldrop/ursula,persistent-ursula/ursula,msambol/ursula,twaldrop/ursula,twaldrop/ursula,knandya/ursula,channus/ursula,masteinhauser/ursula,nirajdp76/ursula,davidcusatis/ursula,greghaynes/ursula,pgraziano/ursula,rysh... |
ed4da5e8a51b75282f09c5c665b91a49ab5e7d74 | packages/te/text-region.yaml | packages/te/text-region.yaml | homepage: https://github.com/mvoidex/text-region
changelog-type: ''
hash: edfa9ebd6f3eb9b31590166bb27c1f2a74068bf77482ec2f16c16a18c1b9b1a1
test-bench-deps:
base-unicode-symbols: ! '>=0.2'
base: ! '>=4.8 && <5'
hspec: -any
text: ! '>=1.2.1'
text-region: -any
lens: ! '>=4.12'
maintainer: voidex@live.com
synop... | homepage: https://github.com/mvoidex/text-region
changelog-type: ''
hash: 57cf622ada2e10686362ea2372afeef5030e18a5115b46e92ed11eb6362a49ee
test-bench-deps:
base-unicode-symbols: ! '>=0.2'
base: ! '>=4.8 && <5'
hspec: -any
text: ! '>=1.2.1'
text-region: -any
lens: ! '>=4.12'
maintainer: voidex@live.com
synop... | Update from Hackage at 2017-04-26T01:27:44Z | Update from Hackage at 2017-04-26T01:27:44Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
875c8bd0d8520c4bf5f00d2f37ef823b73633a57 | update_idb_irq_bardarash.yml | update_idb_irq_bardarash.yml | ---
# Ansible playbook for IdeasBox Kurdistan Bardarash
#It will be always localhost
- hosts: localhost
roles:
# Start. has to be always enable
- logs
# Stop. has to be always enable
# - software
# - tinc-static
# - role: ideascube
# - role: kalite
# version: "0.15.0"
# la... | ---
# Ansible playbook for IdeasBox Kurdistan Bardarash
#It will be always localhost
- hosts: localhost
roles:
# Start. has to be always enable
- logs
# Stop. has to be always enable
# - tinc-static
# - role: ideascube
# - role: kalite
# version: "0.15.0"
# lang: "['en','ar','d... | Add all en/ar ZIMs to idb_irq_bardarash. | Add all en/ar ZIMs to idb_irq_bardarash.
| YAML | mit | ideascube/ansiblecube,ideascube/ansiblecube |
2b1052a59ca3bc5941bd399a20c6d12bfa4ca696 | config-management/roles/harrow.lxd-host/tasks/tools.yml | config-management/roles/harrow.lxd-host/tasks/tools.yml | ---
- apt:
name: "{{ item }}"
update_cache: true
with_items:
- python3-requests
- python3-dateutil
- name: copy lxd-kill-old script
template:
src: usr/local/bin/lxd-kill-old.py.j2
dest: /usr/local/bin/lxd-kill-old
owner: root
group: root
mode: 0700
tags:
- lxd
- name: cop... | ---
- apt:
name: "{{ item }}"
update_cache: true
with_items:
- python3-requests
- python3-dateutil
- name: copy lxd-kill-old script
template:
src: usr/local/bin/lxd-kill-old.py.j2
dest: /usr/local/bin/lxd-kill-old
owner: root
group: root
mode: 0700
tags:
- lxd
- name: cop... | Fix spacing and indentation in task name | Fix spacing and indentation in task name
| YAML | agpl-3.0 | harrowio/harrow,harrowio/harrow,harrowio/harrow,harrowio/harrow,harrowio/harrow,harrowio/harrow |
5f693e9933ee33a39c5add7311cb5ec4efbd7fee | core/config/mongoid.yml | core/config/mongoid.yml | development:
sessions:
default:
database: factlink_ui_development
hosts:
- localhost:27017
options:
raise_not_found_error: false
test:
sessions:
default:
database: factlink_ui_test
hosts:
- localhost:27017
options:
consistency: :strong
# In... | development:
sessions:
default:
database: factlink_ui_development
hosts:
- localhost:27017
options:
raise_not_found_error: false
test:
sessions:
default:
database: factlink_ui_test
hosts:
- localhost:27017
options:
consistency: :strong
# In... | Update mongo configuration for testserver replicatset | Update mongo configuration for testserver replicatset
| YAML | mit | daukantas/factlink-core,Factlink/factlink-core,daukantas/factlink-core,Factlink/factlink-core,Factlink/factlink-core,Factlink/factlink-core,daukantas/factlink-core,daukantas/factlink-core |
a5fbd9882db40e7c3756a26f165fc0094b4e541f | recipes/conda-build-all/meta.yaml | recipes/conda-build-all/meta.yaml | {% set version = "1.0.1" %}
package:
name: conda-build-all
version: {{ version }}
source:
fn: conda-build-all_v{{ version }}.tar.gz
url: https://github.com/SciTools/conda-build-all/archive/v{{version}}.tar.gz
sha256: 1e34102f9055ce99500ce8ec87933d46a482cd20b865a180f2b064b4baf345f0
build:
number: 0
... | {% set version = "1.0.4" %}
package:
name: conda-build-all
version: {{ version }}
source:
fn: conda-build-all_v{{ version }}.tar.gz
url: https://github.com/conda-tools/conda-build-all/archive/v{{version}}.tar.gz
sha256: 1a2e6b89858e8a5c6c55dd0fe64e18f7730a203740507f7746149771e22d8784
build:
number:... | Update conda-build-all recipe to version 1.0.4 | Update conda-build-all recipe to version 1.0.4
Change to noarch: python package
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
e154b2ac6792d6e08cdc982548fbaa1f964829d3 | Scripts/script-SetIncidentCustomFields.yml | Scripts/script-SetIncidentCustomFields.yml | commonfields:
id: SetIncidentCustomFields
version: -1
name: SetIncidentCustomFields
script: |-
var fields = argToList(args.fields);
var values = argToList(args.values);
var o = {};
for (var i=0; i<fields.length && i<values.length; i++) {
o[fields[i]] = values[i];
}
return executeCommand('setInci... | commonfields:
id: SetIncidentCustomFields
version: -1
name: SetIncidentCustomFields
script: |-
var fields = argToList(args.fields);
var values = argToList(args.values);
var o = {};
for (var i=0; i<fields.length && i<values.length; i++) {
o[fields[i]] = values[i];
}
return executeCommand('setInci... | Add blank releaseNotes to satisfy circleci build requirements | Add blank releaseNotes to satisfy circleci build requirements
| YAML | mit | VirusTotal/content,demisto/content,VirusTotal/content,VirusTotal/content,demisto/content,VirusTotal/content,demisto/content,demisto/content |
6261c078f1b70798166afa6960e24a2669f5dcc0 | config/search.yml | config/search.yml | site_name: Mapzen Search
docs_dir: src/search
site_dir: dist/search
pages:
- Home: index.md
- 'Get started': 'get-started.md'
- 'Add search to a map': 'add-search-to-a-map.md'
- 'API keys and rate limits': 'api-keys-rate-limits.md'
- 'Search': 'search.md'
- 'Reverse geocoding': 'reverse.md'
- 'Autocomple... | site_name: Mapzen Search
docs_dir: src/search
site_dir: dist/search
pages:
- Home: index.md
- 'Get started': 'get-started.md'
- 'Add search to a map': 'add-search-to-a-map.md'
- 'API keys and rate limits': 'api-keys-rate-limits.md'
- 'Search': 'search.md'
- 'Reverse geocoding': 'reverse.md'
- 'Autocomple... | Update to URL to master branch | Update to URL to master branch | YAML | mit | mapzen/documentation,mapzen/documentation,mapzen/mapzen-docs-generator,mapzen/mapzen-docs-generator,mapzen/mapzen-docs-generator,mapzen/documentation,mapzen/documentation,mapzen/mapzen-docs-generator |
019ae0adf6f0126a4fa5a408cc5ab130dc96e4a1 | .forestry/front_matter/templates/the-data-visualisation-catalogue.yml | .forestry/front_matter/templates/the-data-visualisation-catalogue.yml | ---
label: Default
hide_body: false
is_partial: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: single
config:
required: true
- name: title
label: Title
type: text
hidden: false
default: ''
config:
required: true
- name: date
label: Date
type: datetime
hidd... | ---
label: The Data Visualisation Catalogue
hide_body:
is_partial:
fields:
- name: layout
label: Layout
type: text
hidden: false
default: ''
- name: title
label: Title
type: text
hidden: false
default: ''
- name: date
label: Date
type: datetime
hidden: false
default: ''
- name: modified
labe... | Revert "Update from Forestry.io - Updated Forestry configuration" | Revert "Update from Forestry.io - Updated Forestry configuration"
This reverts commit f822b9e8c746d5c560e3f60d9e9d34430b67fb8a.
| YAML | mit | proinsias/proinsias.github.io,proinsias/proinsias.github.io,proinsias/proinsias.github.io,proinsias/proinsias.github.io |
c723d622ddd4e9147c66c1ac630464561d28acf0 | metadata/app.olauncher.yml | metadata/app.olauncher.yml | Categories:
- Theming
License: GPL-3.0-only
AuthorName: Tanuj M.
AuthorEmail: tanuj@frndly.app
WebSite: https://olauncher.app
SourceCode: https://github.com/tanujnotes/Olauncher
IssueTracker: https://github.com/tanujnotes/Olauncher/issues
Donate: https://www.buymeacoffee.com/tanujnotes
AutoName: Olauncher
Summary: M... | Categories:
- Theming
License: GPL-3.0-only
AuthorName: Tanuj M.
AuthorEmail: tanuj@frndly.app
WebSite: https://olauncher.app
SourceCode: https://github.com/tanujnotes/Olauncher
IssueTracker: https://github.com/tanujnotes/Olauncher/issues
Donate: https://www.buymeacoffee.com/tanujnotes
AutoName: Olauncher
Summary: M... | Update Olauncher to v1.2 (12) | Update Olauncher to v1.2 (12)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
279d6091296385398d226e64ac6376e0205b87bb | environment.yaml | environment.yaml | # Conda environment file for YATSM
# Includes optional dependencies since conda makes installing them pretty easy
name: yatsm
channels:
- r
- conda-forge
dependencies:
# Base
- python
- numpy>=1.9.0
- scipy>=0.14.0
- Cython>=0.20.1
# Statistics
- statsmodels>=0.5.0
- scikit-learn... | # Conda environment file for YATSM
# Includes optional dependencies since conda makes installing them pretty easy
name: yatsm
channels:
- r
- conda-forge
dependencies:
# Base
- python
- numpy>=1.9.0
- scipy>=0.14.0
- Cython>=0.20.1
# Statistics
- statsmodels>=0.5.0
- scikit-learn... | Fix rasterio pinning for v1 alpha | Fix rasterio pinning for v1 alpha
| YAML | mit | c11/yatsm,c11/yatsm |
578d6874bb44c318acca88b22f507bfbb477dd02 | .codeclimate.yml | .codeclimate.yml | version: "2"
# Checks are enabled by default, uncomment lines to disable check.
# checks:
# argument-count:
# enabled: false
# complex-logic:
# enabled: false
# file-lines:
# enabled: false
# method-complexity:
# enabled: false
# method-count:
# enabled: false
# method-lines:
# enabl... | version: "2"
# Checks are enabled by default, uncomment lines to disable check.
# checks:
# argument-count:
# enabled: false
# complex-logic:
# enabled: false
# file-lines:
# enabled: false
# method-complexity:
# enabled: false
# method-count:
# enabled: false
# method-lines:
# enabl... | Update to rubocop channel 67 | Update to rubocop channel 67
| YAML | mit | nsrr/www.sleepdata.org,nsrr/www.sleepdata.org,nsrr/www.sleepdata.org |
6c978d4694e9f33f9620c5f784b3b10a61b12dba | .codeclimate.yml | .codeclimate.yml | ---
engines:
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- "**.css"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
- "**.php"
- "**.py"
- "**.rb"
exclude_paths:
- con... | ---
engines:
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
eslint:
enabled: true
fixme:
enabled: true
gofmt:
enabled: true
golint:
enabled: true
govet:
enabled: true
markdownlint:
enabled: true
ratings:
paths:
- "**.... | Make Code Climate a bit more useful | Make Code Climate a bit more useful
| YAML | bsd-3-clause | usi-lfkeitel/packet-guardian,packet-guardian/packet-guardian,usi-lfkeitel/packet-guardian,packet-guardian/packet-guardian,packet-guardian/packet-guardian,packet-guardian/packet-guardian,usi-lfkeitel/packet-guardian,packet-guardian/packet-guardian |
a97aaeb3662a398df2f2057b5376c82889431032 | .codeclimate.yml | .codeclimate.yml | languages:
Ruby: true
JavaScript: true
PHP: true
Python: true
exclude_paths:
- "**.min.js"
| languages:
Ruby: true
JavaScript: true
PHP: true
Python: true
exclude_paths:
- "**min.js"
| Expand excluded minified JS files | Expand excluded minified JS files
| YAML | mit | Dallinger/Dallinger,suchow/Wallace,jcpeterson/Dallinger,Dallinger/Dallinger,berkeley-cocosci/Wallace,berkeley-cocosci/Wallace,suchow/Wallace,suchow/Wallace,jcpeterson/Dallinger,berkeley-cocosci/Wallace,Dallinger/Dallinger,Dallinger/Dallinger,jcpeterson/Dallinger,jcpeterson/Dallinger,Dallinger/Dallinger,jcpeterson/Dalli... |
639a02ff4d46b6641c66791c1e0e896c646b040f | .codeclimate.yml | .codeclimate.yml | {
"engines": {
"csslint": {
"enabled": true
},
"fixme": {
"enabled": true
},
"duplication": {
"enabled": true,
"config": {
"languages": [
"javascript"
]
}
}... | {
"engines": {
"csslint": {
"enabled": true
},
"fixme": {
"enabled": true
},
"duplication": {
"enabled": true,
"config": {
"languages": [
"javascript"
]
},
... | Exclude tests from Code Climate duplication analysis | Exclude tests from Code Climate duplication analysis
| YAML | mit | EvgenyOrekhov/functrace |
cd9c39d1a595ffd7933bb2b1317374f942db3ccb | roles/openstack-source/defaults/main.yml | roles/openstack-source/defaults/main.yml | ---
openstack_source:
git_mirror: 'https://github.com/openstack'
pypi_mirror: 'https://pypi.python.org/simple/'
project_rev: "{{ project_rev|default('master') }}"
git_update: no
rootwrap: "{{ rootwrap|default(False)|bool }}"
| ---
openstack_source:
git_mirror: 'https://github.com/openstack'
pypi_mirror: 'https://pypi.python.org/simple/'
project_rev: "{{ project_rev|default('master') }}"
git_update: no
rootwrap: "{{ rootwrap|default(False)|bool }}"
virtualenv: "{{ virtualenv|default(False)|bool }}"
| Add openstack-source tasks and defaults | Add openstack-source tasks and defaults
Apparently adding the openstack-source defaults and tasks was missed
in my previous commit. Add them here.
| YAML | mit | rongzhus/ursula,aldevigi/ursula,mjbrewer/ursula,persistent-ursula/ursula,jwaibel/ursula,EricCrosson/ursula,ddaskal/ursula,fancyhe/ursula,edtubillara/ursula,kennjason/ursula,blueboxgroup/ursula,rongzhus/ursula,edtubillara/ursula,pbannister/ursula,mjbrewer/ursula,greghaynes/ursula,jwaibel/ursula,zrs233/ursula,edtubillara... |
c8bbdc1102f46d16b7a1261f10429082577e549f | .github/workflows/codecov.yml | .github/workflows/codecov.yml | name: CodeCov
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: '3.7'
services:
postgres:
image: postgres:10.8
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: djangogirls
... | name: CodeCov
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: '3.7'
services:
postgres:
image: postgres:10.8
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: djangogirls
... | Add postgres password to env | Add postgres password to env
| YAML | bsd-3-clause | DjangoGirls/djangogirls,DjangoGirls/djangogirls,DjangoGirls/djangogirls |
2b39b23ab46696ead67fb33cf0bd254edf0164bd | Resources/config/services.yml | Resources/config/services.yml | services:
# Service definition factory for instantiating service
# definition instances for collections
video_collections.service_definition_factory:
class: VideoCollectionBundle\Factory\ServiceDefinitionFactory
arguments:
- '@service_container'
- 'video_collections'
| services:
# Service definition factory for instantiating service
# definition instances for collections
video_collections.service_definition_factory:
class: MovingImage\Bundle\VideoCollection\Factory\ServiceDefinitionFactory
arguments:
- '@service_container'
- 'video_... | Update the namespace in the service configuration | Update the namespace in the service configuration
| YAML | bsd-3-clause | MovingImage24/VideoCollectionBundle |
962982865281b49833485e3516af6110e308327f | ansible/roles/repos/tasks/setup-CentOS.yml | ansible/roles/repos/tasks/setup-CentOS.yml | ---
- name: Check if EPEL repo is already configured
stat:
path: "{{ epel_repofile_path }}"
register: epel_repofile_result
- name: Install EPEL repo
yum:
name: "{{ epel_repo_url }}"
state: present
register: result
until: '"failed" not in result'
retries: 5
delay: 10
when: not epel_repofile_... | ---
- name: Check if EPEL repo is already configured
stat:
path: "{{ epel_repofile_path }}"
register: epel_repofile_result
- name: Install EPEL repo
yum:
name: "{{ epel_repo_url }}"
state: present
register: result
until: '"failed" not in result'
retries: 5
delay: 10
when: not epel_repofile_... | Revert to default mirrors for CentOS | Revert to default mirrors for CentOS
The method we used for setting the mirror doesn't work right
any more. Let yum work out the fastest, which will likely by
aarnet anyway
Change-Id: If5048ccefdf8cd529e56126589c2d9916b0fe8b4
| YAML | apache-2.0 | NeCTAR-RC/nectar-images,NeCTAR-RC/nectar-images |
0fab43ca6d2141755a1d11348e54d0b16918af20 | roles/cassandra/vars/main.yml | roles/cassandra/vars/main.yml | dsc_version: 2.1.9-1
cassandra_version: 2.1.9
cassandra_tools_version: 2.1.9
dse_version: 4.7.0-1
tablesnap_version: debian/0.7.1-3
| dsc_version: 2.1.11-1
cassandra_version: 2.1.11
cassandra_tools_version: 2.1.11
dse_version: 4.7.0-1
tablesnap_version: debian/0.7.1-3
| Upgrade Cassandra version 2.1.9 -> 2.1.11 | Upgrade Cassandra version 2.1.9 -> 2.1.11
| YAML | bsd-3-clause | lekane/ansible-cassandra |
49f7ce38444f4976462e827ea9ce28f0a925eeed | roles/hackpitt/tasks/main.yml | roles/hackpitt/tasks/main.yml | ---
- name: Create hackpitt user group
action: group name=hackpitt state=present
- name: Create site directory
action: file path=/u/sites/hackpitt state=directory group=hackpitt
- name: Configure nginx site
action: copy src=hackpitt.pittcsc.org dest=/etc/nginx/sites-enabled/hackpitt.pittcsc.org
notify: Restar... | ---
- name: Create hackpitt user group
action: group name=hackpitt state=present
- name: Create site directory
action: file path=/u/sites/hackpitt state=directory group=hackpitt
- name: Check out site repository
action: git repo=https://github.com/Pitt-CSC/hackpitt.pittcsc.org.git dest=/u/sites/hackpitt update=... | Check out hackpitt site repository | Check out hackpitt site repository
| YAML | mit | Pitt-CSC/ansible,RitwikGupta/ansible,RitwikGupta/ansible,Pitt-CSC/ansible,RitwikGupta/ansible,Pitt-CSC/ansible |
db45eaca75e90cb698d687c446d7a6ebf0404b44 | recipes/sphinx_gmt/meta.yaml | recipes/sphinx_gmt/meta.yaml | {% set name = "sphinx_gmt" %}
{% set version = "0.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256:
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
sk... | {% set name = "sphinx_gmt" %}
{% set version = "0.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 99889d655237928bf6c3d4d1b7abef2e8252342a0cf203f2f88eccef2db13a62
build:
noarch: pyth... | Add hash of the pypi tarball | Add hash of the pypi tarball
| YAML | bsd-3-clause | jochym/staged-recipes,mariusvniekerk/staged-recipes,chrisburr/staged-recipes,igortg/staged-recipes,patricksnape/staged-recipes,jakirkham/staged-recipes,isuruf/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,dschreij/staged-recipes,Juanlu001/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-reci... |
5643132f31a49136c7c14862b48fb1210454be9f | roles/taiga/handlers/main.yml | roles/taiga/handlers/main.yml | ---
- name: restart circus
become: true
become_user: root
service:
name: circusd
state: restarted
- name: restart systemd
become: true
become_user: root
command: systemctl daemon-reload
| ---
- name: restart circus
become: true
become_user: root
service:
name: circusd
state: restarted
- name: reload systemd daemon
become: true
become_user: root
systemd:
daemon_reload: true
| Use systemd module, not command, to reload systemd | Use systemd module, not command, to reload systemd
We require Ansible 2.4 and later, which means we can use the
systemd module to just reload the daemon.
Reference:
https://docs.ansible.com/ansible/2.5/modules/systemd_module.html#notes
| YAML | agpl-3.0 | fghaas/taiga-ansible |
d1a1780192c02a6681561df717f8bbd103d94454 | layers/b2qt/recipes-qt/automotive/qtapplicationmanager/sc-config.yaml | layers/b2qt/recipes-qt/automotive/qtapplicationmanager/sc-config.yaml | #
# Copyright Pelagicore 2017
#
formatVersion: 1
formatType: am-configuration
---
containers:
selection:
- com.pelagicore.radio: "softwarecontainer"
- "*": "process"
softwarecontainer:
dbus: system
plugins:
container: [ "/usr/lib/libsoftwarecontainer-plugin.so" ]
| #
# Copyright Pelagicore 2017
#
formatVersion: 1
formatType: am-configuration
---
containers:
selection:
- com.pelagicore.calendar: "softwarecontainer"
- "*": "process"
softwarecontainer:
dbus: system
plugins:
container: [ "/usr/lib/libsoftwarecontainer-plugin.so" ]
| Enable calendar app to run in container | Enable calendar app to run in container
Signed-off-by: Tariq Ansari <dad672abc2e4079f76b3a3bd368bb45008914527@luxoft.com>
| YAML | mit | Pelagicore/meta-pelux,Pelagicore/meta-pelux,Pelagicore/meta-pelux |
c5cce358d0d939eef042a7d8f7011869f1020bed | deploy/kube-config.yaml | deploy/kube-config.yaml | ---
apiVersion: "v1"
kind: "ReplicationController"
metadata:
labels:
name: "kubedash"
name: "kubedash"
namespace: "kube-system"
spec:
replicas: 1
selector:
name: "kubedash"
template:
metadata:
labels:
name: "kubedash"
spec:
contai... | ---
apiVersion: "v1"
kind: "ReplicationController"
metadata:
labels:
name: "kubedash"
name: "kubedash"
namespace: "kube-system"
spec:
replicas: 1
selector:
name: "kubedash"
template:
metadata:
labels:
name: "kubedash"
spec:
contai... | Fix typos in the deploy yaml script which prevent deployment. | Fix typos in the deploy yaml script which prevent deployment.
| YAML | apache-2.0 | jkurz/kubedash,jkurz/kubedash,jkurz/kubedash,jkurz/kubedash |
0fee721ce8790b0ac17ba2480c8f7b8e70886788 | schemas/dialogue-revision.yml | schemas/dialogue-revision.yml | required:
- patch
properties:
id:
type: string
readOnly: true
description: |
The revisions's identifier (generated by the API)
user_id:
type: string
readOnly: true
description: |
The identifier for the user who created this revision.
created:
type: number
readOnly:... | required:
- patch
properties:
id:
type: string
readOnly: true
description: |
The revisions's identifier (generated by the API)
url:
type: string
readOnly: true
description: |
API url for accessing the revision description.
user_id:
type: string
readOnly: true
d... | Include url in revision schema | Include url in revision schema
| YAML | bsd-3-clause | praekelt/numi-api |
66d86e59cefb3d743edce5206132c23aa80bee02 | .github/workflows/build.yml | .github/workflows/build.yml | name: Build & Deploy Docs
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
cache: 'npm'
- name: Install dependencies
run: npm... | name: Build & Deploy Docs
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
cache: 'npm'
- name: Install dependencies
run: npm... | Build goes to docs/ folder in gh-pages | Build goes to docs/ folder in gh-pages
| YAML | mit | Comcast/Surf-N-Perf,Comcast/Surf-N-Perf,Comcast/Surf-N-Perf |
47080f8aab8b9d26fd4bec1e012ce234fffc5c26 | .github/workflows/maven.yml | .github/workflows/maven.yml | name: GitHub CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
strategy:
matrix:
java: [ 8, 11.0.x ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
... | name: GitHub CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
strategy:
matrix:
java: [ 11, 17, 18 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1... | Remove JDK 8 from the build | Remove JDK 8 from the build | YAML | epl-1.0 | forge/core,forge/core,forge/core,forge/core,forge/core,forge/core,forge/core,forge/core,forge/core,forge/core |
b7fdf16399972fd78f3ee092763fac63ed21305e | .github/workflows/maven.yml | .github/workflows/maven.yml | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Build master with Maven
on:
push:
branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on:... | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Build master with Maven
on:
push:
branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on:... | Add coveralls github build action | Add coveralls github build action | YAML | apache-2.0 | danielwegener/logback-kafka-appender |
a16bb39ff49e4b3bc818ccee9210b658e5902e0c | .github/workflows/tests.yml | .github/workflows/tests.yml | name: Automated tests
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
container: node:16
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
| name: Automated tests
on: [push, pull_request]
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
container: node:16
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Run tests
... | Set permissions for GitHub actions | chore: Set permissions for GitHub actions
Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much.
- Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token... | YAML | mit | cytoscape/cytoscape.js,cytoscape/cytoscape.js |
a919852fc8134472035791bf582d7ca592da2142 | packages/at/ats-setup.yaml | packages/at/ats-setup.yaml | homepage: ''
changelog-type: ''
hash: 983b6db957f06422d671b456112798d69f8e53b2e91cebd650d5bc7a6b71de7d
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: ATS scripts for Cabal builds
changelog: ''
basic-deps:
http-client: -any
Cabal: ! '>=2.0'
base: ! '>=4.8 && <5'
tar: -any
http-client-tls: -any
... | homepage: ''
changelog-type: ''
hash: 2421e0a60c5bd4ba7300539443bbab10d0b8ab9fd465c255bf2ccadb6317f72b
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: ATS scripts for Cabal builds
changelog: ''
basic-deps:
http-client: -any
Cabal: ! '>=2.0'
base: ! '>=4.8 && <5'
tar: -any
http-client-tls: -any
... | Update from Hackage at 2018-02-01T07:57:52Z | Update from Hackage at 2018-02-01T07:57:52Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
6ccf43605c4d1cadf1fb40a42a5628b766c92a7f | announce/2020/mfsa2020-49.yml | announce/2020/mfsa2020-49.yml | ## mfsa2020-49.yml
announced: November 9, 2020
impact: critical
fixed_in:
- Firefox 82.0.3
- Firefox ESR 78.4.1
title: Security Vulnerabilities fixed in Firefox 82.0.3 and Firefox ESR 78.4.1
advisories:
CVE-2020-26950:
title: Write side effects in MCallGetProperty opcode not accounted for
impact: critical
... | ## mfsa2020-49.yml
announced: November 9, 2020
impact: critical
fixed_in:
- Firefox 82.0.3
- Firefox ESR 78.4.1
- Thunderbird 78.4.2
title: Security Vulnerabilities fixed in Firefox 82.0.3, Firefox ESR 78.4.1, and Thunderbird 78.4.2
advisories:
CVE-2020-26950:
title: Write side effects in MCallGetProperty opcode ... | Add Thunderbird to the list | Add Thunderbird to the list
| YAML | mpl-2.0 | mozilla/foundation-security-advisories,mozilla/foundation-security-advisories |
40d07ca22f61878eb80c48e600ce479bfd37eb47 | tasks/build-binary-new/php74-extensions-patch.yml | tasks/build-binary-new/php74-extensions-patch.yml | ---
extensions:
exclusions:
- name: sodium
- name: libz
- name: yaf
- name: amqp
- name: cassandra
| ---
extensions:
exclusions:
- name: sodium
- name: libz
- name: yaf
- name: amqp
- name: cassandra
- name: interbase
- name: recode
- name: wddx
| Exclude unbundled extensions from php 7.4 build | Exclude unbundled extensions from php 7.4 build
[#170014486]
| YAML | apache-2.0 | cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci |
bcf8ca30d4efce9206489db92674c6b5e6ed0417 | metadata/io.timelimit.android.aosp.direct.yml | metadata/io.timelimit.android.aosp.direct.yml | Categories:
- System
- Time
License: GPL-3.0-only
SourceCode: https://codeberg.org/timelimit/timelimit-android
IssueTracker: https://codeberg.org/timelimit/timelimit-android/issues
AutoName: TimeLimit
RepoType: git
Repo: https://codeberg.org/timelimit/timelimit-android.git
Builds:
- versionName: 2.7.5
vers... | Categories:
- System
- Time
License: GPL-3.0-only
SourceCode: https://codeberg.org/timelimit/timelimit-android
IssueTracker: https://codeberg.org/timelimit/timelimit-android/issues
AutoName: TimeLimit
RepoType: git
Repo: https://codeberg.org/timelimit/timelimit-android.git
Builds:
- versionName: 2.7.5
vers... | Update TimeLimit to 3.7.1 (99) | Update TimeLimit to 3.7.1 (99)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
d1e774b9d921c92f9d5eeeafbe3724238bf7ff73 | metadata/dk.meznik.jan.encrypttext.yml | metadata/dk.meznik.jan.encrypttext.yml | Categories:
- Security
License: MIT
SourceCode: https://github.com/JanmanX/EncryptTextApp
IssueTracker: https://github.com/JanmanX/EncryptTextApp/issues
AutoName: Encrypt Text
Description: |-
A simple application to encrypt text. Can be used in combination with many other
applications, to increase security a... | Categories:
- Security
License: MIT
SourceCode: https://github.com/JanmanX/EncryptTextApp
IssueTracker: https://github.com/JanmanX/EncryptTextApp/issues
AutoName: Encrypt Text
Description: |-
A simple application to encrypt text. Can be used in combination with many other
applications, to increase security a... | Encrypt Text: remove 1.2.1 (3) | Encrypt Text: remove 1.2.1 (3)
Outdated, failing build.
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
63caa3b06772244ca925c0f1c172bd7e9332617b | packages/la/lazy-hash.yaml | packages/la/lazy-hash.yaml | homepage: ''
changelog-type: ''
hash: a362397e6b2094047e696bb63a2f5160f5d5233bda7ac620233ed1d6165d8648
test-bench-deps: {}
maintainer: (@) jsag $ hvl.no
synopsis: Identifiers for not-yet-computed values
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.11'
vector-space: ! '>=0.9 && <0.18'
tagged: -any
hashable: ! ... | homepage: ''
changelog-type: ''
hash: 1c937c16018eaf3d215a560ab744f2c1055e065cfa61058f684cb0a8a1426450
test-bench-deps: {}
maintainer: (@) jsag $ hvl.no
synopsis: Identifiers for not-yet-computed values
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.13'
vector-space: ! '>=0.9 && <0.18'
tagged: -any
hashable: ! ... | Update from Hackage at 2019-09-18T13:26:53Z | Update from Hackage at 2019-09-18T13:26:53Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
fe79bb65cf491108a6622c0b7f35c98c8ba904c4 | stub/locales/rps/test-rp.yml | stub/locales/rps/test-rp.yml | en:
rps:
test-rp:
name: Register for an identity profile
analytics_description: analytics description for test-rp
other_ways_text: If you can't verify your identity using GOV.UK Verify, you can register for an identity profile <a href='http://www.example.com'>here</a>.
other_ways_descripti... | en:
rps:
test-rp:
name: Register for an identity profile
analytics_description: analytics description for test-rp
other_ways_text: |
<p>If you can't verify your identity using GOV.UK Verify, you can register for an identity profile <a href="http://www.example.com">here</a>.</p>
<... | Make other ways text more realistic | 3532: Make other ways text more realistic
@oswaldquek @richardtowers
| YAML | mit | alphagov/verify-frontend,alphagov/verify-frontend,alphagov/verify-frontend,alphagov/verify-frontend |
8eb39ad9ae82295188fb2adbce98b34272f4c867 | hiera/data/single-box.yaml | hiera/data/single-box.yaml | ---
matterhorn::config::http_port: '18080'
tomcat::install::http_port: '8983'
fcrepo::config::user: 'tomcat7'
fcrepo::config::server_host: 'localhost'
fcrepo::config::version: '3.6.1'
avalon::config::ruby_version: 'ruby-2.2.5'
avalon::config::source_branch: 'develop'
classes:
- avalon::config
- avalon::mysql
- my... | ---
matterhorn::config::http_port: '18080'
tomcat::install::http_port: '8983'
fcrepo::config::user: 'tomcat7'
fcrepo::config::server_host: 'localhost'
fcrepo::config::version: '3.6.1'
avalon::config::ruby_version: 'ruby-2.2.5'
classes:
- avalon::config
- avalon::mysql
- mysql::server
- tomcat::install
- tomca... | Reset avalon source branch to master in prep for release | Reset avalon source branch to master in prep for release
| YAML | apache-2.0 | avalonmediasystem/avalon-installer,avalonmediasystem/avalon-installer,avalonmediasystem/avalon-installer |
4332afd9ea91122f91e32b37c36e1202d760223f | packages/sh/shake-elm.yaml | packages/sh/shake-elm.yaml | homepage: ''
changelog-type: ''
hash: 4680b9f70212f471beb118cb627a196fc2e5bf28fcdc2b84c817041a4c2372a9
test-bench-deps: {}
maintainer: vanessa.mchale@iohk.io
synopsis: Elm builds in shake
changelog: ''
basic-deps:
shake: ! '>=0.14'
base: ! '>=4.3 && <5'
all-versions:
- '0.1.0.0'
author: Vanessa McHale
latest: '0.1.... | homepage: ''
changelog-type: ''
hash: 7d569402808f86c14c45e0f2f07fc9184320f4ebd9d3989fae77c1bca11ce71a
test-bench-deps: {}
maintainer: vanessa.mchale@iohk.io
synopsis: Elm builds in shake
changelog: ''
basic-deps:
shake: ! '>=0.14'
base: ! '>=4.3 && <5'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Vanessa McHale
l... | Update from Hackage at 2018-08-21T16:47:52Z | Update from Hackage at 2018-08-21T16:47:52Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a4a7c6488f79bba6c2c556ab6dbfee4f7e242655 | .pyup.yml | .pyup.yml | # Specify requirement files by hand
requirements:
- requirements.txt
- {{cookiecutter.project_slug}}/requirements/base.txt
- {{cookiecutter.project_slug}}/requirements/local.txt
- {{cookiecutter.project_slug}}/requirements/production.txt
| # Specify requirement files by hand
requirements:
- requirements.txt:
# update all dependencies and pin them
update: all
pin: True
- {{cookiecutter.project_slug}}/requirements/base.txt:
# update all dependencies and pin them
update: all
pin: True
- {{cookiecutter.project_slug}}... | Fix syntax in PyUP config file | Fix syntax in PyUP config file | YAML | bsd-3-clause | trungdong/cookiecutter-django,trungdong/cookiecutter-django,luzfcb/cookiecutter-django,ryankanno/cookiecutter-django,pydanny/cookiecutter-django,ad-m/cookiecutter-django,Parbhat/cookiecutter-django-foundation,ad-m/cookiecutter-django,trungdong/cookiecutter-django,pydanny/cookiecutter-django,ad-m/cookiecutter-django,Par... |
6df0410d9e7eaa1ed66b24f05fc6faaa667f7527 | .sync.yml | .sync.yml | spec/spec_helper_acceptance.rb:
modules:
- name: maestrodev-maven
version: 1.0.0
- name: puppetlabs-java
version: 1.0.1
spec/spec_helper.rb:
default_facts:
http_proxy:
maven_version: '3.0.5'
.travis.yml:
forge:
password: "Otm0EXhVvdcqG80+M7bQy6gy+xv/x2hJuQm1PyscRAX7zSnHNDgv85DniqGP... | spec/spec_helper_acceptance.rb:
modules:
- name: maestrodev-maven
version: 1.0.0
- name: puppetlabs-java
version: 1.0.1
spec/spec_helper.rb:
default_facts:
http_proxy:
maven_version: '3.0.5'
.travis.yml:
forge_password: "Otm0EXhVvdcqG80+M7bQy6gy+xv/x2hJuQm1PyscRAX7zSnHNDgv85DniqGPxnJlL... | Set the forge password correctly | Set the forge password correctly
| YAML | apache-2.0 | PierreR/puppet-sonarqube,velocity303/puppet-sonarqube,vladistan/puppet-sonarqube,nick040/puppet-sonarqube,velocity303/puppet-sonarqube,maestrodev/puppet-sonarqube,vladistan/puppet-sonarqube,thanandorn/puppet-sonarqube,ccin2p3/puppet-sonarqube,nick040/puppet-sonarqube,thanandorn/puppet-sonarqube,maestrodev/puppet-sonarq... |
d47623b3910553ed9e3ba2496f07e3df48b10502 | .forestry/front_matter/templates/test.yml | .forestry/front_matter/templates/test.yml | ---
label: test
hide_body: false
fields:
- type: text
name: title
label: title
- type: text
name: description
label: description
- type: datetime
name: date
label: date
- type: datetime
name: updated
label: updated
- type: file
name: image
label: image
- type: list
name: alias
label: alias
- typ... | ---
label: test
hide_body: false
fields:
- type: text
name: title
label: title
- type: text
name: description
label: description
- type: datetime
name: date
label: date
- type: datetime
name: updated
label: updated
- type: file
name: image
label: image
- type: list
name: alias
label: alias
- typ... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | Narno/narno.com,Narno/narno.com |
e7e4060a0d362cbb72c4d148cd23f7e4ca060c28 | OrchidCore/src/orchid/resources/config.yml | OrchidCore/src/orchid/resources/config.yml | site:
about:
siteName: Orchid
siteDescription: A beautiful and truly unique documentation engine and static site generator.
theme:
useSidebarSearch: true
social:
github: 'JavaEden/Orchid'
twitter: 'OrchidSSG'
primaryColor: '#7E80CF'
bannerColor: '#444444'
linkColor: '#7E80CF'
trianglifyOp... | site:
about:
siteName: Orchid
siteDescription: A beautiful and truly unique documentation engine and static site generator.
theme:
useSidebarSearch: true
social:
github: 'JavaEden/Orchid'
twitter: 'OrchidSSG'
primaryColor: '#7E80CF'
bannerColor: '#444444'
linkColor: '#7E80CF'
trianglifyOp... | Deploy to GitHub Pages from Orchid. | Deploy to GitHub Pages from Orchid.
| YAML | mit | JavaEden/Orchid-Core,JavaEden/OrchidCore,JavaEden/OrchidCore,JavaEden/OrchidCore,JavaEden/Orchid-Core |
02c679ebeca50706a153542b89ab0bbcfc8e8ef7 | Resources/config/serialization/Picture.yml | Resources/config/serialization/Picture.yml | VideoGamesRecords\CoreBundle\Entity\Picture:
attributes:
id:
groups:
- 'picture.read'
| VideoGamesRecords\CoreBundle\Entity\Picture:
attributes:
id:
groups:
- 'picture.read'
path:
groups:
- 'picture.read'
| Fix picture.path on api read | Fix picture.path on api read
| YAML | apache-2.0 | video-games-records/CoreBundle |
2cf946fcdf232f423bae51fd412e274969d755dc | data/dependencies/debian.yml | data/dependencies/debian.yml | default:
- mysql-common
- libpq5
- libsqlite3-0
- openssl
- libxml2
- libxslt1.1
- libreadline5
- libreadline6
debian-6:
- libssl0.9.8
- libmysqlclient16
- libevent-1.4-2
- libevent-core-1.4-2
- libevent-extra-1.4-2
debian-7:
- libssl1.0.0
- libmysqlclient18
- libevent-2.0-5
- libevent... | default:
- mysql-common
- libpq5
- libsqlite3-0
- openssl
- libxml2
- libxslt1.1
- libreadline5
- libreadline6
debian-6:
- libssl0.9.8
- libmysqlclient16
- libevent-1.4-2
- libevent-core-1.4-2
- libevent-extra-1.4-2
debian-7:
- libssl1.0.0
- libmysqlclient18
- libevent-2.0-5
- libevent... | Add default deps for ubuntu 16.04 | Add default deps for ubuntu 16.04
| YAML | mit | monterail/pkgr,monterail/pkgr,crohr/pkgr,monterail/pkgr,crohr/pkgr,solarflarecommunications/pkgr,solarflarecommunications/pkgr,crohr/pkgr,solarflarecommunications/pkgr |
8abd2d6834047df7a695898c7bd68dfe44e99fe8 | data/get/os.yaml | data/get/os.yaml | # Budgie on other Operating Systems
"Arch Linux":
Description: "You can try Budgie on Arch Linux right from the community repository."
BudgieVersion: "10.2.9"
Icon: "arch-linux"
URL: "https://www.archlinux.org/packages/community/x86_64/budgie-desktop/"
"GeckoLinux Static Budgie":
Description: "GeckoLinux is a... | # Budgie on other Operating Systems
"Arch Linux":
Description: "You can try Budgie on Arch Linux right from the community repository."
BudgieVersion: "10.2.9"
Icon: "arch-linux"
URL: "https://www.archlinux.org/packages/community/x86_64/budgie-desktop/"
"GeckoLinux Static Budgie":
Description: "GeckoLinux is a... | Update ubuntu budgie website to official one | Update ubuntu budgie website to official one
| YAML | apache-2.0 | budgie-desktop/budgie-site |
cb7458ac66c168a3ad461afaf93182216d28d481 | updates/version.yaml | updates/version.yaml | 1.0.1: First version of Wysiwyg Editors
1.0.2: Automatic Injection to CMS & other codeeditors and October CMS`s Rich Editor Added
1.0.3: Automatic Injection to RainLab Static Pages & other plugin`s option is appear only if installed
1.0.4: New Froala editor added (on request from emzero439), Height & width property add... | 1.0.1: First version of Wysiwyg Editors.
1.0.2: Automatic Injection to CMS & other codeeditors and October CMS`s Rich Editor Added.
1.0.3: Automatic Injection to RainLab Static Pages & other plugin`s option is appear only if installed.
1.0.4: New Froala editor added (on request from emzero439), Height & width property ... | Support multilanguage, update elFinder and cleanup code | Support multilanguage, update elFinder and cleanup code
| YAML | mit | anand-patel/oc-wysiwyg-editors,anand-patel/oc-wysiwyg-editors,anand-patel/oc-wysiwyg-editors |
3bd2e902228f33b72e49c65e7674d22b8d882cd8 | handlers/main.yml | handlers/main.yml | ---
# handlers file for ansible-role-proxmox
- name: restart pvedaemon
service:
name: pvedaemon
state: restarted
- name: reload sshd configuration
service:
name: sshd
state: reloaded
- name: reload watchdog-mux
service:
name: watchdog-mux
state: restarted
| ---
# handlers file for ansible-role-proxmox
- name: restart pvedaemon
service:
name: pvedaemon
state: restarted
- name: reload sshd configuration
service:
name: sshd
state: reloaded
- name: restart watchdog-mux
service:
name: watchdog-mux
state: restarted
| Correct handler name for watchdog-mux | Correct handler name for watchdog-mux
| YAML | mit | lae/ansible-role-proxmox,lae/ansible-role-proxmox |
94c8597ee450741c61014c73bb9318b02a05c8cb | config/final.yml | config/final.yml | ---
blobstore:
provider: s3
options:
bucket_name: logsearch-for-cloudfoundry-boshrelease
final_name: logsearch-for-cloudfoundry
| ---
blobstore:
provider: s3
options:
bucket_name: logsearch-for-cloudfoundry-blobs
region: eu-west-1
endpoint: https://s3-eu-west-1.amazonaws.com
final_name: logsearch-for-cloudfoundry
| Update S3 bucket for release blobs | Update S3 bucket for release blobs
| YAML | apache-2.0 | cloudfoundry-community/logsearch-for-cloudfoundry,cloudfoundry-community/logsearch-for-cloudfoundry,cloudfoundry-community/logsearch-for-cloudfoundry,cloudfoundry-community/logsearch-for-cloudfoundry,x6j8x/logsearch-for-cloudfoundry,hannayurkevich/logsearch-for-cloudfoundry,logsearch/logsearch-for-cloudfoundry,cloudfou... |
08a0b17608cb57cfa968aa0bb474468c1b0c4ba8 | config/peers.yml | config/peers.yml | - kind: Peer
apiVersion: v1
metadata:
name: DID Logic, Inc
zone: USA / us1
host: us1.sip.didlogic.net # Outbound host
username: 0001
secret: 1234
registries: # Inbound hosts
- sip.lax.didlogic.net
- sip.za.didlogic.net
- sip.ca.didlogic.net
- sip.nyc.didlogic.net
... | - kind: Peer
apiVersion: v1
metadata:
name: DID Logic, Inc
zone: USA / us1
host: us1.sip.didlogic.net # Outbound host
username: 0001
secret: 1234
registries: # Inbound hosts
- sip.lax.didlogic.net
- sip.za.didlogic.net
- sip.ca.didlogic.net
- sip.nyc.didlogic.net
... | Remove extra space in config files | Remove extra space in config files
| YAML | mit | psanders/sipio,fonoster/sipio,fonoster/sipio,psanders/sip.io,psanders/sipio,psanders/sip.io,fonoster/sipio |
34ac03fab90b05de75aa8c68c99c5a922780305b | config/redis.yml | config/redis.yml | development:
host: 127.0.0.1 %>
port: 6379 %>
test:
host: 127.0.0.1
port: 6379
production:
host: <%= ENV["REDIS_HOST"] %>
port: <%= ENV["REDIS_PORT"] %>
| development:
host: <%= ENV["REDIS_HOST"] || '127.0.0.1' %>
port: <%= ENV["REDIS_PORT"] || 6379 %>
test:
host: <%= ENV["REDIS_HOST"] || '127.0.0.1' %>
port: <%= ENV["REDIS_PORT"] || 6379 %>
production:
host: <%= ENV["REDIS_HOST"] %>
port: <%= ENV["REDIS_PORT"] %>
| Support environment variables for Redis in all environments | Support environment variables for Redis in all environments
This makes the Redis settings more easily configurable for dev and
test, while making the behaviour more consistent.
| YAML | mit | alphagov/signonotron2,alphagov/signonotron2,alphagov/signonotron2,alphagov/signonotron2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.