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 |
|---|---|---|---|---|---|---|---|---|---|
6fe1e638b340595f98c6ed2e19be3efc4dfcaf23 | .github/workflows/update_fork.yml | .github/workflows/update_fork.yml | name: Update fork
on:
schedule:
- cron: 0 0 * * *
jobs:
update_fork:
runs-on: ubuntu-latest
steps:
- name: Checkout upstream repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Push changes to fork
run: |
git config user.name githu... | name: Update fork
on:
schedule:
- cron: 0 0 * * *
workflow_dispatch:
jobs:
update_fork:
runs-on: ubuntu-latest
steps:
- name: Checkout upstream repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Push changes to fork
run: |
git c... | Add also possibility to invoke the fork update manually | Add also possibility to invoke the fork update manually
| YAML | unlicense | jkonecny12/kakoune,jkonecny12/kakoune,jkonecny12/kakoune,jkonecny12/kakoune |
df51f21de6a0d45755b8a560d1829c192d952309 | nimble/host/store/ram/syscfg.yml | nimble/host/store/ram/syscfg.yml | # Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not u... | # Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not u... | Make it clear store/ram is deprecated | nimble/store: Make it clear store/ram is deprecated
With this patch when store/ram is used then new will warn about it:
2020/04/21 15:51:21.077 [WARNING] Use of deprecated setting BLE_STORE_RAM_DEPRECATED_FLAG in @apache-mynewt-nimble/nimble/host/store/ram: Package store/ram is deprecated and store/config shall be us... | YAML | apache-2.0 | apache/mynewt-nimble,apache/mynewt-nimble,apache/mynewt-nimble,apache/mynewt-nimble,apache/mynewt-nimble |
cfe8c32d35d14455877aa1c9427e5bfa73518cc1 | .github/workflows/android.yml | .github/workflows/android.yml | name: Android CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
ru... | name: Android CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Run lint
run: ./gradl... | Change build job to lint | Change build job to lint
| YAML | mit | fcostaa/kotlin-rxjava-android,fcostaa/kotlin-rxjava-android |
8f767947cb8dd145a3f8c7c0087c2572509d7a3d | .github/workflows/linting.yml | .github/workflows/linting.yml | name: "Linting"
on:
push:
branches: [ master, develop ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ develop ]
schedule:
- cron: '55 22 14 * *'
jobs:
flake8:
name: flake8
runs-on: ubuntu-latest
steps:
- name: Checkout repository
... | name: "Lint"
on:
push:
branches: [ master, develop ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ develop ]
schedule:
- cron: '55 22 14 * *'
jobs:
flake8:
name: flake8
runs-on: ubuntu-latest
steps:
- name: Checkout repository
... | Change name, "Linting" -> "Lint" | Change name, "Linting" -> "Lint"
| YAML | bsd-3-clause | romgar/django-dirtyfields |
bcfd58c4f5b8e9a0d223e26123df2d23a25f12a1 | .github/workflows/nodebug.yml | .github/workflows/nodebug.yml | name: No Assertions
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
ndebug:
name: No Assertions
uses: steinwurf/nodebug-action/.github/workflows/a... | name: No Assertions
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
ndebug:
name: No Assertions
uses: steinwurf/nodebug-action/.github/workflows/a... | Update No Assertions to new version 5.0.0 | Update No Assertions to new version 5.0.0 | YAML | bsd-3-clause | steinwurf/endian,steinwurf/endian |
6d81b4b28bbec3422bfb8dc4b590d46048c9b494 | .github/workflows/release.yml | .github/workflows/release.yml | name: Release
on:
push:
branches:
- main
- next
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup Node.js 12.x
uses: actions/setup-node@master
... | name: Release
on:
push:
branches:
- main
- next
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setu... | Add `concurrency` to the Changesets workflow | Add `concurrency` to the Changesets workflow
| YAML | mit | tkh44/emotion,emotion-js/emotion,tkh44/emotion,emotion-js/emotion,emotion-js/emotion,emotion-js/emotion |
30b631d9f0e016ab78a41153c012f2b1a4b35166 | .github/workflows/testing.yml | .github/workflows/testing.yml | name: Testing
on:
push:
branches: [ master, jruby-stopped-working ]
pull_request:
branches: ['**']
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [
'2.6.10', '2.7.6', '3.0.4', '3.1.2', 'ruby-head',
... | name: Testing
on:
push:
branches: [ master ]
pull_request:
branches: ['**']
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [
'2.6.10', '2.7.6', '3.0.4', '3.1.2', 'ruby-head',
'jruby-9.1.17.0', '... | Add additional Rubies to test | Add additional Rubies to test
| YAML | mit | fny/xorcist,fny/xorcist,fny/xorcist,fny/xorcist |
7efce36a01772d6418cc492a5aa80ec39d385d6c | .github/workflows/windows.yml | .github/workflows/windows.yml | name: Windows Build
on: push
jobs:
build:
runs-on: windows-latest
steps:
- name: configure git line endings
run: git config --global core.autocrlf false
- uses: actions/checkout@v1
- name: Setup Msys2 environment
uses: msys2/setup-msys2@v2
with:
msystem: MSYS
- name: ... | name: Windows Build
on: push
jobs:
build:
runs-on: windows-latest
steps:
- name: configure git line endings
run: git config --global core.autocrlf false
- uses: actions/checkout@v1
- name: Setup Msys2 environment
uses: msys2/setup-msys2@v2
with:
msystem: MSYS
- name: ... | Use GITHUB_REF for Windows build | .github/workflows: Use GITHUB_REF for Windows build
| YAML | mit | livepeer/go-livepeer,livepeer/go-livepeer |
206ecf11a69a83897be45f7244f59c6bb8676ec9 | hiera-data/operatingsystem/Ubuntu/common.yaml | hiera-data/operatingsystem/Ubuntu/common.yaml | classes:
- ubuntu
- docker
- emacs
- ntp
- accounts
- zsh
- youtube_dl
ubuntu::common_packages:
- 'strace'
- 'nmap'
- 'iftop'
- 'silversearcher-ag'
- 'htop'
- 'unzip'
- 'apt-file'
- 'puppet-lint'
- 'apcalc'
- 'tig'
- 'whois'
- 'sysstat'
- 'graphicsmagick'
- 'php-elisp'
- 'zs... | classes:
- ubuntu
- docker
- emacs
- ntp
- accounts
- zsh
- youtube_dl
ubuntu::common_packages:
- 'strace'
- 'nmap'
- 'iftop'
- 'silversearcher-ag'
- 'htop'
- 'unzip'
- 'apt-file'
- 'puppet-lint'
- 'apcalc'
- 'tig'
- 'whois'
- 'sysstat'
- 'graphicsmagick'
- 'php-elisp'
- 'zs... | Remove the default test user from being created | [hiera-data] Remove the default test user from being created
| YAML | apache-2.0 | lagerstrom/urpuppet,lagerstrom/urpuppet,lagerstrom/urpuppet,lagerstrom/urpuppet |
b703feed78fe5817cdf6dc39b3bed0bce64f1568 | metadata/org.commonvoice.saverio.yml | metadata/org.commonvoice.saverio.yml | Categories:
- Science & Education
License: GPL-3.0-only
AuthorName: Saverio Morelli
AuthorWebSite: https://saveriomorelli.com/
SourceCode: https://github.com/Sav22999/common-voice-android
IssueTracker: https://github.com/Sav22999/common-voice-android/issues
AutoName: Common Voice
RepoType: git
Repo: https://github.... | Categories:
- Science & Education
License: GPL-3.0-only
AuthorName: Saverio Morelli
AuthorWebSite: https://saveriomorelli.com/
SourceCode: https://github.com/Sav22999/common-voice-android
IssueTracker: https://github.com/Sav22999/common-voice-android/issues
AutoName: Common Voice
RepoType: git
Repo: https://github.... | Update Common Voice to 0.2.10b (83) | Update Common Voice to 0.2.10b (83)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
1347ebf9cb37571950fc9845fc4bd4b28543fb36 | KenticoInspector.Reports/TaskProcessingAnalysis/Metadata/en-US.yaml | KenticoInspector.Reports/TaskProcessingAnalysis/Metadata/en-US.yaml | details:
name: Task processing analysis
shortDescription: Checks system queues for tasks that appear stuck for more than 24 hours.
longDescription: |
The following queues are reviewed for stuck tasks:
* Scheduled tasks (ignores recurring)
* Web Farm tasks
* Integration Bus tasks
* Sta... | details:
name: Task processing analysis
shortDescription: Checks system queues for tasks that appear stuck for more than 24 hours.
longDescription: |
The following queues are reviewed for stuck tasks:
* Scheduled tasks (ignores recurring)
* Web Farm tasks
* Integration Bus tasks
* Sta... | Update tokens in Task processing analysis report | Update tokens in Task processing analysis report
| YAML | mit | Kentico/KInspector,Kentico/KInspector,Kentico/KInspector,ChristopherJennings/KInspector,ChristopherJennings/KInspector,ChristopherJennings/KInspector,Kentico/KInspector,ChristopherJennings/KInspector |
c1cb179a76e5f47a633c6c1f54cd8191fc5359ad | artifacts/example/apiservice.yaml | artifacts/example/apiservice.yaml | apiVersion: apiregistration.k8s.io/v1beta1
kind: APIService
metadata:
name: v1alpha1.wardle.k8s.io
spec:
insecureSkipTLSVerify: true
group: wardle.k8s.io
groupPriorityMinimum: 1000
versionPriority: 15
service:
name: api
namespace: wardle
version: v1alpha1
| apiVersion: apiregistration.k8s.io/v1
kind: APIService
metadata:
name: v1alpha1.wardle.k8s.io
spec:
insecureSkipTLSVerify: true
group: wardle.k8s.io
groupPriorityMinimum: 1000
versionPriority: 15
service:
name: api
namespace: wardle
version: v1alpha1
| Move test/e2e use to v1 APIs | Move test/e2e use to v1 APIs
Kubernetes-commit: 8229af31d218f6106a7dd15d4cb37d20411a41cf
| YAML | apache-2.0 | kubernetes-nightly/sample-apiserver,kubernetes-nightly/sample-apiserver,kubernetes/sample-apiserver,kubernetes/sample-apiserver |
cd454bc77e21dc64e4d263993317533b6fbf0f97 | config/sidekiq.yml | config/sidekiq.yml | :concurrency: 5
staging:
:concurrency: 10
production:
:concurrency: 25
:queues:
- default
- photos | :concurrency: 5
staging:
:concurrency: 10
production:
:concurrency: 10
:queues:
- default
- photos | Reduce Sidekiq concurrency to 10 | Reduce Sidekiq concurrency to 10
| YAML | apache-2.0 | GreaterGoodStudio/data-journal,GreaterGoodStudio/data-journal,GreaterGoodStudio/data-journal |
6462bbc22fc445e798cefb6fac30f66746aff890 | packages/as/async-io-either.yaml | packages/as/async-io-either.yaml | homepage: https://github.com/mankyKitty/async-io-either#readme
changelog-type: ''
hash: 48a69b2912a5975bc020dfed68241a76553c08974cc392d1893aeb0919300ff9
test-bench-deps: {}
maintainer: schalmers@iseek.com.au
synopsis: Could be useful
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
async: ! '>0.2'
all-versions:
- '0... | homepage: https://github.com/mankyKitty/async-io-either#readme
changelog-type: ''
hash: c73e83a77a7b88dfdcf0ecd2a04ed7857ce8a5b7edefc728eb853d89da2e0d18
test-bench-deps: {}
maintainer: sclhiannan@gmail.com
synopsis: Could be useful
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
async: ! '>0.2'
all-versions:
- '0.1... | Update from Hackage at 2017-02-20T05:52:25Z | Update from Hackage at 2017-02-20T05:52:25Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
37d39f3b510f8908c6070fcf89f2d5e1e64e0237 | manifests/ops-files/example-vars-files/iaas/vsphere/cloud-provider.yml | manifests/ops-files/example-vars-files/iaas/vsphere/cloud-provider.yml | director_uuid: 139e50ba-d4b7-11e7-b80c-738bbf520820
vcenter_ip: 10.11.12.2
vcenter_master_user: master
vcenter_master_password: master_password
vcenter_dc: Interxion ABC1
vcenter_vms: prod/vms
vcenter_ds: vol309|vol310
| vcenter_ip: 10.11.12.2
vcenter_master_user: master
vcenter_master_password: master_password
vcenter_dc: Interxion ABC1
vcenter_vms: prod/vms
vcenter_ds: vol309|vol310
| Fix test for previous "Removes director_uuid" commit | Fix test for previous "Removes director_uuid" commit
| YAML | apache-2.0 | pivotal-cf-experimental/kubo-deployment,pivotal-cf-experimental/kubo-deployment |
b00eb194afd3473b646a91eee8faf23c5bfc13d3 | recipes/ftputil/meta.yaml | recipes/ftputil/meta.yaml | {% set name = "ftputil" %}
{% set version = "3.3.1" %}
{% set md5 = "464c5c9ccabceff4fd20346bf801e5d3" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
md5: {{ m... | {% set name = "ftputil" %}
{% set version = "3.3.1" %}
{% set md5 = "464c5c9ccabceff4fd20346bf801e5d3" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
md5: {{ m... | Use double quotes instead of single quotes for testing | Use double quotes instead of single quotes for testing
| YAML | bsd-3-clause | jakirkham/staged-recipes,sannykr/staged-recipes,ceholden/staged-recipes,patricksnape/staged-recipes,sodre/staged-recipes,igortg/staged-recipes,jerowe/staged-recipes,dschreij/staged-recipes,hbredin/staged-recipes,NOAA-ORR-ERD/staged-recipes,chohner/staged-recipes,benvandyke/staged-recipes,hbredin/staged-recipes,koverhol... |
12b7118301ed609da839a5f82d8614701ae8a28a | packages/co/composition-prelude.yaml | packages/co/composition-prelude.yaml | homepage: https://github.com/vmchale/composition-prelude#readme
changelog-type: ''
hash: d9e0342e8259fd45dbf659086da5dd86d9a3e88f994139cb590c46cbf8e775fb
test-bench-deps: {}
maintainer: vanessa.mchale@reconfigure.io
synopsis: Higher-order function combinators
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-versio... | homepage: https://github.com/vmchale/composition-prelude#readme
changelog-type: ''
hash: 415d52b6cd48f6e10f5fff6ca9d2b6604290c2110dd871bfd8eeaac4f94ebfcf
test-bench-deps: {}
maintainer: vanessa.mchale@reconfigure.io
synopsis: Higher-order function combinators
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
all-versio... | Update from Hackage at 2017-12-30T23:03:08Z | Update from Hackage at 2017-12-30T23:03:08Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
98041ca1c779ec3deaeec4494da28410e5b90b7c | packages/st/stb-image-redux.yaml | packages/st/stb-image-redux.yaml | homepage: https://github.com/sasinestro/stb-image-redux#readme
changelog-type: ''
hash: 59533529f7bdf491b9b35d24431ccf65e6c3dc4163ceb89860d23773dffcd84a
test-bench-deps:
stb-image-redux: ! '>=0.1.0.4 && <0.2'
base: ! '>=4.9.0.0 && <4.10'
hspec: ! '>=2.1.5 && <2.4'
vector: ! '>=0.10.12.3 && <0.12'
maintainer: sa... | homepage: https://github.com/sasinestro/stb-image-redux#readme
changelog-type: ''
hash: 00dff9654b15c31e4999a655f8282a9008de8f6bbb7c351261b615094304179d
test-bench-deps:
stb-image-redux: ! '>=0.2.0.0 && <0.3'
base: ! '>=4.9.0.0 && <4.10'
hspec: ! '>=2.1.5 && <2.4'
vector: ! '>=0.10.12.3 && <0.12'
maintainer: sa... | Update from Hackage at 2016-10-21T05:02:47Z | Update from Hackage at 2016-10-21T05:02:47Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
31cfa16f25ef70567b060bad539276029b856846 | roles/ruby/tasks/main.yml | roles/ruby/tasks/main.yml | ---
- name: Check ruby-install installation
stat: path=/usr/local/bin/ruby-install
register: ruby_install
- name: Download ruby-install
git: repo=https://github.com/postmodern/ruby-install dest=/tmp/ruby-install
when: ruby_install.stat.exists == false
- name: Install ruby-install
command: chdir=/tmp/ruby-i... | ---
- name: Ruby dependencies
apt: name={{item}} state=latest
with_items:
- build-essential
- zlib1g-dev
- libyaml-dev
- libssl-dev
- libgdbm-dev
- libreadline-dev
- libncurses5-dev
- libffi-dev
- name: Check ruby-install installation
stat: path=/usr/local/bin/ruby-install
regi... | Make sure dependencies to build Ruby are installed | Make sure dependencies to build Ruby are installed
| YAML | mit | deivid-rodriguez/dotfiles,deivid-rodriguez/dotfiles |
de90a3864d90edc93fc7688e9a3b343d5cace47f | cluster/manifests/deletions.yaml | cluster/manifests/deletions.yaml | # everything defined under here will be deleted before applying the manifests
pre_apply: []
# everything defined under here will be deleted after applying the manifests
post_apply:
- name: kubernetes-dashboard
kind: ClusterRoleBinding
- name: heapster
namespace: kube-system
kind: Deployment
- name: heapster
na... | # everything defined under here will be deleted before applying the manifests
pre_apply: []
# everything defined under here will be deleted after applying the manifests
post_apply:
- name: kubernetes-dashboard
kind: ClusterRoleBinding
- name: heapster
namespace: kube-system
kind: Deployment
- name: heapster
na... | Delete the LimitRange in the cron namespace | Delete the LimitRange in the cron namespace
Signed-off-by: Alexey Ermakov <6610c7e1c26fb4c3222ac4f760cb43a9f3c01622@zalando.de>
| YAML | mit | zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws |
e80112ca627805b4ad85f26361be1e9618030dbc | releasenotes/notes/deprecate-implicit-service-providers-loading-703f984b90351bf0.yaml | releasenotes/notes/deprecate-implicit-service-providers-loading-703f984b90351bf0.yaml | ---
deprecations:
- Neutron controller service currently allows to load ``service_providers``
options from some files that are not passed to it via --config-dir or
--config-dir CLI options. This behaviour is now deprecated and will be
disabled in Ocata. Current users are advised to switch to afore... | ---
deprecations:
- Neutron controller service currently allows to load ``service_providers``
options from some files that are not passed to it via --config-dir or
--config-file CLI options. This behaviour is now deprecated and will be
disabled in Ocata. Current users are advised to switch to afor... | Fix a release note typo for implicit provider loading deprecation | Fix a release note typo for implicit provider loading deprecation
Don't repeat --config-dir option twice.
Related-Bug: #1492069
Related-Bug: #1599936
Change-Id: I002b80ba8e5496c164d08357e4cce9e0b4abf5cf
| YAML | apache-2.0 | noironetworks/neutron,huntxu/neutron,mahak/neutron,huntxu/neutron,sebrandon1/neutron,eayunstack/neutron,openstack/neutron,mahak/neutron,mahak/neutron,cloudbase/neutron,openstack/neutron,cloudbase/neutron,eayunstack/neutron,noironetworks/neutron,sebrandon1/neutron,openstack/neutron |
72717dfcfc8a79215507ac2596a2f8826796fbf5 | modules/tectonic/resources/manifests/updater/operators/tectonic-channel-operator.yaml | modules/tectonic/resources/manifests/updater/operators/tectonic-channel-operator.yaml | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: tectonic-channel-operator
namespace: tectonic-system
labels:
k8s-app: tectonic-channel-operator
managed-by-channel-operator: "true"
spec:
replicas: 1
selector:
matchLabels:
k8s-app: tectonic-channel-operator
template:
meta... | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: tectonic-channel-operator
namespace: tectonic-system
labels:
k8s-app: tectonic-channel-operator
managed-by-channel-operator: "true"
spec:
replicas: 1
selector:
matchLabels:
k8s-app: tectonic-channel-operator
template:
meta... | Add toleration and node selector for tco to schedule it to master. | updater: Add toleration and node selector for tco to schedule it to master.
This is because tco replies on ssl certs path that doesn't exist on rhel nodes.
| YAML | apache-2.0 | hhoover/tectonic-installer,squat/tectonic-installer,s-urbaniak/tectonic-installer,squat/tectonic-installer,aknuds1/tectonic-installer,alexsomesan/tectonic-installer,zbwright/tectonic-installer,derekhiggins/installer,alexsomesan/tectonic-installer,justaugustus/tectonic-installer,squat/tectonic-installer,rithujohn191/tec... |
17d66550e5b1a43d055e90ea4fecc8030329c459 | build.yaml | build.yaml | artifacts:
jms: org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1
activemq_core: org.apache.activemq:activemq-core:jar:5.3.2
commons_logging: commons-logging:commons-logging:jar:1.1
j2ee_management: org.apache.geronimo.specs:geronimo-j2ee-management_1.0_spec:jar:1.0
repositories:
remote:
- https:/... | artifacts:
jms: org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1
activemq_core: org.apache.activemq:activemq-core:jar:5.3.2
commons_logging: commons-logging:commons-logging:jar:1.1
j2ee_management: org.apache.geronimo.specs:geronimo-j2ee-management_1.0_spec:jar:1.0
repositories:
remote:
- https:/... | Use the correct URL for central | Use the correct URL for central
| YAML | apache-2.0 | realityforge/jml,realityforge/jml |
58be4d4d03e60d89065d9720cf962dacb27fe4e6 | build.yaml | build.yaml | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
jsinterop_base: com.google.jsinterop:base:jar:1.0.0-RC1
elemental2_core: org.realityforge.org.realityforge.com.google.elemental2:elemental2-core:jar:1.0.0-b15-7a28038
elemental2_dom: org.realityforge.org.realityforge.com.google.elemental2:ele... | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
jsinterop_base: com.google.jsinterop:base:jar:1.0.0-RC1
elemental2_core: org.realityforge.com.google.elemental2:elemental2-core:jar:1.0.0-b15-7a28038
elemental2_dom: org.realityforge.com.google.elemental2:elemental2-dom:jar:1.0.0-b15-7a28038
... | Fix dependency coordinates mangled via automated upgrade process | Fix dependency coordinates mangled via automated upgrade process
| YAML | apache-2.0 | realityforge/gwt-webpoller,realityforge/gwt-webpoller |
956a1892cf936f3e403c6e39a63483b9fa188d67 | .github/workflows/dart.yml | .github/workflows/dart.yml | name: Dart CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * 0"
defaults:
run:
shell: bash
jobs:
build:
name: "Dart CI"
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v2
with:
path: "~/.pub-cache/hosted"
... | name: Dart CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * 0"
defaults:
run:
shell: bash
jobs:
build:
name: "Dart CI"
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v2
with:
path: "~/.pub-cache/hosted"
... | Fix test coverage collection for Dart 2.17 | Fix test coverage collection for Dart 2.17
| YAML | mit | renggli/dart-statemachine,renggli/dart-statemachine |
ebc10c6d7d836a5e3abaa77ac5f1e81b15f9c3d0 | .github/workflows/main.yml | .github/workflows/main.yml | name: Ruby
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.5
- 2.6
- 2.7
- 3.0
- 3.1
- jruby
active_model:
- 4.2... | name: Ruby
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.5
- 2.6
- 2.7
- '3.0'
- 3.1
- jruby
active_model:
- 4... | Fix truncation issue in CI configuration entries | Fix truncation issue in CI configuration entries
Zero terminated float values in GitHub Actions CI configurations are truncated, leading to unexpected behavior. In this instance this results loading an unexpected Ruby or ActiveModel version for several CI matrix entries.
Specifically, the unquoted '3.0' is interpret... | YAML | mit | jeremytregunna/ruby-trello |
56102480de9022e0629a081cdf1f6407b6aa1d79 | .github/workflows/main.yml | .github/workflows/main.yml | name: Build and test
env:
DOTNET_NOLOGO: true
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
... | name: Build and test
env:
DOTNET_NOLOGO: true
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
... | Bring back dotnet 3.1.x to fix fsdocs | Bring back dotnet 3.1.x to fix fsdocs
| YAML | unlicense | fsprojects/FSharpx.Extras,fsprojects/FSharpx.Extras |
98898727b30fe4d18562a2c8e18b964df6f1afec | .github/workflows/test.yml | .github/workflows/test.yml | name: "build-test"
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cached install
uses: bahmutov/npm-install@v1.1.0
- name: Test
run: yarn test
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cached i... | name: "build-test"
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cached install
uses: bahmutov/npm-install@v1.1.0
- name: Test
run: yarn test
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cached i... | Set bundle host to S3 at build time; upload files as public | Set bundle host to S3 at build time; upload files as public
| YAML | bsd-3-clause | jamesdabbs/pi-base-viewer,jamesdabbs/pi-base-viewer,jamesdabbs/pi-base-viewer |
85d2ef1a7b24b9b646cc1a1a784db88014deebb1 | .github/workflows/test.yml | .github/workflows/test.yml | name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: test
run: |
export DEBIAN_FRONTEND=noninteractive && \
echo 'debconf debconf/frontend select Noninteractive' | sudo debconf-set-selections && \
sudo apt-g... | name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: test
run: |
export DEBIAN_FRONTEND=noninteractive && \
echo 'debconf debconf/frontend select Noninteractive' | sudo debconf-set-selections && \
sudo apt-g... | Update codecov/codecov-action action to v2 | Update codecov/codecov-action action to v2
| YAML | apache-2.0 | CyberReboot/vent-plugins,CyberReboot/vent-plugins,CyberReboot/vent-plugins,CyberReboot/vent-plugins |
0a6e1458e13335bd0a307646632b9650390e07ce | github/files/drupal7/scripts/devops/reinstall/prepare_environment.yml | github/files/drupal7/scripts/devops/reinstall/prepare_environment.yml | ---
# Commands to prepare environment.
- name: Set writable cache dirr
sudo: yes
file: path={{ cache_folder }} mode=777 state=directory recurse=yes
- name: Set writable tmp dir
sudo: yes
file: dest={{ tmp_folder }} mode=777 state=directory recurse=yes
- name: Set writable backup dir
sudo: yes
file: dest={... | ---
# Commands to prepare environment.
- name: Set writable cache dirr
sudo: yes
file: path={{ cache_folder }} mode=777 state=directory recurse=yes
- name: Set writable tmp dir
sudo: yes
file: dest={{ tmp_folder }} mode=777 state=directory recurse=yes
- name: Set writable backup dir
sudo: yes
file: dest={... | Fix permissiosn for default folder | Fix permissiosn for default folder
| YAML | bsd-3-clause | turcan-vasile/cibox,propeoplemd/cibox,ygerasimov/cibox-1,propeopleua/cibox,PavelLoparev/cibox,PavelLoparev/cibox,dpovshed/cibox,valthebald/cibox,tkyryliuk/cibox,dpovshed/cibox,loganyott/cibox,ygerasimov/cibox-1,dpovshed/cibox,turcan-vasile/cibox,valthebald/cibox,Sanchiz/cibox,ygerasimov/cibox-1,loganyott/cibox,tkyryliu... |
a34e287629b8aafc603f18b4fcc9299dc1e0d098 | circle.yml | circle.yml | machine:
python:
version: 2.7.9
services:
- docker
dependencies:
post:
- curl -L -o ~/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5rc1/jq-linux-x86_64-static && chmod +x ~/bin/jq
- curl -L https://github.com/docker/compose/releases/download/1.5.0/docker-compose-`uname -s`-`uname -... | machine:
python:
version: 2.7.9
services:
- docker
dependencies:
post:
- curl -L -o ~/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5rc1/jq-linux-x86_64-static && chmod +x ~/bin/jq
- curl -L https://github.com/docker/compose/releases/download/1.5.0/docker-compose-`uname -s`-`uname -... | Add xunit test output back in | Add xunit test output back in
| YAML | mit | crempp/mdweb,crempp/mdweb,crempp/mdweb |
a3210675242ba1651c712574e563909bf062fbbb | circle.yml | circle.yml | machine:
node:
version: 0.12.0
dependencies:
pre:
- bower install
| machine:
node:
version: v6.2.1
dependencies:
pre:
- bower install
| Update version of NodeJS for CircleCI | Update version of NodeJS for CircleCI
| YAML | agpl-3.0 | sgmap/pix,sgmap/pix,sgmap/pix,sgmap/pix |
d8937fec288a21abb90b4a57b92069967960b954 | circle.yml | circle.yml | machine:
timezone: Asia/Tokyo
ruby:
version: 2.4.1
dependencies:
override:
- bundle install --path vendor/bundle
test:
override:
- bundle exec rubocop
- bundle exec rspec | machine:
timezone: Asia/Tokyo
ruby:
version: 2.4.1
dependencies:
cache_directories:
- 'vendor/bundle'
- 'vendor/bundle_2.5.0-dev'
- 'vendor/bundle_2.3.4'
- 'vendor/bundle_2.2.7'
- 'vendor/bundle_2.1.6'
pre:
- 'rvm install 2.5.0-dev'
- 'rvm install 2.3.4'
- 'rvm install 2.2.7'... | Test with multiple ruby version | Test with multiple ruby version
| YAML | mit | obiyuta/tsumamigui,obiyuta/tsumamigui |
01bd116f5123d3684ef80a26a21445262bb84bc9 | circle.yml | circle.yml | machine:
node:
version: '5'
environment:
NODE_ENV: test
notify:
webhooks:
- url: https://webhooks.gitter.im/e/ba1b37fc12942c2430c9
dependencies:
pre:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
override:
- yarn install
test:
override:
... | machine:
node:
version: '5'
environment:
NODE_ENV: test
notify:
webhooks:
- url: https://webhooks.gitter.im/e/ba1b37fc12942c2430c9
dependencies:
pre:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
override:
- yarn install
test:
override:
... | Fix release detection pattern in CircleCI | :bug: Fix release detection pattern in CircleCI
| YAML | agpl-3.0 | bemusic/bemuse,bemusic/bemuse,bemusic/bemuse,bemusic/bemuse,bemusic/bemuse |
7421c749d88f52dc40a2e4042f76af99241d0ac0 | circle.yml | circle.yml | machine:
services:
- docker
test:
override:
- lein test-all
post:
- lein with-profile spark2 test :only powderkeg.integration-test/rdd-spark-2.1.0
- lein with-profile spark1.5 test :only powderkeg.integration-test/rdd-spark-1.5.2 | machine:
hosts:
master: 127.0.0.1
services:
- docker
test:
override:
- lein test-all
post:
- lein with-profile spark2 test :only powderkeg.integration-test/rdd-spark-2.1.0
- lein with-profile spark1.5 test :only powderkeg.integration-test/rdd-spark-1.5.2 | Add host name mapping to be able to connect to spark 1.5 in docker | Add host name mapping to be able to connect to spark 1.5 in docker
| YAML | epl-1.0 | HCADatalab/powderkeg |
c9b3c4b43b5454c320b5f32cb6795e2af67dafa3 | circle.yml | circle.yml | machine:
post:
- pyenv global 2.7.12 3.4.5
deployment:
pypi:
owner: ouspg
tag: /^v[0-9.]+$/
commands:
- pip install twine
- python setup.py bdist_wheel --universal
- twine upload --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" dist/*.whl
| machine:
post:
- pyenv global 2.7.12 3.4.5 3.5.2 pypy-5.3.1
deployment:
pypi:
owner: ouspg
tag: /^v[0-9.]+$/
commands:
- pip install twine
- python setup.py bdist_wheel --universal
- twine upload --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" dist/*.whl
| Add Python 3.5.2 and PyPy 5.3.1 to the CircleCI build environment | Add Python 3.5.2 and PyPy 5.3.1 to the CircleCI build environment
| YAML | mit | ouspg/trytls,ouspg/trytls,ouspg/trytls,ouspg/trytls,ouspg/trytls,ouspg/trytls,ouspg/trytls,ouspg/trytls |
561c458bfe5e90db7bdbe2e727f45a99c39ae287 | circle.yml | circle.yml | # CircleCI Build yaml
# Define VM
machine:
# Timezone
timezone: America/Los_Angeles
# Dependencies needed by run-all.sh
dependencies:
override:
- sudo apt-get update; sudo apt-get install realpath wget
- wget https://dl.google.com/cloudsql/cloud_sql_proxy.linux.amd64 &&
mv cloud_sql_proxy.linux.amd... | # CircleCI Build yaml
# Define VM
machine:
# Timezone
timezone: America/Los_Angeles
# Dependencies needed by run-all.sh
dependencies:
override:
- sudo apt-get update; sudo apt-get install realpath wget
- wget https://dl.google.com/cloudsql/cloud_sql_proxy.linux.amd64 &&
mv cloud_sql_proxy.linux.amd... | Test other versions of Ruby (2.2.8, 2.3.5, 2.4.2, 2.5.0-preview) | Test other versions of Ruby (2.2.8, 2.3.5, 2.4.2, 2.5.0-preview)
| YAML | apache-2.0 | GoogleCloudPlatform/ruby-docs-samples,GoogleCloudPlatform/ruby-docs-samples,GoogleCloudPlatform/ruby-docs-samples,GoogleCloudPlatform/ruby-docs-samples |
9cee4c4c4f8559c68911c2ea600ee991fe83b06f | circle.yml | circle.yml | machine:
services:
- docker
dependencies:
pre:
- mkdir $PWD/.docker-credentials
- echo -n $DOCKER_CERT_BZ2 | base64 --decode | tar -tj -C $PWD/.docker-credentials
- export DOCKER_CERT_PATH="$PWD/.docker-credentials"
deployment:
production:
branch: master
commands:
- docker-compose ... | machine:
services:
- docker
dependencies:
pre:
- mkdir $PWD/.docker-credentials
- echo -n $DOCKER_CERT_BZ2 | base64 --decode | tar -tj -C $PWD/.docker-credentials
deployment:
production:
branch: master
commands:
- docker-compose ps
# - bash ./deploy.sh
| Move PATH declaration to build system | Move PATH declaration to build system
| YAML | mit | wealthsimple/docker-elk |
065c9262062fbc7fca0f7e98f1423c13a4b557b1 | config.yml | config.yml | development:
repository_names:
- dkubb/adamantium
- dkubb/ice_nine
- dkubb/equalizer
- dkubb/descendants_tracker
- dkubb/abstract_class
- dkubb/veritas
- dkubb/veritas-sql-generator
- dkubb/veritas-optimizer
- dkubb/veritas-do-adapter
- datamapper/dm-session
- datamapper/dm... | development:
repository_names:
- dkubb/adamantium
- dkubb/ice_nine
- dkubb/equalizer
- dkubb/descendants_tracker
- dkubb/abstract_class
- dkubb/veritas
- dkubb/veritas-sql-generator
- dkubb/veritas-optimizer
- dkubb/veritas-do-adapter
- datamapper/dm-session
- datamapper/dm... | Add to_source and arango stuff | Add to_source and arango stuff
| YAML | mit | zaidan/rom-status |
2d185fb5a3c434d97c032f63e26a7cd3d5cb33e0 | docker-compose.yml | docker-compose.yml | version: '2'
services:
data:
build: ./
postgresql:
depends_on:
- data
image: svenv/postgresql
ports:
- 5432:5432
restart: always
volumes_from:
- data
uwsgi:
depends_on:
- data
- postgresql
image: svenv/uwsgi
ports:
- 8000:8000
restart: al... | version: '2'
services:
data:
build: ./
postgresql:
depends_on:
- data
image: svenv/postgresql
ports:
- 5432:5432
restart: always
volumes_from:
- data
uwsgi:
depends_on:
- data
- postgresql
image: svenv/uwsgi
ports:
- 8000:8000
restart: al... | Add restart always to tarsnap | Add restart always to tarsnap
| YAML | mit | svenvandescheur/docker-svenv.nl-data |
6da63c28aaf6dda622f75b7749b783ac45f74448 | docker-compose.yml | docker-compose.yml | version: "3.7"
services:
php-cli:
image: rdok/php-docker:7.4-cli-buster
working_dir: /app
volumes:
- .:/app
user: ${UID}:${GID}
php-ci:
image: rdok/php-docker:8.0-cli-alpine3.13
working_dir: /app
volumes:
- .:/app
| version: "3.7"
services:
php-cli:
image: rdok/php-docker:7.4-cli-buster
working_dir: /app
volumes:
- .:/app
user: ${UID}:${GID}
php-ci:
image: rdok/php-docker:7.4-cli-alpine3.13
working_dir: /app
volumes:
- .:/app
| Fix CI PHP version to 7.4. | Fix CI PHP version to 7.4.
| YAML | mit | rdok/elasticemail-php,rdok/elasticemail-php |
a92bc63a790d77d936fe8a142894b5d5537a30f7 | docker-compose.yml | docker-compose.yml | version: '2'
services:
broker:
image: rabbitmq:3-management
ports:
- "15672:15672"
networks:
- back-tier
web:
image: markstory/lint-review
command: 'gunicorn -c /code/settings.py lintreview.web:app'
env_file: lintreview-env
ports:
- "5000:5000"
links:
- broker
... | version: '2'
services:
broker:
image: rabbitmq:3-management
ports:
- "15672:15672"
networks:
- back-tier
web:
image: markstory/lint-review
command: 'gunicorn -c /code/settings.py lintreview.web:app'
env_file: lintreview-env
ports:
- "5000:5000"
links:
- broker
... | Make celery log its output | Make celery log its output
| YAML | mit | zoidbergwill/lint-review,adrianmoisey/lint-review,markstory/lint-review,zoidbergwill/lint-review,zoidbergwill/lint-review,markstory/lint-review,adrianmoisey/lint-review,markstory/lint-review |
9201fe1f1a9b6df09e3473dca9bbcfb31a978810 | Magic/src/main/resources/examples/arenas/messages.yml | Magic/src/main/resources/examples/arenas/messages.yml | wands:
mage:
name: Mage Wand
description: Battle mage spells
demolitions:
name: Demolitions Wand
description: Explosive spells
healer:
name: Healer Wand Wand
description: White mage spells
rogue:
name: Rogue Wand
description: Rogue abilitie... | wands:
mage:
name: Mage Wand
description: Battle mage spells
demolitions:
name: Demolitions Wand
description: Explosive spells
healer:
name: Healer Wand Wand
description: White mage spells
rogue:
name: Rogue Wand
description: Rogue abilitie... | Fix names of arena bending wands | Fix names of arena bending wands
| YAML | mit | elBukkit/MagicPlugin,elBukkit/MagicPlugin,elBukkit/MagicPlugin |
b2b8a3fe5914e8fb6fea620085b7938334589df9 | metadata/me.hackerchick.catima.yml | metadata/me.hackerchick.catima.yml | Categories:
- Money
License: GPL-3.0-or-later
AuthorName: Sylvia van Os
SourceCode: https://github.com/TheLastProject/Catima
IssueTracker: https://github.com/TheLastProject/Catima/issues
Translation: https://hosted.weblate.org/projects/catima/catima/
Changelog: https://github.com/TheLastProject/Catima/blob/HEAD/CHANG... | Categories:
- Money
License: GPL-3.0-or-later
AuthorName: Sylvia van Os
SourceCode: https://github.com/TheLastProject/Catima
IssueTracker: https://github.com/TheLastProject/Catima/issues
Translation: https://hosted.weblate.org/projects/catima/catima/
Changelog: https://github.com/TheLastProject/Catima/blob/HEAD/CHANG... | Update Catima to 1.4.0 (48) | Update Catima to 1.4.0 (48)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
8301e4dc07839f928fa545d855a03bbbcd380c97 | controllers/posts/list_config.yaml | controllers/posts/list_config.yaml | # ===================================
# List Behavior Config
# ===================================
title: Manage Blog Posts
list: /plugins/october/blog/models/post/list_columns.yaml
model-class: Plugins\October\Blog\Models\Post
record-url: october/blog/posts/preview/:id
no-records-message: backend::lang.list.no_recor... | # ===================================
# List Behavior Config
# ===================================
title: Manage Blog Posts
list: /plugins/october/blog/models/post/list_columns.yaml
model-class: Plugins\October\Blog\Models\Post
record-url: october/blog/posts/update/:id
no-records-message: backend::lang.list.no_record... | Switch list link from preview to update | Switch list link from preview to update
| YAML | mit | rainlab/blog-plugin,vojtasvoboda/blog-plugin,vojtasvoboda/blog-plugin,vojtasvoboda/blog-plugin,rainlab/blog-plugin,rainlab/blog-plugin |
004ac64c90e64db5c6252b5f41f0ddef7e4f95f7 | roles/mongodb/tasks/mongodb_yum.yaml | roles/mongodb/tasks/mongodb_yum.yaml | ---
- include: mongodb_rhel_dependencies.yaml
- name: yum | Add mongodb key
become: yes
rpm_key:
key: https://www.mongodb.org/static/pgp/server-3.4.asc
state: present
tags: [databases, mongodb]
- name: yum | Add mongodb repository
become: yes
yum_repository:
name: mongodb-org-3.4
description... | ---
- include: mongodb_rhel_dependencies.yaml
- name: yum | Add mongodb key
become: yes
rpm_key:
key: https://www.mongodb.org/static/pgp/server-3.4.asc
state: present
tags: [databases, mongodb]
- name: yum | Add mongodb repository
become: yes
yum_repository:
name: mongodb-org-3.4
description... | Fix the typo in state | Fix the typo in state
| YAML | apache-2.0 | armab/ansible-st2,StackStorm/ansible-st2 |
72c0790e33084c8c7d9c8d65d783b6e027ff4a6d | roles/security_errata/tasks/main.yml | roles/security_errata/tasks/main.yml | ---
- name: update apt index
apt: update_cache=yes cache_valid_time=3600
- name: update SSL
apt: pkg={{ item }} state=latest
with_items:
- libssl1.0.0
- openssl
notify: reload haproxy
- include: CVE-2015-0235.yml
tags: CVE-2015-0235
| ---
- name: update apt index
apt: update_cache=yes cache_valid_time=3600
- name: update SSL
apt: pkg={{ item }} state=latest
with_items:
- libssl1.0.0
- openssl
notify: reload haproxy
- name: update python modules for true ssl context
pip: name={{ item }} state=latest
with_items:
- pyopenssl
... | Add a true SSL context for python clients/requests | Add a true SSL context for python clients/requests
Anything that uses requests > 2.5.3 will complain if there is no true
SSL context capability on the host. Add these 3 python modules for
making such a context available.
| YAML | mit | blueboxgroup/ursula,fancyhe/ursula,rongzhus/ursula,panxia6679/ursula,panxia6679/ursula,knandya/ursula,pgraziano/ursula,nirajdp76/ursula,msambol/ursula,aldevigi/ursula,panxia6679/ursula,andrewrothstein/ursula,edtubillara/ursula,mjbrewer/ursula,MaheshIBM/ursula,mjbrewer/ursula,rongzhus/ursula,andrewrothstein/ursula,rongz... |
731223c9d290b36e7990bf00362c44f6bd0dc6dc | roles/simple-buildout/tasks/main.yml | roles/simple-buildout/tasks/main.yml | ---
- name: Make sure we have an updated copy of the repository
become_user: "{{ target_user }}"
git:
repo: "{{ repo_url }}"
dest: "{{ target_dir }}"
update: yes
version: "{{ repo_branch }}"
accept_hostkey: True
register: repo_state
- name: Perform build
become_user: "{{ target_user }}"
c... | ---
- name: Make sure we have an updated copy of the repository
become_user: "{{ target_user }}"
git:
repo: "{{ repo_url }}"
dest: "{{ target_dir }}"
update: yes
version: "{{ repo_branch }}"
accept_hostkey: True
register: repo_state
- name: Perform build
become_user: "{{ target_user }}"
c... | Use the `|failed` filter instead of comparing rc | Use the `|failed` filter instead of comparing rc
| YAML | mit | djmitche/buildbot-infra,seankelly/buildbot-infra,seankelly/buildbot-infra,djmitche/buildbot-infra,seankelly/buildbot-infra,buildbot/buildbot-infra,buildbot/buildbot-infra,buildbot/buildbot-infra,djmitche/buildbot-infra |
5392b779185a43066b26f5f7033bd08216bc4e62 | tasks/Debian.yml | tasks/Debian.yml | ---
# tasks file for docker_toolbox(On Debian family)
- name: Download install script for Docker Engine
get_url: url="https://get.docker.com" dest="{{ docker_installscript_tmppath }}"
register: dl_result
- name: Install Docker Engine
shell: "sh {{ docker_installscript_tmppath }}"
become: yes
when: dl_result.c... | ---
# tasks file for docker_toolbox(On Debian family)
- name: Add key for Docker repository
apt_key: url=https://get.docker.com/gpg
become: yes
- name: Download install script for Docker Engine
get_url: url="https://get.docker.com" dest="{{ docker_installscript_tmppath }}"
register: dl_result
- name: Install Do... | Add gpg key for Docker site maunually. | Add gpg key for Docker site maunually.
| YAML | mit | FGtatsuro/ansible-docker-toolbox |
a868c52f3f9e2a05336f2bf16e9c9882fdfcf73c | roles/ceph-restapi/meta/main.yml | roles/ceph-restapi/meta/main.yml | ---
galaxy_info:
author: Sébastien Han
description: Installs Ceph RESTAPI
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
categories:
- system
dependencies: []
| ---
galaxy_info:
author: Sébastien Han
description: Installs Ceph RESTAPI
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
- name: opensuse
versions:
- 42.3
categories:
- system
dependenci... | Add support for openSUSE Leap distributions | ceph-restapi: Add support for openSUSE Leap distributions
Add support for openSUSE Leap distributions.
Signed-off-by: Markos Chandras <33d8b43ece1558bd62b361ce5e954c5d9a97a7a2@suse.de>
| YAML | apache-2.0 | font/ceph-ansible,fgal/ceph-ansible,ceph/ceph-ansible,font/ceph-ansible,travmi/ceph-ansible,fgal/ceph-ansible,travmi/ceph-ansible,ceph/ceph-ansible |
690b89cf832fea2c710ed2aef692b8786ca7d30d | roles/ssh-with-ca/tasks/main.yml | roles/ssh-with-ca/tasks/main.yml | ---
- name: Copy CA SSH key to server.
copy:
src: ca.pub
dest: /etc/ssh
group: root
owner: root
mode: 644
- name: Harden /etc/ssh/sshd_config
template:
src: sshd_config_template.j2
dest: /etc/ssh/sshd_config
owner: root
group: root
mode: 0644
notify:
- restart sshd
| ---
- name: Copy CA SSH key to server.
sudo: yes
copy:
src: ca.pub
dest: /etc/ssh
group: root
owner: root
mode: 644
- name: Harden /etc/ssh/sshd_config
sudo: yes
template:
src: sshd_config_template.j2
dest: /etc/ssh/sshd_config
owner: root
group: root
mode: 0644
noti... | Add sudo to copy CA key role. | Add sudo to copy CA key role.
Without sudo a repeated play breaks here with permission errors.
| YAML | bsd-2-clause | Danwakefield/ansible-playbooks,Danwakefield/ansible-playbooks,Danwakefield/ansible-playbooks |
6cd4ee918db6900a6841dff5eaa045e7af9cd55e | data/transition-sites/phe_noo.yml | data/transition-sites/phe_noo.yml | ---
site: phe_noo
whitehall_slug: public-health-england
homepage: https://www.gov.uk/government/organisations/public-health-england
homepage_furl: www.gov.uk/phe
tna_timestamp: 20170110165405
host: www.noo.org.uk
aliases:
- noo.org.uk
| ---
site: phe_noo
whitehall_slug: public-health-england
homepage: https://www.gov.uk/guidance/phe-data-and-analysis-tools#obesity-diet-and-physical-activity
homepage_furl: www.gov.uk/phe
tna_timestamp: 20170110165405
host: www.noo.org.uk
aliases:
- noo.org.uk
| Update Most appropriate single URL for noo.org.uk | Update Most appropriate single URL for noo.org.uk
Details here: https://govuk.zendesk.com/agent/tickets/2158525
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
2ba29cea25133be6e2e15d842f35bb9c3b9cb093 | spring-cloud-launcher/spring-cloud-launcher-dataflow/src/main/resources/application.yml | spring-cloud-launcher/spring-cloud-launcher-dataflow/src/main/resources/application.yml | server:
port: 9393
eureka:
instance:
status-page-url-path: /dashboard #allows you to click on the link in eureka dashboard
info:
artifactId: "@project.artifactId@"
description: "@project.description@"
version: "@project.version@"
security:
basic:
enabled: false
management:
context-path: /admin... | server:
port: 9393
eureka:
instance:
status-page-url-path: /dashboard #allows you to click on the link in eureka dashboard
info:
artifactId: "@project.artifactId@"
description: "@project.description@"
version: "@project.version@"
security:
basic:
enabled: false
management:
context-path: /admin... | Use smaller memory for dataflow apps by default | Use smaller memory for dataflow apps by default
(Requires a change in spring-cloud-deployer)
| YAML | apache-2.0 | spring-cloud/spring-cloud-cli,spring-cloud/spring-cloud-cli |
d82f2d0eb2a6c182bfa50992dddbb0824290199f | changelogs/unreleased/2629-show-public-rss-feeds-to-anonymous-users.yml | changelogs/unreleased/2629-show-public-rss-feeds-to-anonymous-users.yml | ---
title: Show public RSS feeds to anonymous users
merge_request:
author:
| ---
title: Show public RSS feeds to anonymous users
merge_request: 9596
author: Michael Kozono
| Add MR and author to changelog | Add MR and author to changelog
| YAML | mit | dplarson/gitlabhq,LUMC/gitlabhq,darkrasid/gitlabhq,htve/GitlabForChinese,dreampet/gitlab,darkrasid/gitlabhq,stoplightio/gitlabhq,dreampet/gitlab,mmkassem/gitlabhq,darkrasid/gitlabhq,t-zuehlsdorff/gitlabhq,stoplightio/gitlabhq,dplarson/gitlabhq,iiet/iiet-git,darkrasid/gitlabhq,mmkassem/gitlabhq,iiet/iiet-git,jirutka/git... |
619cd453f2bfec675da67e80856ebeca8db7ab3d | config/core.entity_view_display.node.page.default.yml | config/core.entity_view_display.node.page.default.yml | uuid: 9e02ff59-2ac8-4571-8017-e3db213dcab8
langcode: en
status: true
dependencies:
config:
- field.field.node.page.body
- node.type.page
module:
- text
- user
_core:
default_config_hash: g1S3_GLaxq4l3I9RIca5Mlz02MxI2KmOquZpHw59akM
id: node.page.default
targetEntityType: node
bundle: page
mode: def... | uuid: 9e02ff59-2ac8-4571-8017-e3db213dcab8
langcode: en
status: true
dependencies:
config:
- field.field.node.page.body
- node.type.page
module:
- text
- user
_core:
default_config_hash: g1S3_GLaxq4l3I9RIca5Mlz02MxI2KmOquZpHw59akM
id: node.page.default
targetEntityType: node
bundle: page
mode: def... | Clean export of basic page view mode. | Clean export of basic page view mode.
| YAML | mit | ISO-tech/sw-d8,ISO-tech/sw-d8,ISO-tech/sw-d8,ISO-tech/sw-d8 |
5b25561349284ac5064c67f89754edc84772fece | config/openxpki/config.d/realm/ca-one/auth/stack.yaml | config/openxpki/config.d/realm/ca-one/auth/stack.yaml | Anonymous:
description: I18N_OPENXPKI_CONFIG_AUTH_STACK_DESCRIPTION_ANONYMOUS
handler: Anonymous
User:
description: I18N_OPENXPKI_CONFIG_AUTH_STACK_DESCRIPTION_USER
handler: User NoAuth
Operator:
description: I18N_OPENXPKI_CONFIG_AUTH_STACK_DESCRIPTION_OPERATOR
handler: Operator Password
Exte... | Anonymous:
description: I18N_OPENXPKI_CONFIG_AUTH_STACK_DESCRIPTION_ANONYMOUS
handler: Anonymous
User:
description: I18N_OPENXPKI_CONFIG_AUTH_STACK_DESCRIPTION_USER
handler: User NoAuth
Operator:
description: I18N_OPENXPKI_CONFIG_AUTH_STACK_DESCRIPTION_OPERATOR
handler: Operator Password
#Ext... | Remove external auth from default config | Remove external auth from default config
| YAML | apache-2.0 | openxpki/openxpki,openxpki/openxpki,stefanomarty/openxpki,aleibl/openxpki,stefanomarty/openxpki,aleibl/openxpki,aleibl/openxpki,stefanomarty/openxpki,openxpki/openxpki,aleibl/openxpki,oliwel/openxpki,oliwel/openxpki,aleibl/openxpki,stefanomarty/openxpki,oliwel/openxpki,oliwel/openxpki,stefanomarty/openxpki,stefanomarty... |
2ab919b65cba55026df1baaa3dec6561e03f398f | deployment/post-install-tasks.yml | deployment/post-install-tasks.yml | # Copyright (C) 2022 Damien Dart, <damiendart@pobox.com>.
# This file is distributed under the MIT licence. For more information,
# please refer to the accompanying "LICENCE" file.
---
- name: 'Ensure Git-repository-updating cron job exists'
ansible.builtin.cron:
cron_file: '{{ __release_crontab }}'
job: 'ni... | # Copyright (C) 2022 Damien Dart, <damiendart@pobox.com>.
# This file is distributed under the MIT licence. For more information,
# please refer to the accompanying "LICENCE" file.
---
- name: 'Ensure Git-repository-updating cron job exists'
ansible.builtin.cron:
cron_file: '{{ __release_crontab }}'
hour: '0... | Reduce frequency of Git-repository-updating job. | Reduce frequency of Git-repository-updating job.
| YAML | mit | damiendart/robotinaponcho,damiendart/robotinaponcho,damiendart/robotinaponcho |
49b85e228682757d1842d4a669018ace9f2d6f00 | roles/wordpress-install/tasks/directories.yml | roles/wordpress-install/tasks/directories.yml | ---
- name: Create web root of sites
file:
path: "{{ www_root }}/{{ item.key }}/{{ item.value.current_path | default('current') }}/web"
owner: "{{ web_user }}"
group: "{{ web_group }}"
mode: '0755'
state: directory
with_dict: "{{ wordpress_sites }}"
- name: Create shared folder of sites
file:... | ---
- name: Create web root of sites
file:
path: "{{ www_root }}/{{ item.key }}/{{ item.value.current_path | default('current') }}/web"
owner: "{{ web_user }}"
group: "{{ web_group }}"
mode: '0755'
state: directory
with_dict: "{{ wordpress_sites }}"
- name: Create shared folder of sites
file:... | Remove explicit permission for site directory | Remove explicit permission for site directory
Fixes #1311
The `mode` option was set in https://github.com/roots/trellis/pull/1270
for linting purposes. However, this can result in the permissions
changing on local site files causing them to appear as changed in Git.
Since this directory is guaranteed to exist, we do... | YAML | mit | newtonne/trellis,roots/trellis,newtonne/trellis,roots/bedrock-ansible,pressbooks/trellis,roots/bedrock-ansible,newtonne/trellis,roots/trellis,pressbooks/trellis |
81316c28673f1f19acbd369d0737bc8c8e3e1733 | software/wmla121_ansible/wmla_license_check_and_install_to_root.yml | software/wmla121_ansible/wmla_license_check_and_install_to_root.yml | ---
- name: Accept the wmla license
shell: "$EGO_TOP/ibm-wmla/1.2.1/bin/accept-ibm-wmla-license.sh"
become: yes
environment:
EGO_TOP: "{{ remote_spectrum_computing_install_dir }}"
IBM_WMLA_LICENSE_ACCEPT: "yes"
args:
executable: /bin/bash
- name: Check that the status.dat file exists
stat:
pa... | ---
- name: Accept the wmla license
shell: "$EGO_TOP/ibm-wmla/1.2.1/bin/accept-ibm-wmla-license.sh"
become: yes
environment:
EGO_TOP: "{{ remote_spectrum_computing_install_dir }}"
IBM_WMLA_LICENSE_ACCEPT: "yes"
args:
executable: /bin/bash
- name: Check that the status.dat file exists
stat:
pa... | Update eval license check path | fix: Update eval license check path | YAML | apache-2.0 | open-power-ref-design-toolkit/cluster-genesis,open-power-ref-design-toolkit/cluster-genesis |
78814a54196f995c23b1385887ae9d61e236edfd | packages/ne/network-multicast.yaml | packages/ne/network-multicast.yaml | homepage: ''
changelog-type: ''
hash: 43e478cfd6a0ead42aa68d4bbf9e18f02ee42adb77d6281ac2a7f1b8a5e3799e
test-bench-deps: {}
maintainer: Audrey Tang <audreyt@audreyt.org>
synopsis: Simple multicast library
changelog: ''
basic-deps:
base: ! '>=4 && <5'
network: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4... | homepage: ''
changelog-type: ''
hash: efce1e2829635ba97bd543e57a315aaeb3aa729ed0301e8763f63187125ccec8
test-bench-deps: {}
maintainer: Marco Zocca
synopsis: Simple multicast library
changelog: ''
basic-deps:
base: ! '>=4 && <5'
network: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.6'
... | Update from Hackage at 2016-10-14T11:42:42+00:00 | Update from Hackage at 2016-10-14T11:42:42+00:00
| YAML | mit | commercialhaskell/all-cabal-metadata |
90ed5c046b7019f70b93c86c9ca2168af3791a39 | src/Listabierta/Bundle/MunicipalesBundle/Resources/config/doctrine/PhoneVerified.orm.yml | src/Listabierta/Bundle/MunicipalesBundle/Resources/config/doctrine/PhoneVerified.orm.yml | Listabierta\Bundle\MunicipalesBundle\Entity\PhoneVerified:
type: entity
table: phone_verified
repositoryClass: Listabierta\Bundle\MunicipalesBundle\Entity\PhoneVerifiedRepository
id:
id:
type: integer
id: true
generator:
strategy: AUTO
fiel... | Listabierta\Bundle\MunicipalesBundle\Entity\PhoneVerified:
type: entity
table: phone_verified
repositoryClass: Listabierta\Bundle\MunicipalesBundle\Entity\PhoneVerifiedRepository
id:
id:
type: integer
id: true
generator:
strategy: AUTO
fiel... | Add new field for store phone verified mode | Add new field for store phone verified mode
| YAML | agpl-3.0 | listabierta/census-ahoraencomun,listabierta/census-ahoraencomun,listabierta/census-ahoraencomun,listabierta/census-ahoraencomun |
a8fa7b8cabec64c3426757d9e86b501215716983 | aws-autoscaling/meta.yaml | aws-autoscaling/meta.yaml | { "display_name":"AWS Auto Scaling",
"description": "SignalFx's integration with AWS Auto Scaling.",
"project_url": "https://github.com/signalfx/integrations/tree/master/aws-autoscaling",
"code": "https://aws.amazon.com/autoscaling/",
"featured": false,
"logo_large": "integration_awsautoscaling.png",
"logo_... | { "display_name":"AWS Auto Scaling",
"description": "SignalFx's integration with AWS Auto Scaling.",
"project_url": "https://github.com/signalfx/integrations/tree/master/aws-autoscaling",
"code": "https://aws.amazon.com/autoscaling/",
"featured": false,
"logo_large": "integration_awsautoscaling.png",
"logo_... | Fix aws autoscaling data signature | Fix aws autoscaling data signature
The aws autoscaling data signature was incorrectly `AWS/Autoscaling` when it should be `AWS/AutoScaling` | YAML | apache-2.0 | signalfx/integrations,signalfx/integrations |
76d2aa2ff333840c2f95fc606b41d0c77c928b23 | vars/staging.yml | vars/staging.yml | ---
domain: staging.marketplace.team
maintenance_mode: live
instances: 2
api:
memory: 2GB
router:
rate_limiting_enabled: disabled
buyer-frontend:
services:
- digitalmarketplace_prometheus
- digitalmarketplace_splunk
- digitalmarketplace_redis
admin-frontend:
services:
- digitalmarketplace_p... | ---
domain: staging.marketplace.team
maintenance_mode: live
instances: 2
api:
memory: 2GB
router:
rate_limiting_enabled: enabled
buyer-frontend:
services:
- digitalmarketplace_prometheus
- digitalmarketplace_splunk
- digitalmarketplace_redis
admin-frontend:
services:
- digitalmarketplace_pr... | Revert "temporarily disable rate limiting" | Revert "temporarily disable rate limiting"
| YAML | mit | alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws |
89eac08a0412c287a595431be73d2064397a595b | hub/requirements.yaml | hub/requirements.yaml | dependencies:
- name: jupyterhub
# REMEMBER TO CHANGE BASE IMAGE OF images/hub/ WHEN CHANGING THIS
version: v0.0.1+3175.434f0d3
repository: file://../zero-to-jupyterhub-k8s/jupyterhub
| dependencies:
- name: jupyterhub
# REMEMBER TO CHANGE BASE IMAGE OF images/hub/ WHEN CHANGING THIS
version: v0.0.1-n3175.h434f0d3
repository: file://../zero-to-jupyterhub-k8s/jupyterhub
| Use z2jh chart version provided by released version of chartpress | Use z2jh chart version provided by released version of chartpress
Rather than the version provided by my local checkout of chartpress
| YAML | bsd-3-clause | berkeley-dsep-infra/datahub,ryanlovett/datahub,berkeley-dsep-infra/datahub,ryanlovett/datahub,berkeley-dsep-infra/datahub,ryanlovett/datahub |
7bdc635bfc62afeac16fe69db3a1609ae7d5af73 | packages/we/websockets-simple.yaml | packages/we/websockets-simple.yaml | homepage: https://github.com/athanclark/websockets-simple#readme
changelog-type: ''
hash: eb0372ab61a2172ca027aa262225dc20a50ca7b7684c8b468d9440b8894c7b72
test-bench-deps: {}
maintainer: athan.clark@gmail.com
synopsis: Simpler interface to the websockets api
changelog: ''
basic-deps:
exceptions: -any
bytestring: -a... | homepage: https://github.com/athanclark/websockets-simple#readme
changelog-type: ''
hash: 2153ce4f615008b178e16556a1c44ee338e8a5c1e942f8dc81cb5f785eefdcd0
test-bench-deps: {}
maintainer: athan.clark@gmail.com
synopsis: Simpler interface to the websockets api
changelog: ''
basic-deps:
exceptions: -any
bytestring: -a... | Update from Hackage at 2017-05-10T19:35:35Z | Update from Hackage at 2017-05-10T19:35:35Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0daf5d2af52af12bce93e3218e58c7ec31ada94e | data/building-hours/1-1-cage.yaml | data/building-hours/1-1-cage.yaml | name: The Cage
image: cage
category: Food
schedule:
- title: Kitchen
notes: The kitchen stops cooking at 8 p.m.
hours:
- {days: [Mo, Tu, We, Th, Fr], from: '7:30am', to: '8:00pm'}
- {days: [Sa, Su], from: '9:00am', to: '8:00pm'}
- title: Late Night
hours:
- {days: [Mo, Tu, We, Th], f... | name: The Cage
image: cage
category: Food
schedule:
- title: Kitchen
notes: The kitchen stops cooking at 8 p.m.
hours:
- {days: [Mo, Tu, We, Th, Fr], from: '7:30am', to: '8:00pm'}
- {days: [Sa, Su], from: '9:00am', to: '8:00pm'}
- title: Late Night
hours:
- {days: [Mo, Tu, We, Th], f... | Remove unused Cage break schedule | hours: Remove unused Cage break schedule
| YAML | agpl-3.0 | StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native |
5516e1a6a630b1e4c55036fb0f4b5c969c696014 | .appveyor.yml | .appveyor.yml | image: Visual Studio 2019
# Adds "+build.XXX" to MinVer's build metadata
environment:
MINVERBUILDMETADATA: build.%APPVEYOR_BUILD_NUMBER%
# AppVeyor's displayed version, will get updated by MSBuild target
version: '{build}'
before_build:
- dotnet restore
build_script:
- dotnet build --no-restore --configuration Re... | image: Visual Studio 2022
# Adds "+build.XXX" to MinVer's build metadata
environment:
MINVERBUILDMETADATA: build.%APPVEYOR_BUILD_NUMBER%
# AppVeyor's displayed version, will get updated by MSBuild target
version: '{build}'
before_build:
- dotnet restore
build_script:
- dotnet build --no-restore --configuration Re... | Update AppVeyor to VS2022 image | Update AppVeyor to VS2022 image
| YAML | mit | tompazourek/Rationals |
816f5ca6687892e97b3747c63fc654ab79f11ca7 | playbooks/base-test/post-logs.yaml | playbooks/base-test/post-logs.yaml | - hosts: localhost
roles:
- role: add-fileserver
fileserver: "{{ site_logs }}"
- emit-ara-html
post_tasks:
- name: Copy inventory to logs dir
copy:
src: "{{ inventory_file }}"
dest: "{{ zuul.executor.log_root }}"
- hosts: "{{ site_logs.fqdn }}"
roles:
- upload-logs
... | - hosts: localhost
roles:
- role: add-fileserver
fileserver: "{{ site_logs }}"
- emit-ara-html
post_tasks:
- name: Copy inventory to logs dir
copy:
src: "{{ inventory_file }}"
dest: "{{ zuul.executor.log_root }}"
- hosts: "{{ site_logs.fqdn }}"
roles:
- upload-logs
... | Add a missing post_tasks for the log notification | Add a missing post_tasks for the log notification
Change-Id: I19818aa91a6d7d04a1bb2881b5578d33363cf23e
| YAML | apache-2.0 | openstack-infra/project-config,openstack-infra/project-config |
ac8f960f732ace51d9e9e4482fa7cd22a7f3d9cf | docker-compose.yml | docker-compose.yml | # This is a work in progress
# web:
# build: .
# command: bundle exec rails s -p 3000 -b '0.0.0.0'
# volumes:
# - .:/morph
# ports:
# - "3000:3000"
# links:
# - db
# TODO: Add data volume
elasticsearch:
image: elasticsearch:1.6.0
ports:
- "9200:9200"
# This is a work in progress
# TODO: ... | # This is a work in progress
# web:
# build: .
# command: bundle exec rails s -p 3000 -b '0.0.0.0'
# volumes:
# - .:/morph
# ports:
# - "3000:3000"
# links:
# - db
# TODO: Add data volume
elasticsearch:
# We're using elasticsearch 7 (rather than the current latest
# 8.3.3) is because we don't... | Upgrade dev elastic to 7.17.5 | Upgrade dev elastic to 7.17.5
| YAML | agpl-3.0 | openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph |
89727f9f2cdd0abc2cc44229f12a070f540f0d6c | docker-compose.yml | docker-compose.yml | version: '3'
services:
mongo:
image: mongo:latest
volumes:
- /data/db
web:
build: .
ports:
- 8080:8080
deploy:
mode: replicated
replicas: 6
environment:
NODE_ENV: production
PORT: 8080
SSL: 'true'
URL: subr.pw
depends_on:
- mongo
... | version: '3'
services:
mongo:
image: mongo:latest
volumes:
- /data/db
web:
image: subjectrefresh/shortener:latest
ports:
- 8080:8080
deploy:
mode: replicated
replicas: 6
environment:
NODE_ENV: production
PORT: 8080
SSL: 'true'
URL: subr.pw
... | Move to automated build for production image | Move to automated build for production image
| YAML | isc | SubjectRefresh/shortener,SubjectRefresh/shortener,SubjectRefresh/shortener |
769db4c46742a9c8bd8e43c40d64081ce0e22299 | docker-compose.yml | docker-compose.yml | services:
jekyll:
container_name: jekyll
image: bretfisher/jekyll-serve
command: jekyll serve --watch --force_polling
volumes:
- .:/site
restart: unless-stopped
environment:
JEKYLL_ENV: development
ports:
- '4000:4000'
| services:
jekyll:
container_name: jekyll
image: bretfisher/jekyll-serve
command: bundle exec jekyll serve --watch --force_polling
volumes:
- .:/site
restart: unless-stopped
environment:
JEKYLL_ENV: development
ports:
- '4000:4000'
| Prepend command with bundle exec | Prepend command with bundle exec
| YAML | mit | frippz/frippz.se,frippz/frippz.se,frippz/frippz.se |
159cc6c1b7f189446b3f42e76ad8e84336cd0544 | docker-compose.yml | docker-compose.yml | elasticsearch:
image: elasticsearch:latest
command: elasticsearch -Des.network.host=0.0.0.0
ports:
- "9200:9200"
- "9300:9300"
logstash:
image: logstash:latest
command: logstash -f /etc/logstash/conf.d/logstash.conf
volumes:
- ./logstash/config:/etc/logstash/conf.d
ports:
- "5000:5000"
l... | elasticsearch:
image: elasticsearch:latest
command: elasticsearch -Des.network.host=0.0.0.0
ports:
- "9200:9200"
- "9300:9300"
logstash:
image: logstash:latest
command: logstash -f /etc/logstash/conf.d/logstash.conf
volumes:
- ./logstash/config:/etc/logstash/conf.d
ports:
- "5000:5000"
l... | Fix error "[9] System error: not a directory" | Fix error "[9] System error: not a directory"
When starting the stack `with docker-compose up`, it gives out the error:
```
ERROR: Cannot start container e032695b38cdcd1c72597004f2369a7127b8233c9ecc2320c3b2bbd10209654b: [9] System error: not a directory
``` | YAML | mit | tijsg/NGINX-Modular,deviantony/docker-elk,bkconrad/docker-elk,laidig/docker-elk,binqsoft/NeXlog2elk,binqsoft/NeXlog2elk,newcontext/so-mvp-docker-elk,wealthsimple/docker-elk,vladoatanasov/docker-elk,flyingelephantlab/docker-belk,dkirrane/docker-elk,dkirrane/docker-elk,binqsoft/NeXlog2elk,laidig/docker-elk,synctree/cloud... |
9a8567c2f18b1ae61dc6636d0c707b017ef031fe | docker-compose.yml | docker-compose.yml | version: '2'
services:
db:
image: mariadb:10.2
restart: always
environment:
- MYSQL_DATABASE=mozillians
- MYSQL_USER=mozillians
- MYSQL_PASSWORD=mozillians
- MYSQL_ROOT_PASSWORD=root
volumes:
- mariadb_volume:/var/lib/mysql
- ./docker/files/mariadb.cnf:/etc/mysql/co... | version: '2'
services:
db:
image: mariadb:10.2
restart: always
environment:
- MYSQL_DATABASE=mozillians
- MYSQL_USER=mozillians
- MYSQL_PASSWORD=mozillians
- MYSQL_ROOT_PASSWORD=root
volumes:
- mariadb_volume:/var/lib/mysql
- ./docker/files/mariadb.cnf:/etc/mysql/co... | Allow attaching to the web container for debugging. | Allow attaching to the web container for debugging.
| YAML | bsd-3-clause | mozilla/mozillians,mozilla/mozillians,akatsoulas/mozillians,akatsoulas/mozillians,johngian/mozillians,akatsoulas/mozillians,johngian/mozillians,mozilla/mozillians,akatsoulas/mozillians,johngian/mozillians,mozilla/mozillians,johngian/mozillians |
86bbae35b0a23113e7f4251ecb0f63ec4c3fec41 | cloudmesh_spark/ansible/spark.yaml | cloudmesh_spark/ansible/spark.yaml | ---
- hosts: spark-cluster
remote_user: ubuntu
sudo: yes
tasks:
- name: Add Java repository
apt_repository: repo=ppa:webupd8team/java state=present
- name: Automatically select the Oracle License
shell: echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections
- name... | ---
- hosts: spark-cluster
remote_user: ubuntu
sudo: yes
tasks:
- name: Add Java repository
apt_repository: repo=ppa:webupd8team/java state=present
- name: Automatically select the Oracle License
shell: echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections
- name... | Change to full path for hosts. | Change to full path for hosts.
| YAML | apache-2.0 | futuresystems/465-project-mckibbenc-rebecca-appelbaum-imthinhvu,futuresystems-courses/465-project-mckibbenc-rebecca-appelbaum-imthinhvu,futuresystems/465-project-mckibbenc-rebecca-appelbaum-imthinhvu,futuresystems-courses/465-project-mckibbenc-rebecca-appelbaum-imthinhvu |
eaf7bfdf8c37b65c6b0393fdc2cc65e2f051e54c | tools/cloud-build/daily-tests/ansible_playbooks/test-monitoring.yml | tools/cloud-build/daily-tests/ansible_playbooks/test-monitoring.yml | # Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | Increase startup-script completion timeout to 10 minutes | Increase startup-script completion timeout to 10 minutes
| YAML | apache-2.0 | GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit |
f70d931b88829585da7915b11bd4775297b6dac9 | changelogs/unreleased/adjust-group-level-analytics-to-accept-multiple-ids.yml | changelogs/unreleased/adjust-group-level-analytics-to-accept-multiple-ids.yml | ---
title: Adjust group level analytics to accept multiple ids
merge_request: 30468
author:
type: added
| ---
title: Adjust group level analytics to accept multiple ids
merge_request: 30744
author:
type: added
| Fix changelog merge request number | Fix changelog merge request number
| YAML | mit | stoplightio/gitlabhq,stoplightio/gitlabhq,mmkassem/gitlabhq,mmkassem/gitlabhq,stoplightio/gitlabhq,mmkassem/gitlabhq,stoplightio/gitlabhq,mmkassem/gitlabhq |
f483eab6a640c5ba399f174aaef146ff125f7cfb | .eslintrc.yml | .eslintrc.yml | extends:
- airbnb
- plugin:import-order/recommended
env:
browser: true
webextensions: true
jquery: true
parser: babel-eslint
plugins:
- react
- import-order
globals:
_: true
debug: true
__ENV__: true
__VENDOR__: true
LIVERELOAD: true
rules:
arrow-body-style: off
no-console: off
no-param-re... | extends:
- airbnb
- plugin:import-order/recommended
env:
browser: true
webextensions: true
jquery: true
parser: babel-eslint
plugins:
- react
- import-order
globals:
_: true
debug: true
__ENV__: true
__VENDOR__: true
LIVERELOAD: true
rules:
arrow-body-style: off
no-console: off
no-param-re... | Stop checking no-else-return by eslint | Stop checking no-else-return by eslint
| YAML | mit | io-monad/novelous-extension,io-monad/novelous-extension |
06fbded0c7a3d7a4110d8c670c8e14702c659cd9 | fig.yml | fig.yml | farley:
image: farley-xmpp
volumes:
- /home/vagrant/.farley:/root/.farley
- /tmp:/var/farley/incoming
- /tmp:/var/farley/www
| farley:
image: farley-xmpp
volumes:
- /home/vagrant/.farley:/root/.farley
- /var/tmp:/var/farley/incoming
- /tmp:/var/farley/www
| Use a separate path for incoming than for www | Use a separate path for incoming than for www
| YAML | apache-2.0 | loganbruns/farley,loganbruns/farley |
ba16cc30873440c66e1f222b13a8eb4a85d2870c | config/packages/prod/monolog.yaml | config/packages/prod/monolog.yaml | monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: grouped
excluded_404s:
# regex: exclude all 404 errors from the logs
- ^/
grouped:
type: group
members: [nested, buffere... | monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: grouped
excluded_http_codes: [401, 403, 404, 405]
grouped:
type: group
members: [nested, buffered]
nested:
type: stream
... | Remove 401, 403, 404 & 405 from mail error | Remove 401, 403, 404 & 405 from mail error
Fix #320
| YAML | agpl-3.0 | n7consulting/Incipio,n7consulting/Incipio,n7consulting/Incipio |
34e7e6af08f7eaea440a2c2a2aa692be599a5a1d | mkdocs.yml | mkdocs.yml | site_name: Forge Documentation
pages:
- [index.md, Home]
- [styleguide.md, Style Guide]
- [gettingstarted/index.md, Getting Started, Home]
- [gettingstarted/structuring.md, Getting Started, Structuring Your Mod]
- [networking/index.md, Networking, Home]
- [networking/overview.md, Networking, Overview]
- [... | site_name: Forge Documentation
pages:
- [index.md, Home]
- [styleguide.md, Style Guide]
- [gettingstarted/index.md, Getting Started, Home]
- [gettingstarted/structuring.md, Getting Started, Structuring Your Mod]
- [networking/index.md, Networking, Home]
- [networking/overview.md, Networking, Overview]
- [... | Add versioning file to index | Add versioning file to index
| YAML | mit | PaleoCrafter/Documentation,tterrag1098/Documentation,MinecraftForge/Documentation |
45ec5380cc6711f1e3ce593dd4bb325ddbe4a6fa | .readthedocs.yaml | .readthedocs.yaml | version: 2
build:
os: "ubuntu-20.04"
tools:
python: "3.10"
jobs:
post_checkout:
# Download and uncompress the binary: https://git-lfs.github.com/
- wget https://github.com/git-lfs/git-lfs/releases/download/v3.2.0/git-lfs-linux-amd64-v3.2.0.tar.gz
- tar xvfz git-lfs-linux-amd64-v3.2.0.tar... | version: 2
build:
os: "ubuntu-20.04"
tools:
python: "3.10"
jobs:
post_checkout:
# Download and uncompress the binary: https://git-lfs.github.com/
- wget https://github.com/git-lfs/git-lfs/releases/download/v3.2.0/git-lfs-linux-amd64-v3.2.0.tar.gz
- tar xvfz git-lfs-linux-amd64-v3.2.0.tar... | Debug docs build with git lfs | Debug docs build with git lfs
| YAML | bsd-2-clause | tethysplatform/tethys,tethysplatform/tethys,tethysplatform/tethys,tethysplatform/tethys |
325fbee6a41a3ed9e02318312bd4227dc89d63f0 | docker-compose.yml | docker-compose.yml | db:
image: mysql
environment:
MYSQL_ROOT_PASSWORD: ting
MYSQL_DATABASE: ting
api:
build: .
dockerfile: Dockerfile-api
command: sh -c "python manage.py migrate &&
python manage.py runserver 0.0.0.0:8000"
links:
- db
realtime:
image: node
volumes:
... | db:
image: mysql
environment:
MYSQL_ROOT_PASSWORD: ting
MYSQL_DATABASE: ting
api:
build: .
dockerfile: Dockerfile-api
command: sh -c "python manage.py migrate &&
python manage.py runserver 0.0.0.0:8000"
links:
- db
realtime:
image: node
volumes:
... | Use JOBS=MAX as suggested by @petrosagg | Use JOBS=MAX as suggested by @petrosagg
| YAML | mit | dionyziz/ting,VitSalis/ting,odyvarv/ting-1,odyvarv/ting-1,gtklocker/ting,VitSalis/ting,gtklocker/ting,sirodoht/ting,mbalamat/ting,mbalamat/ting,dionyziz/ting,sirodoht/ting,dionyziz/ting,gtklocker/ting,sirodoht/ting,mbalamat/ting,VitSalis/ting,mbalamat/ting,dionyziz/ting,odyvarv/ting-1,VitSalis/ting,sirodoht/ting,gtkloc... |
3c5ebf048e16f70d0e57f365779ea4999cbb7a68 | docker-compose.yml | docker-compose.yml | # Setup a elastic search server & kibana for testing mappings or inspecting production images.
#
# Usage
# =====
# 1. $ mkdir esdata
# 2. Extract production data to esdata/ if you want
# 3. $ docker-compose up
#
version: '2'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.1.0
... | # Setup a elastic search server & kibana for testing mappings or inspecting production images.
#
# Usage
# =====
# 1. $ mkdir esdata
# 2. Extract production data to esdata/ if you want
# 3. $ docker-compose up
#
version: '2'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.1.0
... | Remove unused elasticsearch regex support | Remove unused elasticsearch regex support
| YAML | mit | MrOrz/rumors-db |
9b2a462a888f31a4fb8cdadac8b268a86ccdfaed | docker-compose.yml | docker-compose.yml | version: '2'
services:
db:
image: mongo:latest
volumes:
- data:/data/db
# restart: always
web:
build: .
links:
- db
env_file: .env
environment:
- VERSION
- HTTP_FORWARDED_COUNT=1
- ROOT_URL=https://${HOST}
- MONGO_URL=mongodb://db:27017/signmeup
#... | version: '2'
services:
db:
image: mongo:latest
volumes:
- data:/data/db
restart: always
web:
build: .
links:
- db
env_file: .env
environment:
- VERSION
- HTTP_FORWARDED_COUNT=1
- ROOT_URL=https://${HOST}
- MONGO_URL=mongodb://db:27017/signmeup
res... | Add restart: always to Compose config, stop exposing port 3000 from proxy | Add restart: always to Compose config, stop exposing port 3000 from proxy
| YAML | mit | gregcarlin/signmeup,athyuttamre/signmeup,signmeup/signmeup,athyuttamre/signmeup,gregcarlin/signmeup,gregcarlin/signmeup,signmeup/signmeup |
c44627286e7dd3072344685060d84427ec772d7f | docker-compose.yml | docker-compose.yml | version: '3'
services:
dev:
build: .
volumes:
- .:/app
# - ./vendor:/app/vendor
ports:
- "3000:3000"
env_file:
- test.env
# - dev.env
command: "tail -f /dev/null"
depends_on:
- setup_dbs
test:
build: .
environment:
RAILS_ENV: test
env_f... | version: '3'
services:
dev:
build: .
volumes:
- .:/app
# - ./vendor:/app/vendor
ports:
- "3000:3000"
env_file:
- test.env
# - dev.env
command: "tail -f /dev/null"
depends_on:
- setup_dbs
test:
build: .
environment:
RAILS_ENV: test
env_f... | Remove vesitigal phantomjs dependency from test service | Remove vesitigal phantomjs dependency from test service
| YAML | mit | NYULibraries/getit,NYULibraries/getit,NYULibraries/getit,NYULibraries/getit |
209ab307189fae76f0c7112410c9247ba61c5edd | docker-compose.yml | docker-compose.yml | version: '2'
services:
tests:
image: buildkite/plugin-tester:latest@sha256:18eb8917574b2e741783a0f04fb59ae806608e3cab35d33b3c7e6e37bd5bdfd8
volumes:
- ".:/plugin:ro"
| version: '2'
services:
tests:
image: buildkite/plugin-tester:latest@sha256:58a345bc2dbafed28c2deb5096dc8cb6c4a11958da9d890c02f5a3d870eef836
volumes:
- ".:/plugin:ro"
| Update buildkite/plugin-tester:latest Docker digest to 58a345b | Update buildkite/plugin-tester:latest Docker digest to 58a345b
| YAML | mit | buildkite-plugins/ecr-buildkite-plugin |
23739c27e6d101814e1e0bf12f2b4eb6b593f068 | docker-compose.yml | docker-compose.yml | version: "3"
services:
mongo:
image: mongo:3
networks:
- graylog
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.8.2
environment:
- http.host=0.0.0.0
- transport.host=localhost
- network.host=0.0.0.0
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulim... | version: "3"
services:
mongo:
image: mongo:3
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.8.2
environment:
- http.host=0.0.0.0
- transport.host=localhost
- network.host=0.0.0.0
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
so... | Remove graylog network from Docker Compose file | Remove graylog network from Docker Compose file
| YAML | mit | mattwcole/gelf-extensions-logging |
90f9015230821dabbfae7630e5029ac09f46bb08 | docker-compose.yml | docker-compose.yml | version: '2'
services:
junebug:
image: praekeltfoundation/junebug
build: .
ports:
- 8080:80
environment:
AUTH_USERNAME: guest
AUTH_PASSWORD: password
REDIS_HOST: redis
AMQP_HOST: rabbitmq
redis:
image: redis
rabbitmq:
image: rabbitmq
environment:
RAB... | version: '2'
services:
junebug:
image: praekeltfoundation/junebug
build: .
ports:
- 8080:80
environment:
AUTH_USERNAME: guest
AUTH_PASSWORD: password
REDIS_HOST: redis
AMQP_HOST: rabbitmq
redis:
image: redis:alpine
rabbitmq:
image: rabbitmq:alpine
environm... | Use Alpine redis/rabbitmq images for testing | Use Alpine redis/rabbitmq images for testing
| YAML | bsd-3-clause | praekeltfoundation/docker-junebug,praekeltfoundation/docker-junebug |
7c699e53a57a2f80e9765f226ab6b5de351f62a0 | examples/sample_configuration.yaml | examples/sample_configuration.yaml | - base_url: http://twistedmatrix.com/trac/
tracker_name: Twisted
bugimporter: trac.SynchronousTracBugImporter
documentation_text: documentation
documentation_type: keywords
bitesized_text: easy
bitesized_type: keywords
| - base_url: http://twistedmatrix.com/trac/
tracker_name: Twisted
bugimporter: trac.TracBugImporter
documentation_text: documentation
documentation_type: keywords
bitesized_text: easy
bitesized_type: keywords
queries: ['http://twistedmatrix.com/trac/query?id=5858&format=csv']
| Switch sample configuration to have a query, and stop using SynchronousTracBugImporter | Switch sample configuration to have a query, and stop using SynchronousTracBugImporter
| YAML | agpl-3.0 | openhatch/oh-bugimporters,openhatch/oh-bugimporters,openhatch/oh-bugimporters |
e4e1d1bf493b00a6e38d9dda96ad6a7659f288a7 | metadata/moe.martini.midictrl.yml | metadata/moe.martini.midictrl.yml | Categories:
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/MartiniMoe/MIDICtrl
IssueTracker: https://github.com/MartiniMoe/MIDICtrl/issues
Changelog: https://github.com/MartiniMoe/MIDICtrl/blob/HEAD/CHANGELOG.md
AutoName: MIDICtrl
Description: |-
Using the new MIDI API thats available on Andro... | Categories:
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/MartiniMoe/MIDICtrl
IssueTracker: https://github.com/MartiniMoe/MIDICtrl/issues
Changelog: https://github.com/MartiniMoe/MIDICtrl/blob/HEAD/CHANGELOG.md
AutoName: MIDICtrl
Description: |-
Using the new MIDI API thats available on Andro... | Update CurrentVersion of MIDICtrl to 0.1.1 (2) | Update CurrentVersion of MIDICtrl to 0.1.1 (2)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
ab2c677aa2131b8fd186c56767f750900e68be91 | .github/workflows/check_transport.yml | .github/workflows/check_transport.yml | name: Check Matrix
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, macos-10.15, windows-2019]
transport: [native, nio]
exclude:
# excludes native on Windows (there's none)
- os: win... | name: Check Matrix
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, macos-10.15, windows-2019]
transport: [native, nio]
exclude:
# excludes native on Windows (there's none)
- os: win... | Disable GitHub Actions when MAC OS with NIO | Disable GitHub Actions when MAC OS with NIO
Related to #1171
| YAML | apache-2.0 | reactor/reactor-netty,reactor/reactor-netty |
f71c4214456bda26b99ab5997617752f57aa279d | metadata/de.jl.notificationlog.yml | metadata/de.jl.notificationlog.yml | Categories:
- System
License: GPL-3.0-or-later
SourceCode: https://gitlab.com/notificationlog/notificationlog-android
IssueTracker: https://gitlab.com/notificationlog/notificationlog-android/issues
AutoName: NotificationLog
RepoType: git
Repo: https://gitlab.com/notificationlog/notificationlog-android
Builds:
- ... | Categories:
- System
License: GPL-3.0-or-later
SourceCode: https://gitlab.com/notificationlog/notificationlog-android
IssueTracker: https://gitlab.com/notificationlog/notificationlog-android/issues
AutoName: NotificationLog
RepoType: git
Repo: https://gitlab.com/notificationlog/notificationlog-android
Builds:
- ... | Update NotificationLog to 1.9 (10) | Update NotificationLog to 1.9 (10)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata,f-droid/fdroid-data |
d6e6dd5e22ccaa3a879b092bc52cc41185410aad | metadata/site.leos.apps.lespas.yml | metadata/site.leos.apps.lespas.yml | Categories:
- Graphics
- Multimedia
License: Apache-2.0
SourceCode: https://github.com/scubajeff/lespas
IssueTracker: https://github.com/scubajeff/lespas/issues
Changelog: https://github.com/scubajeff/lespas/releases
AutoName: Les Pas
RepoType: git
Repo: https://github.com/scubajeff/lespas
Builds:
- versionNam... | Categories:
- Graphics
- Multimedia
License: Apache-2.0
SourceCode: https://github.com/scubajeff/lespas
IssueTracker: https://github.com/scubajeff/lespas/issues
Changelog: https://github.com/scubajeff/lespas/releases
AutoName: Les Pas
RepoType: git
Repo: https://github.com/scubajeff/lespas
Builds:
- versionNam... | Update Les Pas to 1.2 (3) | Update Les Pas to 1.2 (3)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
e5624da1a545afd740adfa8e9cae745a85c3fd1c | plugin.yml | plugin.yml | name: Golang
description: Run a command in a specific golang docker container
author: https://github.com/buildkite
requirements:
- docker
configuration:
properties:
version:
type: string
package:
type: string
environment:
type: array
required: []
| name: Golang
description: Run a command in a specific golang docker container
author: https://github.com/buildkite
requirements:
- docker
configuration:
properties:
version:
type: string
import:
type: string
environment:
type: array
required: []
| Update configuration schema for import property | Update configuration schema for import property
| YAML | mit | buildkite-plugins/golang-buildkite-plugin,buildkite-plugins/golang-buildkite-plugin |
04bc5051dbb9071b5dc95cbe8acf7c2ba47373ec | docker/docker-compose.yml | docker/docker-compose.yml | version: '2'
services:
web:
build:
context: ./
args:
# Change this to match the host user. Use `id -u` to determine your user.
HUBDROP_UID: 1000
image: hubdrop:php5-apache
ports:
- "80:80"
volumes:
- "./hubdrop_home:/var/hubdrop:Z"
# - "./repos/:/var/hubdrop/re... | version: '2'
services:
web:
build:
context: ./
args:
# Change this to match the host user. Use `id -u` to determine your user.
HUBDROP_UID: 1000
image: hubdrop:php5-apache
ports:
- "80:80"
volumes:
- "./hubdrop_home:/var/hubdrop:z"
# - "./repos/:/var/hubdrop/re... | Use lowercase :z flag for SELinux. | Use lowercase :z flag for SELinux.
| YAML | mit | hubdrop/app,hubdrop/app,hubdrop/app |
8184eab521f089577d162aaf448175c407084e90 | homeassistant/docker-compose.yml | homeassistant/docker-compose.yml | version: '2'
services:
homeassistant:
image: homeassistant/raspberrypi3-homeassistant:0.51.2
container_name: homeassistant
ports:
- "8123:8123"
volumes:
- /home/pirate/Projects/home-assistant-configuration:/config
- /etc/localtime:/etc/localtime:ro
network_mode: host
restar... | version: '2'
services:
homeassistant:
image: homeassistant/raspberrypi3-homeassistant:0.118.5
container_name: homeassistant
ports:
- "8123:8123"
volumes:
- /home/pirate/Projects/home-assistant-configuration:/config
- /etc/localtime:/etc/localtime:ro
network_mode: host
resta... | Update homeassistant/raspberrypi3-homeassistant Docker tag to v0.118.5 | Update homeassistant/raspberrypi3-homeassistant Docker tag to v0.118.5
| YAML | apache-2.0 | zeiot/jarvis,zeiot/jarvis,zeiot/jarvis,zeiot/jarvis |
f44b4d5330ba85277d4c7d0b7f1fb5dc30f073e1 | manifest.yml | manifest.yml | ---
applications:
- name: flashreport-cf-spring
memory: 512M
path: target/cfspring-0.0.1-SNAPSHOT.jar
| ---
applications:
- name: flashreport-cf-spring
memory: 512M
path: target/cfspring-0.0.1-SNAPSHOT.jar
random-route: true
| Use random route to avoid URL collisions | Use random route to avoid URL collisions
| YAML | apache-2.0 | flashreport-io/flashreport-cf-spring,flashreport-io/flashreport-cf-spring |
0e107f0b7471286fd9e8a10e0ec207ac79aa2ee9 | packages/as/async-io-either.yaml | packages/as/async-io-either.yaml | homepage: https://github.com/mankyKitty/async-io-either#readme
changelog-type: ''
hash: c73e83a77a7b88dfdcf0ecd2a04ed7857ce8a5b7edefc728eb853d89da2e0d18
test-bench-deps: {}
maintainer: sclhiannan@gmail.com
synopsis: Could be useful
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
async: ! '>0.2'
all-versions:
- '0.1... | homepage: https://github.com/mankyKitty/async-io-either#readme
changelog-type: ''
hash: 92f2eb51f71fbdd1030d262434a08ea7380992c727bf4194ea119ae1b3151e6b
test-bench-deps: {}
maintainer: sclhiannan@gmail.com
synopsis: Could be useful
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
async: ! '>0.2'
transformers: -any... | Update from Hackage at 2017-02-20T06:13:26Z | Update from Hackage at 2017-02-20T06:13:26Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
46c30b22a3500b1c84210c6a99626e7742b5d213 | data/transition-sites/voa.yml | data/transition-sites/voa.yml | ---
site: voa
whitehall_slug: valuation-office-agency
homepage: https://www.gov.uk/government/organisations/valuation-office-agency
tna_timestamp: 20140711154517
host: www.voa.gov.uk
homepage_furl: www.gov.uk/voa
aliases:
- voa.gov.uk
| ---
site: voa
whitehall_slug: valuation-office-agency
homepage: https://www.gov.uk/government/organisations/valuation-office-agency
tna_timestamp: 20140711154517
host: www.voa.gov.uk
homepage_furl: www.gov.uk/voa
aliases:
- voa.gov.uk
- app.voa.gov.uk
- cti.voa.gov.uk
- manuals.voa.gov.uk
- www.manuals.voa.gov.uk
| Add VOA subdomains to main site as aliases | Add VOA subdomains to main site as aliases
These three subdomains were created to encapsulate specific tools and transactions into its own namespace. At a point in future, each will migrate to a new home; including them as aliases to the main site means only one set of mappings will be required in the future.
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
3a4a7f22421bb2f85fef209e76706e186869821d | cluster/manifests/kube2iam/daemonset.yaml | cluster/manifests/kube2iam/daemonset.yaml | apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: kube2iam
namespace: kube-system
labels:
application: kube2iam
version: v0.5.2
spec:
selector:
matchLabels:
application: kube2iam
updateStrategy:
type: RollingUpdate
template:
metadata:
labels:
application:... | apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: kube2iam
namespace: kube-system
labels:
application: kube2iam
version: v0.6.0
spec:
selector:
matchLabels:
application: kube2iam
updateStrategy:
type: RollingUpdate
template:
metadata:
labels:
application:... | Upgrade kube2iam to 0.6.0 and add liveness and readiness probes | Upgrade kube2iam to 0.6.0 and add liveness and readiness probes
| YAML | mit | zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.