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 |
|---|---|---|---|---|---|---|---|---|---|
a589cb526d0c91195582ef91690517a02981726c | docker-compose.yml | docker-compose.yml | version: '2'
services:
bugzilla:
image: uneet/bugzilla
restart: on-failure
ports:
- 8081:80
environment:
SES_VERIFIED_SENDER: bugzilla.dev@unee-t.com
MYSQL_HOST: db.dev.unee-t.com
MYSQL_PORT: 3306
MYSQL_ROOT_PASSWORD: jai7Paib
... | version: '2'
services:
bugzilla:
image: uneet/bugzilla
restart: on-failure
ports:
- 8081:80
environment: # Setup by local .env file
SES_SMTP_USERNAME: ${SES_SMTP_USERNAME}
SES_SMTP_PASSWORD: ${SES_SMTP_PASSWORD}
SES_VERIFIED_SENDER: ${SES_VERIFIED_... | Reset file for local development | Reset file for local development
| YAML | agpl-3.0 | unee-t/bugzilla |
d5381fbffefadd28c13335da9a276d3d46917f83 | docker-compose.yml | docker-compose.yml | collectd:
build: apps/collectd
command: /bin/bash -c "service collectd stop; sleep 45; collectd -f"
links:
- kairosdb
kairosdb:
build: apps/kairosdb
command: /bin/bash -c "sleep 30; /opt/kairosdb/bin/kairosdb.sh run"
ports:
- "4242:4242"
- "8080:8080"
links:
- cassandra
cassandra:
image: ... | collectd:
build: apps/collectd
command: /bin/bash -c "collectd -f"
links:
- kairosdb
kairosdb:
build: apps/kairosdb
command: /bin/bash -c "/opt/kairosdb/bin/kairosdb.sh run"
ports:
- "4242:4242"
- "8080:8080"
links:
- cassandra
cassandra:
image: jimthedev/cassandra
hostname: cassandra
... | Remove sleeps from compose configuration | Remove sleeps from compose configuration
| YAML | apache-2.0 | skottler/kairosdb-docker |
b0cd7405a1bd99a9fe2812c189fbf78fb04451b7 | docker-compose.yml | docker-compose.yml | version: '2'
services:
master:
container_name: 'citus_master'
image: 'citusdata/citus:5.2.2'
ports: ['5432:5432']
labels: ['com.citusdata.role=Master']
worker:
image: 'citusdata/citus:5.2.2'
labels: ['com.citusdata.role=Worker']
config:
container_name: 'citus_config'
image: 'citus... | version: '2'
services:
master:
container_name: 'citus_master'
image: 'citusdata/citus:5.2.2'
ports: ['5432:5432']
labels: ['com.citusdata.role=Master']
worker:
image: 'citusdata/citus:5.2.2'
labels: ['com.citusdata.role=Worker']
config:
container_name: 'citus_config'
image: 'citus... | Use latest workerlist generation image | Use latest workerlist generation image
| YAML | apache-2.0 | citusdata/docker |
32538352cca48f8048c9350c108d432b720758eb | .github/workflows/mutation_testing.yml | .github/workflows/mutation_testing.yml | name: PHP Mutation testing
on:
push:
branches: [ main ]
jobs:
test:
runs-on: 'ubuntu-latest'
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Validate composer.json... | name: PHP Mutation testing
on:
push:
branches: [ main ]
jobs:
test:
runs-on: 'ubuntu-latest'
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Validate composer.json... | Archive a copy of the mutation log results | Archive a copy of the mutation log results
| YAML | mit | adrianclay/php-git |
a4142d016732e6daac2afccdb497a8496e7d993f | couscous.yml | couscous.yml | template:
url: https://github.com/LaunchCodeEducation/Template-Light
# Base URL of the published website
baseUrl: http://education.launchcode.org/cs50x-yourcitygoeshere
# Used to link to the GitHub project
github:
user: LaunchCodeEducation
repo: cs50x-yourcitygoeshere
title: LaunchCode's CS50x - Your Ci... | template:
url: https://github.com/LaunchCodeEducation/Template-Light
# Base URL of the published website
baseUrl: http://education.launchcode.org/cs50x-yourcitygoeshere
# Used to link to the GitHub project
github:
user: LaunchCodeEducation
repo: cs50x-yourcitygoeshere
title: LaunchCode's CS50x - Your Ci... | Add IDE link, move Student Guide down | Add IDE link, move Student Guide down | YAML | cc0-1.0 | LaunchCodeEducation/cs50x-kansascity,LaunchCodeEducation/cs50x-stlouis,LaunchCodeEducation/cs50x-kansascity,LaunchCodeEducation/cs50x-live,LaunchCodeEducation/cs50x-maryville,LaunchCodeEducation/cs50x-maryville,LaunchCodeEducation/cs50x-kansascity,LaunchCodeEducation/cs50x-kansascity,LaunchCodeEducation/cs50x-kansascit... |
dad37598775988dae7aa5231ece8aa0a44412c99 | Configuration/Development/Setting.yaml | Configuration/Development/Setting.yaml | Neos:
Flow:
security:
session:
inactivityTimeout: 0 # Disable session timeout while developing
| Neos:
Flow:
session:
inactivityTimeout: 0 # Disable session timeout while developing
| Use correct order for inactivitytimeout | BUGFIX: Use correct order for inactivitytimeout
| YAML | mit | Sebobo/Shel.NeosBase,Sebobo/Shel.NeosBase |
fb5d1eeab8e6daccd8ef44cbe91097d1d8cb9b6c | tasks/wordpress.yml | tasks/wordpress.yml | ---
- name: "Download wordpress"
become: yes
get_url: "url={{ storyteller_wp_file_url }}/{{ storyteller_wp_file }} dest=/srv/{{ storyteller_wp_file }} sha256sum='{{ storyteller_wp_sha256sum }}'"
- name: "Extract archive"
become: yes
unarchive: "src=/srv/{{ storyteller_wp_file }} dest=/srv copy=no creates=/srv/... | ---
- name: "Download wordpress"
become: yes
get_url: "url={{ storyteller_wp_file_url }}/{{ storyteller_wp_file }} dest=/srv/{{ storyteller_wp_file }} sha256sum='{{ storyteller_wp_sha256sum }}'"
- name: "Extract archive"
become: yes
unarchive: "src=/srv/{{ storyteller_wp_file }} dest=/srv copy=no creates=/srv/... | Revert "replaced curl with get_url" | Revert "replaced curl with get_url"
This reverts commit f29409be430c384c9ef96b254931aa69f6d5287f.
| YAML | mit | AdnanHodzic/ansible-role-storyteller |
41070997753ade8e1350b9675e3f8784ee35b925 | ansible/roles/tshark/tasks/main.yml | ansible/roles/tshark/tasks/main.yml | - apt:
name: tshark
- lineinfile:
path: /usr/share/wireshark/init.lua
regexp: '^disable_lua ='
line: 'disable_lua = true'
| - apt:
name: tshark
- lineinfile:
path: /usr/share/wireshark/init.lua
regexp: '^disable_lua ='
line: 'disable_lua = true'
- group:
name: wireshark
state: present
- file:
path: /usr/bin/dumpcap
group: wireshark
mode: 0750
- capabilities:
path: /usr/bin/dumpcap
capability:
... | Add wireshark group and grant execute tshark to wireshark group. | Add wireshark group and grant execute tshark to wireshark group.
| YAML | mit | groovenauts/raspi-ops,groovenauts/raspi-ops,groovenauts/raspi-ops,groovenauts/raspi-ops |
a1d0405d0941f5b10addb7548f8a8a596a917472 | tf-job-operator-chart/values.yaml | tf-job-operator-chart/values.yaml | # Docker image to use.
image: gcr.io/tf-on-k8s-dogfood/tf_operator:10b10fd
test_image: gcr.io/tf-on-k8s-dogfood/tf_sample:dc944ff
## Install Default RBAC roles and bindings
rbac:
install: false
apiVersion: v1beta1 | # Docker image to use.
image: gcr.io/tf-on-k8s-dogfood/tf_operator:v20171019-7a05c26
test_image: gcr.io/tf-on-k8s-dogfood/tf_sample:dc944ff
## Install Default RBAC roles and bindings
rbac:
install: false
apiVersion: v1beta1
| Update the tfjob image to the latest green CL. | Update the tfjob image to the latest green CL.
* The sample jobs were broken because they were using the default PS
but the chart hadn't been updated.
| YAML | apache-2.0 | kubeflow/training-operator,kubeflow/training-operator,kubeflow/training-operator |
f38d3ed6daf3e0ac8d87b7bd280027dd2d2a09ef | packages/at/attoparsec-time.yaml | packages/at/attoparsec-time.yaml | homepage: https://github.com/nikita-volkov/attoparsec-time
changelog-type: ''
hash: 7254ee92d32a5e9c95ac1f570b0a2cea34003428b01b2f50f9b96dd71339355d
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Attoparsec parsers of time
changelog: ''
basic-deps:
bytestring: ==0.10.*
base: ! '>=... | homepage: https://github.com/nikita-volkov/attoparsec-time
changelog-type: ''
hash: 4b2e24e2ecf1787561428c2ef666a7f2f3e63cd190412afc8ad96176f303ba5f
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Attoparsec parsers of time
changelog: ''
basic-deps:
bytestring: '>=0.10 && <0.12'
ba... | Update from Hackage at 2021-06-26T09:00:12Z | Update from Hackage at 2021-06-26T09:00:12Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
8549471ce5bc0602bba8bb00c8b3b885d1854d12 | .github/workflows/ci-build.yml | .github/workflows/ci-build.yml | name: Continous build - build and test on every push
on: push
jobs:
build:
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java-version: [8, 11]
steps:
- name: Checkout
uses: actions/checkout@v1
wit... | name: Continous build - build and test on every push
on: push
jobs:
build:
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java-version: [8, 11]
steps:
- name: Checkout
uses: actions/checkout@v1
wit... | Add build with Java 7 on Linux | ci: Add build with Java 7 on Linux
Add a job to run a build with Java 7.
The job currently only runs on Linux.
In order to run on Java 7, an old Ant version is downloaded and
installed. We use moxie+ant for this, so we build with moxie.
| YAML | apache-2.0 | gitblit/gitblit,fzs/gitblit,gitblit/gitblit,gitblit/gitblit,gitblit/gitblit,fzs/gitblit,fzs/gitblit,fzs/gitblit,gitblit/gitblit,fzs/gitblit |
ba2dddb5c4dccc7d5a4dbd26efe4e12a93f7dca7 | roles/common/tasks/ssh.yml | roles/common/tasks/ssh.yml | ---
- name: disable password authentication over SSH
copy: src=sshd_config dest=/etc/ssh/sshd_config owner=root group=root mode=0644
sudo: yes
- name: trust github's public key
lineinfile:
dest: /etc/ssh/ssh_known_hosts
create: yes
state: present
line: "{{ github_ssh_pubkey | replace(' ', '') | ... | ---
- name: disable password authentication over SSH
copy: src=sshd_config dest=/etc/ssh/sshd_config owner=root group=root mode=0644
sudo: yes
- name: trust github's public key
lineinfile:
dest: /etc/ssh/ssh_known_hosts
create: yes
state: present
line: "{{ github_ssh_pubkey | replace(' ', '') | ... | Tag the SSH key task. | Tag the SSH key task.
This is a stopgap to let me quickly patch things up until I get some time
to fix deconst/deconst-docs#160 properly.
| YAML | apache-2.0 | ktbartholomew/deploy,deconst/deploy,ktbartholomew/deploy,deconst/deploy |
7b366cc9e2844b805d0288bb86c0b3e53e554fee | packages/as/ast-monad.yaml | packages/as/ast-monad.yaml | homepage: https://github.com/mouri111/ast-monad#readme
changelog-type: ''
hash: 677616d2b7ebc0787bc947577f5f40c9f0e2f5948eb39ea38682740af7784952
test-bench-deps:
base: -any
ast-monad: -any
maintainer: 8128jp@gmail.com
synopsis: A library for constructing AST by using do-notation
changelog: ''
basic-deps:
base: ! ... | homepage: https://github.com/mouri111/ast-monad#readme
changelog-type: ''
hash: 43f0394c4465cfd294666ff976242093e8b5f4b0e0322055250cf8e26fb53e8c
test-bench-deps:
base: -any
ast-monad: -any
maintainer: 8128jp@gmail.com
synopsis: A library for constructing AST by using do-notation
changelog: ''
basic-deps:
base: ! ... | Update from Hackage at 2018-10-20T22:35:07Z | Update from Hackage at 2018-10-20T22:35:07Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e9bde1bdb12151705329f317f779fdb0d2bf7023 | metadata/com.github.ashutoshgngwr.tenbitclockwidget.yml | metadata/com.github.ashutoshgngwr.tenbitclockwidget.yml | Categories:
- Time
- Theming
License: GPL-3.0-only
WebSite: https://ashutoshgngwr.github.io/10-bitClockWidget
SourceCode: https://github.com/ashutoshgngwr/10-bitClockWidget
IssueTracker: https://github.com/ashutoshgngwr/10-bitClockWidget/issues
AutoName: 10-bit Clock Widget
Description: 10-bit Clock Widget uses 10... | Categories:
- Time
- Theming
License: GPL-3.0-only
WebSite: https://ashutoshgngwr.github.io/10-bitClockWidget
SourceCode: https://github.com/ashutoshgngwr/10-bitClockWidget
IssueTracker: https://github.com/ashutoshgngwr/10-bitClockWidget/issues
AutoName: 10-bit Clock Widget
Description: 10-bit Clock Widget uses 10... | Update 10-bit Clock Widget to 1.6-2 (162) | Update 10-bit Clock Widget to 1.6-2 (162)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
14b44b049ed9fe7e2c94346480d25864a4fb64a1 | config/kubernetes/sig-instrumentation/teams.yaml | config/kubernetes/sig-instrumentation/teams.yaml | teams:
sig-instrumentation-leads:
description: ""
members:
- brancz
- dashpole
- ehashman
- logicalhan
privacy: closed
sig-instrumentation-approvers:
description: ""
members:
- brancz
- dashpole
- ehashman
- logicalhan
- RainbowMango
- serathius
privac... | teams:
sig-instrumentation-leads:
description: ""
members:
- brancz
- dashpole
- ehashman
- logicalhan
privacy: closed
sig-instrumentation-approvers:
description: ""
members:
- brancz
- dashpole
- ehashman
- logicalhan
- RainbowMango
- serathius
privac... | Remove inactive SIG Instrumentation members | Remove inactive SIG Instrumentation members
| YAML | apache-2.0 | kubernetes/org,kubernetes/org,kubernetes/org |
2843ecde9feb38cefd983fa51819532481608755 | docs/toc.yml | docs/toc.yml | - name: Articles
href: articles/
- name: API Documentation
href: api/
homepage: api/index.md
- name: Changelog
href: /RELEASE_NOTES.html
- name: GitHub
href: https://github.com/nickbabcock/Farmhash.Sharp | - name: Articles
href: articles/
- name: API Documentation
href: api/
homepage: api/index.md
- name: Changelog
href: ../RELEASE_NOTES.md
- name: GitHub
href: https://github.com/nickbabcock/Farmhash.Sharp | Fix link to release notes | Fix link to release notes
| YAML | mit | nickbabcock/Farmhash.Sharp,nickbabcock/Farmhash.Sharp,nickbabcock/Farmhash.Sharp,nickbabcock/Farmhash.Sharp |
71317965c04a3d153a2eacf9e934ffdf74933f7e | Resources/config/sluggable.yml | Resources/config/sluggable.yml | parameters:
darvin_utils.sluggable.manager.entity.class: Darvin\Utils\Sluggable\SluggableEntityManager
darvin_utils.sluggable.subscriber.class: Darvin\Utils\EventListener\SluggableSubscriber
services:
darvin_utils.sluggable.manager:
alias: darvin_utils.sluggable.manager.entity
darvin_utils.sl... | parameters:
darvin_utils.sluggable.manager.entity.class: Darvin\Utils\Sluggable\SluggableEntityManager
darvin_utils.sluggable.subscriber.class: Darvin\Utils\EventListener\SluggableSubscriber
services:
darvin_utils.sluggable.manager:
alias: darvin_utils.sluggable.manager.entity
darvin_utils.sl... | Implement dummy publication slug prefix provider. | Implement dummy publication slug prefix provider.
| YAML | mit | DarvinStudio/DarvinUtilsBundle |
8bacc2115e4d941d75990362ace0a7af716dff1e | lib/business/data/padca.yml | lib/business/data/padca.yml | working_days:
- monday
- tuesday
- wednesday
- thursday
- friday
holidays:
- January 1st, 2018
- January 2nd, 2018
- February 12th, 2018
- February 19th, 2018
- March 30th, 2018
- April 2nd, 2018
- May 21st, 2018
- June 21st, 2018
- June 25th, 2018
- July 2nd, 2018
- July 9th, 2018
- ... | working_days:
- monday
- tuesday
- wednesday
- thursday
- friday
holidays:
- January 1st, 2018
- March 30th, 2018
- May 21st, 2018
- July 2nd, 2018
- September 3rd, 2018
- October 8th, 2018
- November 12th, 2018
- December 25th, 2018
- December 26th, 2018
- January 1st, 2019
- April 19t... | Remove regional holiday days. Add 2020 calculated days | Remove regional holiday days. Add 2020 calculated days
| YAML | mit | gocardless/business |
1feaaf2ff23e90ed08bf1696cdec92e6e73868dc | .appveyor.yml | .appveyor.yml | version: 1.0.0-{build}
init:
- SET PATH=%PYTHON%;%PYTHON%\Scripts;C:\Program Files\PostgreSQL\12\bin\;%PATH%
image:
- Visual Studio 2019
- Ubuntu1804
- macos
environment:
PGUSER: postgres
PGPASSWORD: Password12!
matrix:
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.1"
PYTHON_ARCH: "32"
... | version: 1.0.0-{build}
init:
- SET PATH=%PYTHON%;%PYTHON%\Scripts;C:\Program Files\PostgreSQL\12\bin\;%PATH%
image:
- Visual Studio 2019
- Ubuntu1804
- macos
environment:
PGUSER: postgres
PGPASSWORD: Password12!
matrix:
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.1"
PYTHON_ARCH: "32"
... | Create PostgreSQL USER as SUPERUSER | [AppVeyor] Create PostgreSQL USER as SUPERUSER
| YAML | mit | Harmon758/Harmonbot,Harmon758/Harmonbot |
a2bc26b582b34d4de185678f3dd9fda85655062d | .bazelci/presubmit.yml | .bazelci/presubmit.yml | ---
platforms:
ubuntu1404:
build_flags:
- "--build_tag_filters=-nolinux"
build_targets:
- "..."
test_flags:
- "--features=race"
- "--test_tag_filters=-nolinux"
test_targets:
- "..."
ubuntu1604:
build_flags:
- "--build_tag_filters=-nolinux"
build_targets:
- "..."
... | ---
platforms:
ubuntu1804:
build_flags:
- "--build_tag_filters=-nolinux"
build_targets:
- "..."
test_flags:
- "--features=race"
- "--test_tag_filters=-nolinux"
test_targets:
- "..."
ubuntu1604:
build_flags:
- "--build_tag_filters=-nolinux"
build_targets:
- "..."
... | Test on Ubuntu 18.04 not 14.04 | Test on Ubuntu 18.04 not 14.04 | YAML | apache-2.0 | bazelbuild/bazel-watcher,bazelbuild/bazel-watcher,bazelbuild/bazel-watcher,bazelbuild/bazel-watcher |
4b79bc6f405b0a25ef61378f3fce9fd4ba793ace | grunt/aliases.yml | grunt/aliases.yml | api:
description: Start the api
tasks:
- 'cssmin:production'
- 'buildJS'
- 'uglify:production'
- 'express:dev'
- 'watch'
buildJS:
tasks:
- 'babel'
default:
description: Default Grunt task
tasks:
- 'api'
test:
description: Run the tests
tasks:
- 'run:createTestUser'
- 'express:test'
... | api:
description: Start the api
tasks:
- 'cssmin:production'
- 'buildJS'
- 'uglify:production'
- 'express:dev'
- 'watch'
prep:
description: Run pre processing tasks
tasks:
- 'cssmin:production'
- 'buildJS'
- 'uglify:production'
buildJS:
tasks:
- 'babel'
default:
description: Default Gru... | Add grunt task for use in IDE to pre process css and js | Add grunt task for use in IDE to pre process css and js
| YAML | bsd-3-clause | FuelRats/api.fuelrats.com,FuelRats/api.fuelrats.com,FuelRats/api.fuelrats.com |
319fa749b4ba5264e7a9ee6bd0266c552c5f1650 | demo/analytics-pipeline/spark/service.spark.yaml | demo/analytics-pipeline/spark/service.spark.yaml | # Definition of Spark service
name: spark
components:
- name: zookeeper
service: zookeeper
- name: spark
code:
type: aptomi/code/kubernetes-helm
metadata:
chartName: spark-1.0.0
params:
spark:
image:
repository: mirantisworkloads/spark
t... | # Definition of Spark service
name: spark
components:
- name: zookeeper
service: zookeeper
- name: spark
code:
type: aptomi/code/kubernetes-helm
metadata:
chartName: spark-1.0.0
params:
spark:
image:
repository: mirantisworkloads/spark
t... | Fix multiple Sparks using single ZooKeeper | Fix multiple Sparks using single ZooKeeper
| YAML | apache-2.0 | Aptomi/aptomi,Aptomi/aptomi,Aptomi/aptomi,Aptomi/aptomi |
21d3b22482e48e1c2654c256fec667788d2729fb | .expeditor/coverage.pipeline.yml | .expeditor/coverage.pipeline.yml | ---
steps:
- label: coverage
commands:
- bundle install --jobs=7 --retry=3 --without tools integration
- bundle exec rake test:default
expeditor:
executor:
docker:
image: ruby:2.6-stretch
| ---
steps:
- label: coverage
commands:
- /workdir/.expeditor/buildkite/coverage.sh
expeditor:
executor:
docker:
image: ruby:2.6-stretch
| Use our coverage.sh rather than embedded commands | Use our coverage.sh rather than embedded commands
Signed-off-by: Miah Johnson <722873f9fa963292e0213e095373c87c1070cd81@chia-pet.org>
| YAML | apache-2.0 | chef/train,chef/train |
5819a6ef4a7ec9ae5cbb046c229ed31e2638f2dc | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: "/static/admin"
webhook_url:
sections:
- type: heading
label: Blog
- type: directory
path: content/blog
label: Billets
create: documents
match: "**/*"
new_doc_ext: md
templates:
- billet
- type: directory
path: content/tags
label: Tags
cre... | ---
new_page_extension: md
auto_deploy: false
admin_path: "/static/admin"
webhook_url:
sections:
- type: heading
label: Blog
- type: directory
path: content/blog
label: Billets
create: documents
match: "**/*"
exclude: index.md
new_doc_ext: md
templates:
- billet
- type: directory
path: content/tags... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | Narno/arnaudligny.fr,Narno/arnaudligny.fr,Narno/arnaudligny.fr |
d9e7419435e26c11456ede8113b58a5a3a87cc4b | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: document
path: _data/nav.yml
label: 文档
- type: heading
label: 博客
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_p... | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: document
path: _data/nav.yml
label: 文档
- type: heading
label: 博客
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_p... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | apache-2.0 | zuonx/zuonx.github.io,zuonx/zuonx.github.io,zuonx/zuonx.github.io |
dcae1a3077957ba7cfbd86ae65fa156d0e2e871a | myapp/myapp.deployment.yml | myapp/myapp.deployment.yml | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: myapp
labels:
app: myapp
spec:
replicas: 3
template:
metadata:
labels:
app: myapp
spec:
containers:
- name: myapp
image: rosskukulinski/myapp:v2
env:
- name: NSOLID_APPNAME
... | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: myapp
labels:
app: myapp
spec:
replicas: 3
template:
metadata:
labels:
app: myapp
spec:
containers:
- name: myapp
image: rosskukulinski/myapp:v4
env:
- name: NSOLID_APPNAME
... | Use v4 version with vuln | Use v4 version with vuln
| YAML | mit | nodesource/nsolid-kubernetes,nodesource/nsolid-kubernetes |
ab5b99f2487cad0eb85f3bfddf9c9903886da7ac | packages/co/colour-space.yaml | packages/co/colour-space.yaml | homepage: https://github.com/leftaroundabout/colour-space
changelog-type: ''
hash: 9f23033c897866cb5efc53a7a5ec989fffa6564655ddbc9ae12c6f4a79f7e66f
test-bench-deps: {}
maintainer: (@) jsag $ hvl.no
synopsis: Instances of the manifold-classes for colour types
changelog: ''
basic-deps:
linearmap-category: ! '>=0.3.5 &&... | homepage: https://github.com/leftaroundabout/colour-space
changelog-type: ''
hash: 479a78f9d2fd6462e6178be1182f3f04ca3e53730551f72b54e9d21481a1ba3f
test-bench-deps: {}
maintainer: (@) jsag $ hvl.no
synopsis: Instances of the manifold-classes for colour types
changelog: ''
basic-deps:
linearmap-category: ! '>=0.3.5'
... | Update from Hackage at 2019-10-15T10:28:38Z | Update from Hackage at 2019-10-15T10:28:38Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
fe5fb1482ddd6257b4605c5a28e323e61f2bd492 | packages/in/inline-c-cpp.yaml | packages/in/inline-c-cpp.yaml | homepage: ''
changelog-type: ''
hash: 14739f674376b05487d1cfd8e6d6803609e654e7dfaa146f7665a4936b783c5e
test-bench-deps:
base: ! '>=4 && <5'
inline-c-cpp: -any
maintainer: francesco@fpcomplete.com
synopsis: Lets you embed C++ code into Haskell.
changelog: ''
basic-deps:
inline-c: ! '>=0.6.0.0'
base: ! '>=4.7 && ... | homepage: ''
changelog-type: ''
hash: 144cb09c7c7a54538194bda3d02408f558a254438ad2be5259c775a7b1ae47f8
test-bench-deps:
inline-c: -any
base: ! '>=4 && <5'
hspec: -any
safe-exceptions: -any
inline-c-cpp: -any
maintainer: francesco@fpcomplete.com
synopsis: Lets you embed C++ code into Haskell.
changelog: ''
bas... | Update from Hackage at 2017-08-15T15:46:37Z | Update from Hackage at 2017-08-15T15:46:37Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ace58fc6fa0218274c6d3e08b896fd9e03687a34 | packages/in/interpolator.yaml | packages/in/interpolator.yaml | homepage: ''
changelog-type: ''
hash: 17d570bce9c004ec631527b0c352954e2e4e0f13614004647b4b66f1a9ebc00d
test-bench-deps:
either: -any
base: <5.0
hspec: -any
text: -any
containers: -any
product-profunctors: -any
interpolator: -any
mtl: -any
QuickCheck: -any
aeson: -any
template-haskell: -any
mono-... | homepage: https://github.com/tvision-insights/interpolator
changelog-type: ''
hash: b0e0dc6714ce4fb352c530be556499df4504eed12a7f2d04bac2ae3da9d3dea7
test-bench-deps:
either: -any
base: <5.0
hspec: -any
text: -any
containers: -any
product-profunctors: -any
interpolator: -any
mtl: -any
QuickCheck: -any
... | Update from Hackage at 2018-12-21T16:55:04Z | Update from Hackage at 2018-12-21T16:55:04Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a774fa7213f0aed17dbe1e4e63be4b76a1ddba59 | packages/la/language-dot.yaml | packages/la/language-dot.yaml | homepage: ''
changelog-type: ''
hash: 496812a28439a2f115c74f4d6933b39f978974dc950b1a4cdeb467b454df088a
test-bench-deps: {}
maintainer: Brian Lewis <brian@lorf.org>
synopsis: A library for the analysis and creation of Graphviz DOT files
changelog: ''
basic-deps:
base: ==4.*
parsec: ==3.*
mtl: ==1.* || ==2.*
pret... | homepage: ''
changelog-type: ''
hash: ba3c8ad9d5d8dbc7c8edefcc49dab055bc9341b2fda3d0c4dde7b5a96344714a
test-bench-deps:
base: ==4.*
parsec: ==3.*
mtl: ==1.* || ==2.*
pretty: ==1.*
maintainer: Ben Gamari <ben@smart-cactus.org>
synopsis: A library for the analysis and creation of Graphviz DOT files
changelog: ''
... | Update from Hackage at 2016-04-13T12:40:10+0000 | Update from Hackage at 2016-04-13T12:40:10+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
94bc8bde6a8ed8df78734e6f864f661c8987f550 | packages/la/language-elm.yaml | packages/la/language-elm.yaml | homepage: https://github.com/eliaslfox/language-elm#readme
changelog-type: ''
hash: 8f2873bb01b79ee504c6f4204c12fdcb74fe9497abc637b4f17cb933727a4562
test-bench-deps:
base: -any
HUnit: -any
language-elm: -any
pretty: -any
maintainer: eliaslfox@gmail.com
synopsis: Generate elm code
changelog: ''
basic-deps:
Mis... | homepage: https://github.com/eliaslfox/language-elm#readme
changelog-type: ''
hash: ee3ad07d8cb735458d24e0028933ba499c70b0a97036ee06dc0507fcc96b91e7
test-bench-deps:
base: -any
HUnit: -any
language-elm: -any
pretty: -any
maintainer: eliaslfox@gmail.com
synopsis: Generate elm code
changelog: ''
basic-deps:
Mis... | Update from Hackage at 2017-08-21T06:48:23Z | Update from Hackage at 2017-08-21T06:48:23Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
05d49d75253d12f0442ea3c4f00daf2a283be497 | packages/po/potoki-hasql.yaml | packages/po/potoki-hasql.yaml | homepage: https://github.com/metrix-ai/potoki-hasql
changelog-type: ''
hash: 737114290de778e5c020860e504bc1b1f41566a305968fd86fde9ba4e3c9b9e0
test-bench-deps: {}
maintainer: Metrix.AI Ninjas <ninjas@metrix.ai>
synopsis: Integration of "potoki" and "hasql".
changelog: ''
basic-deps:
hasql: ==1.1.1
bytestring: ==0.10... | homepage: https://github.com/metrix-ai/potoki-hasql
changelog-type: ''
hash: 1be5138bc7a066be6dfdea3fc807c4c34f737379c8aa45d81f3eeac3b8c9e668
test-bench-deps: {}
maintainer: Metrix.AI Ninjas <ninjas@metrix.ai>
synopsis: Integration of "potoki" and "hasql".
changelog: ''
basic-deps:
hasql: ==1.1.1
bytestring: ==0.10... | Update from Hackage at 2018-03-25T17:00:17Z | Update from Hackage at 2018-03-25T17:00:17Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3c6e94c8e0e3dd9901cd4f43068ac5b110c6e1da | .github/workflows/buildWindows.yml | .github/workflows/buildWindows.yml | name: CI-Windows
on: [push]
jobs:
build-n-run-tests:
runs-on: windows-2019
steps:
- uses: actions/checkout@master
- name: Build Everything
run: |
dotnet build
- name: Download OSMesa Binary
run: |
curl -L http://github.com/pal1000/mesa-dist-win/releases/download... | name: CI-Windows
on: [push]
jobs:
build-n-run-tests:
runs-on: windows-2019
steps:
- uses: actions/checkout@master
- name: Build Everything
run: |
dotnet build
- name: Download OSMesa Binary
run: |
curl -L http://github.com/pal1000/mesa-dist-win/releases/download... | Test artifact will be created even if the build fails. | Test artifact will be created even if the build fails.
| YAML | mit | Cryru/SoulEngine |
9cd094d1749685b587e22ce7545da4b4e31a40a8 | .github/workflows/run_renovate.yml | .github/workflows/run_renovate.yml | name: Renovate-Dry-Run
on:
workflow_dispatch:
inputs:
pac_to_use:
description: "Name of the workflow secret to use"
type: string
required: true
branch:
description: "Branch that renovate should operate on"
type: string
required: true
jobs:
renovate:
... | name: Renovate-Dry-Run
on:
workflow_dispatch:
inputs:
pac_to_use:
description: "Name of the workflow secret to use"
type: string
required: true
branch:
description: "Branch that renovate should operate on"
type: string
required: true
jobs:
renovate:
... | Update renovatebot/github-action action to v34.13.2 | Update renovatebot/github-action action to v34.13.2
Signed-off-by: Renovate Bot <c71e7261d37a4f6ae4cfb0cbd79081310a237e67@renovateapp.com> | YAML | apache-2.0 | TNG/JGiven,TNG/JGiven,TNG/JGiven,TNG/JGiven |
017bce7de5771809d10ff7bcedae6051a9f02624 | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: CI
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
test:
name: Lint and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
- run: npm ci
- ... | name: CI
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
test:
name: Lint and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
- name: Install latest ... | Use latest npm in CI | Use latest npm in CI
| YAML | mit | hudochenkov/stylelint-config-hudochenkov,hudochenkov/stylelint-config-hudochenkov |
64f504608b25ddb52083f84088267ae0818a7a99 | provisioning/playbook.yaml | provisioning/playbook.yaml | ---
- name: Node
hosts: all
tasks:
- name: ensure python-software-properties
apt: name=python-software-properties state=present
sudo: true
- name: add Chris Lea's node.js repo
apt_repository: repo='ppa:chris-lea/node.js' state=present update-cache=yes
sudo: true
- name: ensure no... | ---
- name: Node
hosts: all
tasks:
- name: ensure python-software-properties
apt: name=python-software-properties state=present
sudo: true
- name: add Chris Lea's node.js repo
apt_repository: repo='ppa:chris-lea/node.js' state=present update-cache=yes
sudo: true
- name: ensure no... | Create temporary folder prior to mounting | Create temporary folder prior to mounting
| YAML | mit | mechanica/boilerplate,mechanica/boilerplate |
e36669b2537c0e3c5dce98f3ae6387afed7fe4ba | .builds/debian_stable.yml | .builds/debian_stable.yml | image: debian/stable
packages:
- cmake
- ncurses-dev
sources:
- https://github.com/donmccaughey/fiends_and_fortune
tasks:
- setup: |
cd fiends_and_fortune
cmake -S . -B tmp
- build: |
cd fiends_and_fortune
cmake --build tmp --target all test
triggers:
- action: em... | image: debian/stable
packages:
- cmake
- libbsd-dev
- ncurses-dev
sources:
- https://github.com/donmccaughey/fiends_and_fortune
tasks:
- setup: |
cd fiends_and_fortune
cmake -S . -B tmp
- build: |
cd fiends_and_fortune
cmake --build tmp --target all test
triggers:... | Add libbsd to Debian build on Sourcehut. | Add libbsd to Debian build on Sourcehut.
| YAML | bsd-2-clause | donmccaughey/FiendsAndFortune,donmccaughey/FiendsAndFortune,donmccaughey/FiendsAndFortune |
8ccededde23fbed04eb230ef55f02c09d615f34a | .github/workflows/ci.yaml | .github/workflows/ci.yaml | name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
python-version: ["3.9"]
env:
PYTHON_VERSION: ${{ matrix.python-version }}
OS: ${{ matrix.os }}
... | name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
python-version: ["3.9"]
env:
PYTHON_VERSION: ${{ matrix.python-version }}
OS: ${{ matrix.os }}
... | Fix CI micromamba on windows and non-windows | Fix CI micromamba on windows and non-windows
| YAML | mit | pytroll/donfig |
598c01b46fc8330e2d1d830e46cea30ef30efa2c | .github/workflows/ci.yaml | .github/workflows/ci.yaml | name: Build and publish to ECR
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
jobs:
build-publish-image-to-ecr:
uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main
secrets:
AWS_GOVUK_ECR... | name: CI
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
jobs:
build-and-publish-image:
name: Build and publish image
uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main
secrets:
AWS_... | Update CI workflow to trigger deploy to integration | Update CI workflow to trigger deploy to integration
This adds an additional job to the CI workflow to run a reusable
workflow that writes the newly built image tag to helm charts file.
This triggers ArgoCD to deploy the integration.
| YAML | mit | alphagov/manuals-frontend,alphagov/manuals-frontend,alphagov/manuals-frontend,alphagov/manuals-frontend |
1bd2883368b0c3d51a1e0b46c3e3da86d8c9295d | recipes/r-dbchip/meta.yaml | recipes/r-dbchip/meta.yaml | package:
name: r-dbchip
version: "1.1.6"
source:
fn: DBChIP_1.1.6.tar.gz
url: http://pages.cs.wisc.edu/~kliang/DBChIP/DBChIP_1.1.6.tar.gz
md5: f4b22bb2051ad6b2d33d4687754e8cee
build:
number: 0
# This is required to make R link correctly on Linux.
rpaths:
- lib/R/lib/
- lib/
requirements:
b... | package:
name: r-dbchip
version: "1.1.6"
source:
fn: DBChIP_1.1.6.tar.gz
url: http://pages.cs.wisc.edu/~kliang/DBChIP/DBChIP_1.1.6.tar.gz
md5: f4b22bb2051ad6b2d33d4687754e8cee
build:
number: 1
# This is required to make R link correctly on Linux.
rpaths:
- lib/R/lib/
- lib/
requirements:
b... | Add explicit build/run r requirement | Add explicit build/run r requirement
| YAML | mit | acaprez/recipes,ivirshup/bioconda-recipes,jasper1918/bioconda-recipes,daler/bioconda-recipes,jfallmann/bioconda-recipes,gvlproject/bioconda-recipes,rob-p/bioconda-recipes,JenCabral/bioconda-recipes,joachimwolff/bioconda-recipes,phac-nml/bioconda-recipes,JenCabral/bioconda-recipes,saketkc/bioconda-recipes,ivirshup/bioco... |
9d2a64e0bf7d66a0901d4268c888228524256914 | tasks/main.yml | tasks/main.yml | # This role prepares a runit folder structure.
# The run script itself has to be written by
# the caller.
---
- name: Create runit service directory
file:
path=/etc/sv/{{runit_name}}/log
state=directory
- name: Create runit supervise directory
file:
path={{item}}
state=directory
mode=0700
wit... | # This role prepares a runit folder structure.
# The run script itself has to be written by
# the caller.
---
- name: Create runit service directory
file:
path=/etc/sv/{{runit_name}}/log
state=directory
- name: Create runit supervise directory
file:
path={{item}}
state=directory
mode=0700
wit... | Allow to disable logging for specified services | Allow to disable logging for specified services
| YAML | apache-2.0 | betterplace/ansible-runit-structure |
c8ff75903056e636252fca1a15dfefc772354a98 | compose.ontowiki-setup/docker-compose.yml | compose.ontowiki-setup/docker-compose.yml | store:
image: aksw/dld-store-virtuoso7
presentation:
image: aksw/dld-present-ontowiki
links:
- store
ports:
- "8080:80"
|
store:
image: aksw/dld-store-virtuoso7
environment:
PWDDBA: "password"
volumes:
- /tmp/volumes/virt/:/var/lib/virtuoso/db/
presentation:
image: aksw/dld-present-ontowiki
links:
- store
ports:
- "8080:80"
| Add entries for environment password and volume | Add entries for environment password and volume
| YAML | apache-2.0 | Dockerizing/dockerizing-bootstrap,Dockerizing/dockerizing-bootstrap |
b463b8aa57efe514a88ef5924642ba6d99195bf2 | k8s-deploy/development/secrets.yaml | k8s-deploy/development/secrets.yaml |