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 |
|---|---|---|---|---|---|---|---|---|---|
706acae04b8883ee9d9c79f489641d1ad6d5add3 | .github/release-drafter.yml | .github/release-drafter.yml | _extends: .github
tag-template: flaky-test-handler-$NEXT_MINOR_VERSION
| _extends: .github
name-template: $NEXT_PATCH_VERSION
tag-template: $NEXT_PATCH_VERSION
version-template: $MAJOR.$MINOR.$PATCH
| Use semantic versioning in release drafter | Use semantic versioning in release drafter
As only $MAJOR.$MINOR is used in parent config [1].
[1] https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.yml | YAML | apache-2.0 | jenkinsci/flaky-test-handler-plugin,jenkinsci/flaky-test-handler-plugin |
e2a6668309be49047e758bfcccdfa453720ca5e1 | .github/workflows/build.yml | .github/workflows/build.yml | name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: ./.github/workflows/build.sh
env:
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- name: Deploy
if: github.ref == 'refs/heads/master'
... | name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: ./.github/workflows/build.sh
env:
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- name: Deploy
if: github.ref == 'refs/heads/main'
r... | Change default branch to "main" | Change default branch to "main"
| YAML | mit | frigus02/website,frigus02/website |
0ee1aab88fd44fa6d0f7e4384d1195a2a6212ae4 | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# Run weekly (* is a special character in YAML, so quote the string)
- cron: '0 0 * * 0'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
... | name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# Run weekly (* is a special character in YAML, so quote the string)
- cron: '0 0 * * 0'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, wi... | Add Windows back, but don't run tests. | Add Windows back, but don't run tests.
| YAML | mit | dstein64/PyFactorizationMachines |
124f7e8c5c6435d8d774b28e843918a98ca19800 | .github/workflows/build.yml | .github/workflows/build.yml | name: Build
on:
push:
branches: [main, master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
features:
- std
include:
- rust: nightly
features: std,nightly
continue-on-er... | name: Build
on:
push:
branches: [main, master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
features:
- std
include:
- rust: nightly
features: std,nightly
continue-on-er... | Stop using unmaintained github action | Stop using unmaintained github action
| YAML | mit | tmccombs/ptrplus |
4efafd802b1c84a810a5fc4da6f22fcd3c751aea | .github/workflows/build.yml | .github/workflows/build.yml | ---
name: build
on: [push, pull_request]
jobs:
ansible-lint:
name: Lint Ansible project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ansible/ansible-lint-action@v4
with:
override-deps: |
ansible==2.10.4
ansible-lint==4.3.7
... | ---
name: build
on: [push, pull_request]
jobs:
ansible-lint:
name: Lint Ansible project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ansible/ansible-lint-action@v4.1.0
with:
override-deps: |
ansible==2.10.4
ansible-lint==4.3.7
... | Use v4.1.0 release for ansible-lint-action | Use v4.1.0 release for ansible-lint-action
| YAML | mit | aglorei/dotfiles,aglorei/dotfiles |
c1c7b8d23be7669a0aa6c5f9c71b916a3799f9a6 | .github/workflows/build.yml | .github/workflows/build.yml | name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- 2.5.8
- 2.6.6
- 2.7.1
sprockets-version:
- "~> 2.2.0"
- "~> 2.12.0"
- "~> 3.0.0"
- "~> 3.1.0"
- "... | name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- 2.5.8
- 2.6.6
- 2.7.2
sprockets-version:
- "~> 2.2.0"
- "~> 2.12.0"
- "~> 3.0.0"
- "~> 3.1.0"
- "... | Update Ruby version to 2.7.2 on CI | Update Ruby version to 2.7.2 on CI
| YAML | mit | tricknotes/ember-es6_template,tricknotes/ember-es6_template |
0ef6fb91649fc4b694ae63c19347cea6c3d393e6 | .github/workflows/check.yml | .github/workflows/check.yml | name: Check
on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
# Run PHP checks for all supported versions.
check-php:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1']
steps:
- name: Checkout
uses: act... | name: Check
on:
push:
branches: ['2.0']
pull_request:
branches: ['2.0']
jobs:
# Run PHP checks for all supported versions.
check-php:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1']
steps:
- name: Checkout
uses: actions/c... | Update push and pull branches | Update push and pull branches
| YAML | mit | AngryBytes/domainobject |
0dc2035ce98bf88de811acc7988fb2adc2b88faa | .github/workflows/maven.yml | .github/workflows/maven.yml | name: Java CI with Maven, Coveralls
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
MAVEN_OPTS: -Xmx4g -Xms1g
repo_token: z2NyvKNpclvuc31m2yfZrpzrPr1cnLjSd
jobs:
build:
name: Build, Test, Coverage
runs-on: ubuntu-latest
steps... | name: Java CI with Maven, Coveralls
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
MAVEN_OPTS: -Xmx4g -Xms1g
repo_token: z2NyvKNpclvuc31m2yfZrpzrPr1cnLjSd
jobs:
build:
name: Build, Test, Coverage
runs-on: ubuntu-latest
steps... | Add persist-ccredentials: false for security | Add persist-ccredentials: false for security | YAML | apache-2.0 | DataSketches/sketches-core |
d83bfed0cf7a49bd4f44004cf990caa06bf9cf3c | .github/workflows/tests.yml | .github/workflows/tests.yml | name: tests
on: [push]
jobs:
tests:
name: Tests
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest', 'windows-latest', 'macos-latest']
php-versions: ['7.3', '7.4', '8.0']
steps:
- name: Checkout source
uses: actions/checko... | name: tests
on: [push, pull_request]
jobs:
tests:
name: Tests
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest', 'windows-latest', 'macos-latest']
php-versions: ['7.3', '7.4', '8.0']
steps:
- name: Checkout source
uses: ... | Add pull_request to trigger events | Add pull_request to trigger events
| YAML | mit | themichaelhall/bluemvc-fakes |
31451550c489d541fd5469392c7c51350c9938dc | generators/app/templates/_travis.yml | generators/app/templates/_travis.yml | language: node_js
node_js:
- "4.1"
install:
- npm install -g elm@0.16.0 casperjs http-server
- elm-package install -y
before_script:
- elm-make ./src/elm/TestRunner.elm --output test.html
- http-server '.' &
# Wait for compilation is done.
- until $(curl --output /dev/null --silent --head --fail http://1... | language: node_js
node_js:
- "4.1"
install:
- npm install -g elm@0.17.0 casperjs http-server
- elm-package install -y
before_script:
- elm-make ./src/elm/TestRunner.elm --output test.html
- http-server '.' &
# Wait for compilation is done.
- until $(curl --output /dev/null --silent --head --fail http://1... | Update elm version on Travis | Update elm version on Travis
| YAML | mit | Gizra/generator-elmlang,Gizra/generator-elmlang |
5f79af463a5f30bbab5862f4ed067f1c78985377 | roles/logstash/tasks/main.yml | roles/logstash/tasks/main.yml | ---
- name: Install packages
yum:
name:
- java-11-openjdk-headless
- logstash
state: present
- name: Add sysconfig file
template:
src: logstash_sysconfig.j2
dest: /etc/sysconfig/logstash
notify: Restart logstash
- name: Copy Logstash configs to /etc
copy:
remote_src: true
... | ---
- name: Install packages
yum:
name:
- java-11-openjdk-headless
- logstash
state: present
- name: Add sysconfig file
template:
src: logstash_sysconfig.j2
dest: /etc/sysconfig/logstash
notify: Restart logstash
- name: Copy Logstash configs to /etc
copy:
remote_src: true
... | Use variable for correct logstash pipeline configs | Use variable for correct logstash pipeline configs
| YAML | unknown | rocknsm/SimpleRock,rocknsm/SimpleRock,rocknsm/rock,CyberAnalyticDevTeam/SimpleRock,CyberAnalyticDevTeam/SimpleRock,rocknsm/rock,rocknsm/SimpleRock,CyberAnalyticDevTeam/SimpleRock,rocknsm/rock |
c8f0de33c1a0915499c3f9973eaeb24394171950 | paths/uploads/v3_uploads_uploadId_complete.yml | paths/uploads/v3_uploads_uploadId_complete.yml | post:
operationId: completeUploadSession
summary: Notify Bridge an upload is complete
description: |
Notify Bridge an upload is complete. Either a consented user or a worker
process can access this endpoing, but failure to have the worker role will
be treated like a consent error. ... | post:
operationId: completeUploadSession
summary: Notify Bridge an upload is complete
description: |
Notify Bridge an upload is complete. Either a consented user or a worker
process can access this endpoing, but failure to have the worker role will
be treated like a consent error. ... | Change completeUploadSession's return type from UploadSession to Message | Change completeUploadSession's return type from UploadSession to Message
| YAML | apache-2.0 | DwayneJengSage/BridgeJavaSDK,alxdarksage/BridgeJavaSDK,alxdarksage/BridgeJavaSDK,DwayneJengSage/BridgeJavaSDK,Sage-Bionetworks/BridgeJavaSDK,Sage-Bionetworks/BridgeJavaSDK |
af7d987b8f0dd536f7058d89c2586bdf28c3e71c | update_kb_bdi_tv5monde.yml | update_kb_bdi_tv5monde.yml | ---
# Ansible playbook for TV5 Monde BDI
#It will be always localhost
- hosts: localhost
roles:
# Has to be always enable
- logs
- role: kalite
version: "0.15"
- role: rename_device
ideascube_id: "kb_bdi_tv5monde"
when: ansible_hostname == 'kb-mooc-cog-492'
# - role: idc_imp... | ---
# Ansible playbook for TV5 Monde BDI
#It will be always localhost
- hosts: localhost
roles:
# Has to be always enable
- logs
- role: kalite
version: "0.15"
lang: "fr"
# - role: rename_device
# ideascube_id: "kb_bdi_tv5monde"
# when: ansible_hostname == 'kb-mooc-cog-492'... | Disable remane_device and specify lang variable for kalite | Disable remane_device and specify lang variable for kalite
| YAML | mit | ideascube/ansiblecube,ideascube/ansiblecube |
11941bf973c03ca1eb7d12259dfb1248e932dc5f | metadata/com.oriondev.moneywallet.yml | metadata/com.oriondev.moneywallet.yml | Categories:
- Money
License: GPL-3.0-only
SourceCode: https://github.com/AndreAle94/moneywallet
IssueTracker: https://github.com/AndreAle94/moneywallet/issues
Bitcoin: 1J3APoaFT2jcqRzpb8bEt2rwUn3mDpWE5U
AutoName: MoneyWallet
Summary: Expense Manager
Description: |-
MoneyWallet is an advanced expense manager that... | Categories:
- Money
License: GPL-3.0-only
SourceCode: https://github.com/AndreAle94/moneywallet
IssueTracker: https://github.com/AndreAle94/moneywallet/issues
Bitcoin: 1J3APoaFT2jcqRzpb8bEt2rwUn3mDpWE5U
AutoName: MoneyWallet
Summary: Expense Manager
Description: |-
MoneyWallet is an advanced expense manager that... | Update CV of MoneyWallet to 4.0.3.5 (61) | Update CV of MoneyWallet to 4.0.3.5 (61)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata,f-droid/fdroid-data |
277ee66cfab8d958e12c2c648003faa2988e03e8 | metadata/net.redwarp.gifwallpaper.yml | metadata/net.redwarp.gifwallpaper.yml | Categories:
- Theming
License: Apache-2.0
AuthorName: Benoit Vermont
SourceCode: https://github.com/redwarp/gif-wallpaper
IssueTracker: https://github.com/redwarp/gif-wallpaper/issues
AutoName: GIF Live Wallpaper
RepoType: git
Repo: https://github.com/redwarp/gif-wallpaper
Builds:
- versionName: 1.3.3
versio... | Categories:
- Theming
License: Apache-2.0
AuthorName: Benoit Vermont
SourceCode: https://github.com/redwarp/gif-wallpaper
IssueTracker: https://github.com/redwarp/gif-wallpaper/issues
AutoName: GIF Live Wallpaper
RepoType: git
Repo: https://github.com/redwarp/gif-wallpaper
Builds:
- versionName: 1.3.3
versio... | Update GIF Live Wallpaper to 1.3.4 (29) | Update GIF Live Wallpaper to 1.3.4 (29)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
77c35a22baa2c349711095b08b7420784fd80c01 | _data/releases/1.9/1.9.0.Final.yml | _data/releases/1.9/1.9.0.Final.yml | date: 2022-04-05
version: "1.9.0.Final"
stable: true
summary: Support secrets in Debezium Server; Support all Redis connection schemes; final bugfixes
announcement_url: /blog/2022/04/06/debezium-1-9-final-released/
connectors:
- cassandra-3
- cassandra-4 | date: 2022-04-05
version: "1.9.0.Final"
stable: true
summary: Support secrets in Debezium Server; Support all Redis connection schemes; final bugfixes
announcement_url: /blog/2022/04/06/debezium-1.9-final-released/
connectors:
- cassandra-3
- cassandra-4
| Fix URL of 1.9.0 announcement | Fix URL of 1.9.0 announcement
| YAML | apache-2.0 | debezium/debezium.github.io,debezium/debezium.github.io,debezium/debezium.github.io |
fb06567ef63ce7931b476ce19a54e9cb162cec8b | provisions/roles/bundle_waartaa/tasks/main.yml | provisions/roles/bundle_waartaa/tasks/main.yml | ---
- name: Bundle waartaa
command: meteor build ../dist --directory
args:
chdir: ../app
| ---
- name: Bundle waartaa
command: meteor build ../dist --directory --server={{ waartaa_root_url }}:443
args:
chdir: ../app
| Update command to bundle waartaa. | Update command to bundle waartaa.
| YAML | mit | waartaa/waartaa,waartaa/waartaa,waartaa/waartaa |
f4d2a9fdb7f60020850b1a14bc93508dad5bb196 | schema/Product.schema.yaml | schema/Product.schema.yaml | title: Product
'@id': schema:Product
extends: Thing
role: tertiary
status: stable
category: metadata
description: |
Any offered product or service. For example, a pair of shoes;
a haircut; or an episode of a TV show streamed online.
properties:
brand:
'@id': schema:brand
description: Brand that the produc... | title: Product
'@id': schema:Product
extends: Thing
role: tertiary
status: stable
category: metadata
description: |
Any offered product or service. For example, a pair of shoes;
a haircut; or an episode of a TV show streamed online.
properties:
brands:
'@id': schema:brand
description: Brands that the prod... | Make `brand` prop consistent with Organization | fix(Product): Make `brand` prop consistent with Organization
| YAML | apache-2.0 | stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila |
993f5eda8f5bdfe1592db2f22b3ac0f8f95b279c | kubeadm.yaml | kubeadm.yaml | kind: MasterConfiguration
apiVersion: kubeadm.k8s.io/v1alpha1
networking:
podSubnet: "10.244.0.0/16"
controllerManagerExtraArgs:
controllers: "*,-persistentvolume-binder"
horizontal-pod-autoscaler-use-rest-clients: "true"
node-monitor-grace-period: "10s"
apiServerExtraArgs:
runtime-config: "api/all=true"
fe... | kind: MasterConfiguration
apiVersion: kubeadm.k8s.io/v1alpha1
networking:
podSubnet: "10.244.0.0/16"
controllerManagerExtraArgs:
controllers: "*,-persistentvolume-binder"
horizontal-pod-autoscaler-use-rest-clients: "true"
horizontal-pod-autoscaler-sync-period: "10s"
node-monitor-grace-period: "10s"
apiServerE... | Set the autoscaling sync period to something small, and use selfhosting | Set the autoscaling sync period to something small, and use selfhosting
| YAML | mit | luxas/kubeadm-workshop,luxas/kubeadm-workshop |
23f941215a2f40123aa791af156111584527fd0f | packages/go/google-isbn.yaml | packages/go/google-isbn.yaml | homepage: https://github.com/apeyroux/google-isbn#readme
changelog-type: ''
hash: aa34bfee101247a7a86f7f899bfecde33998d9b2cd302b885d124a22a11ff841
test-bench-deps: {}
maintainer: alex@px.io
synopsis: ''
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.2 && <5'
text: -any
conduit: -any
conduit-extra: -a... | homepage: https://github.com/apeyroux/google-isbn#readme
changelog-type: ''
hash: 9baa01ec8a38d7227db54451e0ea9fbf36f0b5ba15adaad17f0e0b938289d816
test-bench-deps: {}
maintainer: alex@px.io
synopsis: ''
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.2 && <5'
text: -any
conduit: -any
conduit-extra: -a... | Update from Hackage at 2018-11-08T08:23:48Z | Update from Hackage at 2018-11-08T08:23:48Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c9105c0f1e9b26b45a92bb665681370509bd2fa9 | roles/postgresql/tasks/init-standby-common.yml | roles/postgresql/tasks/init-standby-common.yml | ---
- name: Stop PostgreSQL
service:
name: "{{ postgresql_service }}"
state: "stopped"
become: yes
- name: Remove PostgreSQL data dir
file:
path: "{{ postgresql_data_path }}/main"
state: absent
become: yes
- name: Take base backup of PostgreSQL database
shell: "{{ item }}"
environment:
... | ---
- name: Stop PostgreSQL
service:
name: "{{ postgresql_service }}"
state: "stopped"
become: yes
- name: Remove PostgreSQL data dir
file:
path: "{{ postgresql_data_path }}/main"
state: absent
become: yes
- name: Take base backup of PostgreSQL database
shell: "{{ item }}"
environment:
... | Replace "--xlog-method=stream" with "-X stream" | Replace "--xlog-method=stream" with "-X stream"
As of Postgres 10 "--xlog-method" has been replaced with "--wall-method"
but "-X" is compatible with both
| YAML | apache-2.0 | rciam/rciam-deploy,rciam/rciam-deploy |
c0e84eef12d532b8da6ebea004f462f0dceda18d | packages/ti/timeconsole.yaml | packages/ti/timeconsole.yaml | homepage: https://github.com/xpika/Time-Console
changelog-type: ''
hash: 5e19d6c4c486317c9c56fadf43b7608567bd7c0d7dab09500dffe4528f2f3526
test-bench-deps: {}
maintainer: hawk.alan@gmail.com
synopsis: time each line of terminal output
changelog: ''
basic-deps:
base: <10000
time: <10000
process: <10000
all-versions... | homepage: https://github.com/xpika/Time-Console
changelog-type: ''
hash: 3edffd087298bc18cd5d0e080df363beb6d1cd7c3f29c7f84b0ea28f4dbcc431
test-bench-deps: {}
maintainer: hawk.alan@gmail.com
synopsis: time each line of terminal output
changelog: ''
basic-deps:
base: <10000
time: <10000
process: <10000
all-versions... | Update from Hackage at 2019-03-15T02:01:47Z | Update from Hackage at 2019-03-15T02:01:47Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c73e930ce4d8639208f2a8333e24505acde6fe78 | build.yaml | build.yaml | repositories:
remote:
- https://repo1.maven.org/maven2
artifacts:
httpclient: org.apache.httpcomponents:httpclient:jar:4.3
httpcore: org.apache.httpcomponents:httpcore:jar:4.3
commons_codec: commons-codec:commons-codec:jar:1.8
commons_logging: commons-logging:commons-logging:jar:1.1.3
javax_servlet: or... | repositories:
remote:
- https://repo.maven.apache.org/maven2
artifacts:
httpclient: org.apache.httpcomponents:httpclient:jar:4.3
httpcore: org.apache.httpcomponents:httpcore:jar:4.3
commons_codec: commons-codec:commons-codec:jar:1.8
commons_logging: commons-logging:commons-logging:jar:1.1.3
javax_servl... | Use the canonical url to access maven central repository. | Use the canonical url to access maven central repository.
| YAML | apache-2.0 | realityforge/proxy-servlet,realityforge/proxy-servlet |
7efcfaf116524c8886f26f29e3c296adac2085c9 | scripts/people/mansam.yaml | scripts/people/mansam.yaml | # Hi! I'm Mansam.
# samlucidi.com is back up!
- blog: http://mansam.github.io/
feed: http://mansam.github.io/feeds/all.atom.xml
forges:
- http://github.com/mansam
- http://bitbucket.org/slucidi
irc: mansam
name: Sam Lucidi
rit_dce: sxl6435
hackprop1: http://mansam.github.io/articles/sprint1-projec... | # Hi! I'm Mansam.
# samlucidi.com is back up!
- blog: http://mansam.github.io/
feed: http://mansam.github.io/feeds/all.atom.xml
forges:
- http://github.com/mansam
- http://bitbucket.org/slucidi
irc: mansam
name: Sam Lucidi
rit_dce: sxl6435
hackprop1: http://www.samlucidi.com/fossrit-proposal-for-s... | Add links for hack1 and hackprop2 | Add links for hack1 and hackprop2
Also updates hackprop1's use of an out-of-date url scheme. | YAML | apache-2.0 | decause/advfoss |
548cf6921c7a3882a7174efec2abd77906b9ad17 | .github/workflows/build.yml | .github/workflows/build.yml | # Build project using CMake
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
uses: HorstBaerbel/action-cmake@1.0
with:
sourcedir: '.'
builddir: '... | # Build project using CMake
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
uses: HorstBaerbel/action-cmake@master
with:
sourcedir: '.'
builddir... | Use action master branch for testing | Use action master branch for testing | YAML | bsd-2-clause | HorstBaerbel/res2h,HorstBaerbel/res2h,HorstBaerbel/res2h |
696455b4f5da6cc724052274571d56f8c01d6f77 | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on: [push, pull_request]
env:
global:
NOKOGIRI_USE_SYSTEM_LIBRARIES=true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Ruby
uses: ruby/setup-ruby@master
with:
ruby-version: 2.6.3
- name: Install dependencies
... | name: build
on: [push, pull_request]
env:
global:
NOKOGIRI_USE_SYSTEM_LIBRARIES=true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Ruby
uses: ruby/setup-ruby@master
with:
ruby-version: 2.6.3
- name: Install dependencies
... | Fix package install in Github Actions | Fix package install in Github Actions
| YAML | mit | minetest/minetest.github.io,rubenwardy/minetest.github.io,minetest/minetest.github.io,rubenwardy/minetest.github.io,minetest/minetest.github.io,rubenwardy/minetest.github.io |
b7602491e87ff5c5eb0a1d1026f7a38279153e9f | _config/github_mapping.yml | _config/github_mapping.yml | - email: arun.p.gupta@oracle.com
github_id: arun-gupta
- email: argupta@argupta.csb
github_id: arun-gupta
- email: arungupta@users.noreply.github.com
github_id: arun-gupta
- email: patrik@dudits.net
github_id: pdudits
- email: contact@mgreau.com
github_id: mgreau
- email: psakar@redhat.com
github_id: psakar... | - email: arun.p.gupta@oracle.com
github_id: arun-gupta
- email: argupta@argupta.csb
github_id: arun-gupta
- email: arungupta@users.noreply.github.com
github_id: arun-gupta
- email: patrik@dudits.net
github_id: pdudits
- email: contact@mgreau.com
github_id: mgreau
- email: psakar@redhat.com
github_id: psakar... | Add some new manual github id -> email mappings | Add some new manual github id -> email mappings
| YAML | mit | javaee-samples/javaee-samples.github.io,javaee-samples/javaee-samples.github.io |
d970f6071e46bdc9dfbe5d2f3735dd4d97e1aec4 | .github/workflows/maven.yml | .github/workflows/maven.yml | name: Java CI with Maven
on: [ push ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B -f pom.xml install checkstyle:che... | name: Java CI with Maven
on: [ push ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B -f pom.xml install checkstyle:che... | Add branch reference on SonarQube command line | Add branch reference on SonarQube command line
| YAML | apache-2.0 | Hipparchus-Math/hipparchus,sdinot/hipparchus,Hipparchus-Math/hipparchus,Hipparchus-Math/hipparchus,sdinot/hipparchus,sdinot/hipparchus,sdinot/hipparchus,Hipparchus-Math/hipparchus |
c4d554a3bf2ce3dc73916babbc7d4b7ffdb6a4c6 | .github/workflows/tests.yml | .github/workflows/tests.yml | name: tests
on: [push]
jobs:
test-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.7'
- name: Install dependencies
run: |
gem install bundler
bundler install
- name: Run t... | name: tests
on: [push]
jobs:
test-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.7'
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles... | Set GitHub Actions to cache dependencies | Set GitHub Actions to cache dependencies
| YAML | mit | mattcone/markdown-guide,mattcone/markdown-guide |
511e13d1d561859b43c8593fc503bf71fdc3953e | circle.yml | circle.yml | machine:
xcode:
version: "8.1"
test:
override:
- swift test
| machine:
xcode:
version: "8.1"
test:
override:
- swift test
- xcodebuild -project Bases.xcodeproj -scheme Base16-iOS build test
- xcodebuild -project Bases.xcodeproj -scheme Base16-Mac build test
- xcodebuild -project Bases.xcodeproj -scheme Base32-iOS build test
- xcodebuild -project Bases... | Add Xcode-based builds to Circle CI | Add Xcode-based builds to Circle CI
| YAML | mit | mattrubin/Bases |
1182ab95555ce154039f8dc9ab853e7a90d6f4c2 | circle.yml | circle.yml | machine:
node:
version: 4.4.7
test:
override:
- grunt coverage
deployment:
release:
tag: /^[0-9]+(\.[0-9]+)*/
commands:
- grunt shipit:prd deploy
general:
artifacts:
- "test/coverage"
| machine:
node:
version: 4
test:
override:
- grunt coverage
deployment:
release:
tag: /^[0-9]+(\.[0-9]+)*/
commands:
- grunt shipit:prd deploy
general:
artifacts:
- "test/coverage"
| Use latest node 4 version | Use latest node 4 version
- always use the latest version of node 4 | YAML | mit | TryGhost/gscan |
48ca2e93a84c0b0ef76f96eeac54f4052b32d982 | circle.yml | circle.yml | test:
override:
# leftover build artifacts (in the tmp directory) can cause marshalling errors; delete tmp before every run.
- rm -Rf tmp
- RAILS_ENV=test bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml
general:
artifacts:
- log
- ... | test:
pre:
- rm -Rf tmp
override:
# leftover build artifacts (in the tmp directory) can cause marshalling errors; delete tmp before every run.
- RAILS_ENV=test bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml
general:
artifacts:
- log... | Move tmp dir cleanup to pre step. | Move tmp dir cleanup to pre step. | YAML | mit | jprokay/lale-help,lale-help/lale-help,diegoaad/lale-help,diegoaad/lale-help,lale-help/lale-help,jprokay/lale-help,lale-help/lale-help,lale-help/lale-help,diegoaad/lale-help,jprokay/lale-help,jprokay/lale-help,diegoaad/lale-help |
67582043330ed7f491ce99eeda53061682eee4e5 | circle.yml | circle.yml | test:
override:
- python setup.py nosetests --with-xunit --xunit-file $CIRCLE_TEST_REPORTS/nose/tests.xml
| test:
pre:
- mkdir -p $CIRCLE_TEST_REPORTS/nose
override:
- python setup.py nosetests --with-xunit --xunit-file $CIRCLE_TEST_REPORTS/nose/tests.xml
| Create the directory for test output | Create the directory for test output
| YAML | mit | prophile/pycat |
4c37b814e5d2a5346c046d2e1370a52dfcf6b9e2 | circle.yml | circle.yml | machine:
services:
- docker
pre:
- sudo curl -L -o /usr/bin/docker 'http://s3-external-1.amazonaws.com/circle-downloads/docker-1.9.1-circleci'; sudo chmod 0755 /usr/bin/docker; true
dependencies:
override:
- make build
test:
override:
- make tests
| machine:
services:
- docker
pre:
- sudo curl -L -o /usr/bin/docker 'http://s3-external-1.amazonaws.com/circle-downloads/docker-1.10.0-circleci'; sudo chmod 0755 /usr/bin/docker; true
dependencies:
override:
- make build
test:
override:
- make tests
| Update to docker 1.10.0 image for circile ci | Update to docker 1.10.0 image for circile ci
1.10.1 not available yet
| YAML | mit | AlbanMontaigu/docker-toolbox,AlbanMontaigu/docker-devbox |
78989702961dc67446834a61cd985cd8e1da9d11 | circle.yml | circle.yml | general:
branches:
ignore:
- gh-pages
machine:
java:
version: oraclejdk7
environment:
TERM: dumb
CI_NAME: Circle-CI
CI_BRANCH: $CIRCLE_BRANCH
CI_BUILD_NUMBER: $CIRCLE_BUILD_NUM
CI_BUILD_URL: $CIRCLE_COMPARE_URL
GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs="-X... | general:
branches:
ignore:
- gh-pages
machine:
java:
version: oraclejdk7
environment:
TERM: dumb
CI_NAME: Circle-CI
CI_BRANCH: $CIRCLE_BRANCH
CI_BUILD_NUMBER: $CIRCLE_BUILD_NUM
CI_BUILD_URL: $CIRCLE_COMPARE_URL
GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs="-X... | Call the code coverage report | Call the code coverage report
(1694)
| YAML | apache-2.0 | yelhouti/springfox,springfox/springfox,yelhouti/springfox,springfox/springfox,yelhouti/springfox,springfox/springfox,springfox/springfox |
c202711bbf10638caa9362faa8c89420d5e12c9d | app/config/config_prod.yml | app/config/config_prod.yml | imports:
- { resource: config.yml }
monolog:
handlers:
main:
type: fingerscrossed
action_level: error
handler: nested
nested:
type: stream
path: %kernel.logs_dir%/%kernel.environment%.log
level: debug
| imports:
- { resource: config.yml }
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: nested
nested:
type: stream
path: %kernel.logs_dir%/%kernel.environment%.log
level: debug
| Adjust for latest MonologBundle change | Adjust for latest MonologBundle change
| YAML | mit | mbence/csaladsegito,flyboarder/AirOS_pre2.0,flyboarder/AirOS_pre2.0,mbence/csaladsegito,flyboarder/AirOS_pre2.0,flyboarder/AirOS_pre2.0,mbence/csaladsegito,flyboarder/AirOS_pre2.0 |
e2c0f300ab69029abbd95ebf2381d9901dc56a16 | app/config/config_test.yml | app/config/config_test.yml | imports:
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
profiler:
collect: false
web_profiler:
toolbar: false
intercept_redirects: false
swiftmailer:
disable_delivery: true
| imports:
- { resource: config_dev.yml }
- { resource: parameters_test.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
profiler:
collect: false
web_profiler:
toolbar: false
intercept_redirects: false
swiftmailer:
disable_delivery: true
| Use testing parameters in testing env | Use testing parameters in testing env
| YAML | mit | iimog/wikidata-game-flower-color,iimog/wikidata-game-flower-color |
7cd96a2de94e0f314bba884e7cb6a1da63c27f3a | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
python-version: [3.7, 3.8]
marker: [not integration]
os: [ubuntu-latest]
include:
- python-version: 3.9
marker: ''
os: ubuntu-... | name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
marker: [not integration]
include:
- python-version: 3.9
marker: ''
- python-versi... | Revert "Add test runner for mac os" | Revert "Add test runner for mac os"
This reverts commit aa75fadfe28f3e0a95eeb75ae59a524a67f08a79.
| YAML | mit | alisaifee/limits,alisaifee/limits |
f4148c647b890cf53501f1923d5a4605372e66ee | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
push:
branches: [ feature/github-actions-for-windows-compilers ]
pull_request:
branches: [ master ]
jobs:
build-windows-vs2019:
name: Windows VS2019 Debug
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recurs... | name: CI
on:
push:
branches: [ feature/github-actions-for-windows-compilers ]
pull_request:
branches: [ master ]
jobs:
build-windows-vs2019:
name: Windows VS2019 Debug
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recurs... | Add VS2019 configuration to Github CI | Add VS2019 configuration to Github CI
| YAML | mit | ETLCPP/etl,ETLCPP/etl,ETLCPP/etl,ETLCPP/etl |
7c0834da2b63ea1c2771b82b1fea6930529b5a78 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: ./.github/actions/tweet-commit
| name: Tweet commit
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: ./.github/actions/tweet-commit
| Fix issue with actions workflow. | Fix issue with actions workflow. | YAML | cc0-1.0 | carlosperate/awesome-microbit,carlosperate/awesome-microbit |
d74b403ae7af583b2aa828ae09177e1d81f2dc08 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI test
on:
# Triggers the workflow on push or pull request events but only for the dev branch
- pull_request
- push
# Allows you to run this workflow manually from the Actions tab
- workflow_dispatch
jobs:
install-and-test:
runs-on: ubuntu-latest
services:
rumors-test-db:
imag... | name: CI test
on:
# Triggers the workflow on push or pull request events but only for the dev branch
- pull_request
- push
# Allows you to run this workflow manually from the Actions tab
- workflow_dispatch
jobs:
install-and-test:
runs-on: ubuntu-latest
services:
rumors-test-db:
imag... | Adjust node-version to see if node-gyp passes Also to be consistent with Dockerfile's NodeJS version | Adjust node-version to see if node-gyp passes
Also to be consistent with Dockerfile's NodeJS version
| YAML | mit | MrOrz/rumors-api,cofacts/rumors-api,MrOrz/rumors-api |
3fd00095b74e87891191b31bc9e3d0186225717e | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.3, 7.4, 8.0]
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
co... | name: CI
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.4, 8.0]
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverag... | Remove php 7.3 from test | Remove php 7.3 from test
| YAML | mit | wordplate/framework |
efc067217a7bb2bfcb991a479174b747dd3eef13 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: Node CI
on: [push, pull_request]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.2
with:
... | name: Node CI
on: [push, pull_request]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.2
with:
... | Use custom token for the merge | Use custom token for the merge
| YAML | mit | noflo/noflo-ui,noflo/noflo-ui |
9dd35e7853e498c9681188374ad13c257a4e5ca1 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
branches:
- master
pull_request:
branches:
- "**"
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
jobs:
tests:
name: Unix tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
toolchain: [stabl... | name: CI
on:
push:
branches:
- master
pull_request:
branches:
- "**"
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
jobs:
tests:
name: Unix tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
toolchain: [stabl... | Build wasm binding, run wasm tests on GH actions | Build wasm binding, run wasm tests on GH actions
| YAML | mit | tree-sitter/tree-sitter,tree-sitter/tree-sitter,tree-sitter/tree-sitter,tree-sitter/tree-sitter,tree-sitter/tree-sitter,tree-sitter/tree-sitter,tree-sitter/tree-sitter |
52d2b8b65564a5c72d8727cec697f59105090cc6 | app/config/config_live.yml | app/config/config_live.yml | imports:
- { resource: /etc/royaloperahouse.ini }
- { resource: config.yml }
monolog:
handlers:
main:
type: stream
path: %kernel.logs_dir%/%kernel.environment%.log
level: debug
| imports:
- { resource: config.yml }
monolog:
handlers:
main:
type: stream
path: %kernel.logs_dir%/%kernel.environment%.log
level: debug
| Remove legacy reference to an internal configuration file. | Remove legacy reference to an internal configuration file.
| YAML | mit | royaloperahouse/stack-manager,royaloperahouse/stack-manager |
ec5d9cd4087f52889d5010c431d645e569a5118e | app/config/config_prod.yml | app/config/config_prod.yml | imports:
- { resource: config.yml }
# In production environment you should know that the parameters for URL generation
# always pass the requirements. Otherwise it would break your link (or even site with
# strict_requirements = true). So we can disable the requirements check completely for
# enhanced performance ... | imports:
- { resource: config.yml }
# In production environment you should know that the parameters for URL generation
# always pass the requirements. Otherwise it would break your link (or even site with
# strict_requirements = true). So we can disable the requirements check completely for
# enhanced performance ... | Remove sentry configuration from production | Remove sentry configuration from production
| YAML | mit | ChrisdAutume/EtuUTT,ChrisdAutume/EtuUTT,ungdev/EtuUTT,ungdev/EtuUTT,ChrisdAutume/EtuUTT,ungdev/EtuUTT,ungdev/EtuUTT,ChrisdAutume/EtuUTT |
28aa39a0a079abef98ae47de064e5f9ae83a0c23 | metadata/com.github.niqdev.ipcam.yml | metadata/com.github.niqdev.ipcam.yml | Categories:
- Internet
License: MIT
AuthorName: niqdev
AuthorEmail: niqdev.info@gmail.com
SourceCode: https://github.com/niqdev/ipcam-view
IssueTracker: https://github.com/niqdev/ipcam-view/issues
AutoName: IPCam Demo
Description: |-
Demo app for the [https://github.com/niqdev/ipcam-view ipcam-view library] with... | Categories:
- Internet
License: MIT
AuthorName: niqdev
AuthorEmail: niqdev.info@gmail.com
SourceCode: https://github.com/niqdev/ipcam-view
IssueTracker: https://github.com/niqdev/ipcam-view/issues
AutoName: IPCam Demo
Description: |-
Demo app for the [https://github.com/niqdev/ipcam-view ipcam-view library] with... | Update CV of IPCam Demo to 1.7.0 (10) | Update CV of IPCam Demo to 1.7.0 (10)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
b57992928ea669e694aa8bd671a4d28b9c358698 | .github/workflows/convert-blogpost-to-xml.yml | .github/workflows/convert-blogpost-to-xml.yml | #Run jekyll2cms in a Docker container to convert the new blogpost into XML
name: convert-blogpost-to-xml
on:
push:
branches:
- master
jobs:
pull-jekyll2cms-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Pull Docker image
run: d... | #Run jekyll2cms in a Docker container to convert the new blogpost into XML
name: convert-blogpost-to-xml
on:
push:
branches:
- master
jobs:
pull-and-run-jekyll2cms-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Pull Docker image
... | Unify pull & run steps | Unify pull & run steps
| YAML | mit | adessoAG/devblog,adessoAG/devblog,adessoAG/devblog,adessoAG/devblog |
ad1f6adf3c34648b3608b59cd7543620f568e643 | circle.yml | circle.yml | dependencies:
pre:
- echo $GCLOUD_SERVICE_KEY | base64 --decode --ignore-garbage > ${HOME}/gcloud-service-key.json
- sudo /opt/google-cloud-sdk/bin/gcloud --quiet components update
- sudo /opt/google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json
- sudo /... | dependencies:
pre:
- echo $GCLOUD_SERVICE_KEY | base64 --decode --ignore-garbage > ${HOME}/gcloud-service-key.json
- sudo /opt/google-cloud-sdk/bin/gcloud --quiet components update
- sudo /opt/google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json
- sudo /... | Add zone to compute instance request | Add zone to compute instance request
| YAML | mit | Gamebuildr/Hal |
0fda7da80abcee4fb79da591f7137d6c0afd906e | circle.yml | circle.yml | ---
machine:
java:
version: oraclejdk8
environment:
TERM: dumb
checkout:
post:
- "if [ -e .git/shallow ]; then git fetch --unshallow; fi"
- git fetch --tags
- git submodule update --init --remote
dependencies:
override:
- ./gradlew --stacktrace --parallel client:dependencies plugins:d... | ---
machine:
java:
version: oraclejdk8
environment:
TERM: dumb
checkout:
post:
- "if [ -e .git/shallow ]; then git fetch --unshallow; fi"
- git fetch --tags
- git submodule update --init --remote
dependencies:
override:
- ./gradlew --stacktrace --parallel client:dependencies plugins:d... | Add artifacts to meta build. | Add artifacts to meta build.
| YAML | mit | DMDirc/Meta,csmith/Meta |
03206d3a8357da158e77f63b1192ae22e4a9e0fb | circle.yml | circle.yml | machine:
ruby:
version: 1.9.3-p385
node:
version: 6.2.2
dependencies:
pre:
- 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
- npm set progress=false
bundler:
without:
- benchmark
- deploy
- production
- debug
cache_directories:
- .bundle/
te... | machine:
ruby:
version: 1.9.3-p385
node:
version: 6.2.2
dependencies:
pre:
- 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
- npm set progress=false
bundler:
without:
- benchmark
- deploy
- production
- debug
cache_directories:
- .bundle/
te... | Remove linting from CI tests | Remove linting from CI tests
| YAML | mit | t-kelly/slate,t-kelly/slate |
2353b037cd4a0e3d395209fd2f4f97c21b759f12 | circle.yml | circle.yml | machine:
services:
- docker
dependencies:
override:
- docker info
- sudo pip install --upgrade docker-compose==1.2.0
# builds the image as a dependency
- docker build -t soutech/champaign_web .
test:
override:
# tests the built image through docker-compose
- annotate-output docker-co... | machine:
services:
- docker
dependencies:
override:
- docker info
- sudo pip install --upgrade docker-compose==1.2.0
# builds the image as a dependency
- docker build -t soutech/champaign_web .
test:
override:
# tests the built image through docker-compose
- annotate-output docker-co... | Change yaml deploy branch to aws-update-branch to pass through tests in build and to push to Docker Hub. | Change yaml deploy branch to aws-update-branch to pass through tests in build and to push to Docker Hub.
| YAML | mit | SumOfUs/Champaign,SumOfUs/Champaign,SumOfUs/Champaign,SumOfUs/Champaign,SumOfUs/Champaign |
aea115c7f9935fd75c96fae66b05796213a3f675 | circle.yml | circle.yml | dependencies:
cache_directories:
- ~/rethinkdb
pre:
- |
if [ ! -f ~/rethinkdb/*.deb ] ; then
source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
wget -qO- http://download.rethinkdb.com/apt/pubk... | machine:
node:
version: 0.12.0
dependencies:
cache_directories:
- ~/rethinkdb
pre:
- |
if [ ! -f ~/rethinkdb/*.deb ] ; then
source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
wget -qO- ... | Make CircleCI use node v0.12.0 | Make CircleCI use node v0.12.0
| YAML | mit | FOUfashion/api |
6039c97268277da51f1364af0833895171d32657 | circle.yml | circle.yml | # Set up the machine
machine:
environment:
COVERALLS_REPO_TOKEN: 26O5nwca92Yp0383fqlTwPQKAz4652pEo
# Install stuff
dependencies:
cache_directories:
- "~/miniconda3/pkgs"
override:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- pushd ${HOME}/mi... | # Set up the machine
machine:
environment:
COVERALLS_REPO_TOKEN: 26O5nwca92Yp0383fqlTwPQKAz4652pEo
# Install stuff
dependencies:
cache_directories:
- "~/miniconda3/pkgs"
override:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- pushd ${HOME}/mi... | Create new conda environment instead of using root environment. | Create new conda environment instead of using root environment.
| YAML | apache-2.0 | EducationalTestingService/rsmtool |
634ae8917067abf025265091a979c30b3f5e603f | circle.yml | circle.yml | dependencies:
override:
- curl -L https://atom.io/download/deb -o atom-amd64.deb
- sudo dpkg --install atom-amd64.deb || true
- sudo apt-get update
- sudo apt-get -f install
- node --version
- npm --version
- atom --version
- npm prune
- npm install
- apm rebuild
- npm run ... | dependencies:
override:
- curl -L https://atom.io/download/deb -o atom-amd64.deb
- sudo dpkg --install atom-amd64.deb || true
- sudo apt-get update
- sudo apt-get -f install
- node --version
- npm --version
- atom --version
- npm prune
- npm install
- apm rebuild
- npm run ... | Fix ci build script name | :bug: Fix ci build script name
| YAML | mit | steelbrain/consistent-env |
c72a6f15f8493a9e43dfe496f4a41b2197ef8d6c | circle.yml | circle.yml | machine:
java:
version: oraclejdk8
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "android-23"
- echo y | android update sdk --no-ui --all --filter "build-tools-23.0.1"
test:
override:
# start the emulator
- emulator -avd circleci-android21 -no-audio -no-window:
... | machine:
java:
version: oraclejdk8
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "android-23"
- echo y | android update sdk --no-ui --all --filter "build-tools-23.0.1"
test:
override:
- ./gradlew :demo:test :demo:jacocoUnitTestReport
# start the emulator
- emula... | Build and junit tests before starting the emulator | Build and junit tests before starting the emulator
| YAML | apache-2.0 | fabioCollini/mv2m |
6c987b9006e0ddf2bceb238dc62f13b2a2c54a3a | circle.yml | circle.yml | machine:
services:
- docker
environment:
PACKER_VERSION: 0.10.1
general:
branches:
ignore:
- gh-pages # list of branches to ignore
dependencies:
pre:
- >
sudo apt-get update &&
sudo apt-get install -qq wget unzip &&
pushd /usr/bin &&
echo "Downloading packer ${PAC... | machine:
services:
- docker
environment:
PACKER_VERSION: 0.10.1
general:
branches:
ignore:
- gh-pages # list of branches to ignore
dependencies:
pre:
- >
sudo apt-get update &&
sudo apt-get install -qq wget unzip &&
pushd /usr/bin &&
echo "Downloading packer ${PAC... | Fix CircleCI with fake token | Fix CircleCI with fake token
Signed-off-by: Nicolas Lamirault <57a11b2dec5b8363280015e1663433805cc2169e@gmail.com>
| YAML | apache-2.0 | nlamirault/bento |
a2f1f0ce8675244f44f5aca5392d32108fa2043c | circle.yml | circle.yml | machine:
python:
version: 3.5.2
dependencies:
pre:
- pip install --upgrade pip
- pip install sphinx-foundation-theme
- git clone -b gh-pages git@github.com:KitwareMedical/SlicerITKUltrasoundDoc Documentation/build/html
- cd Documentation/build/html && git config user.name CircleCI && git config... | machine:
python:
version: 3.5.2
dependencies:
pre:
- pip install --upgrade pip
- pip install sphinx-foundation-theme
- pip install ctk-cli
- git clone -b gh-pages git@github.com:KitwareMedical/SlicerITKUltrasoundDoc Documentation/build/html
- cd Documentation/build/html && git config user.n... | Install ctk-cli in CircleCI dependencies | DOC: Install ctk-cli in CircleCI dependencies
| YAML | apache-2.0 | KitwareMedical/SlicerITKUltrasound,KitwareMedical/SlicerITKUltrasound |
2da4669db9485576fd5a317b1e3094c06e5e99ff | circle.yml | circle.yml | dependencies:
override:
- bundle install
- npm install -g sassdoc
general:
branches:
ignore:
- gh-pages
test:
override:
- bundle exec rake
post:
- sassdoc core/ --parse --verbose --strict
| dependencies:
override:
- bundle install
- npm install -g sassdoc
general:
branches:
ignore:
- gh-pages
machine:
node:
version: 6.9.5
test:
override:
- bundle exec rake
post:
- sassdoc core/ --parse --verbose --strict
| Set the version of Node.js for CircleCI | Set the version of Node.js for CircleCI
| YAML | mit | thoughtbot/bourbon,Jazz-Man/bourbon,thoughtbot/bourbon,Jazz-Man/bourbon |
fef18b6fd2dc1d88216c62dc08d263a35b3fbc20 | circle.yml | circle.yml | version: 2
jobs:
build:
working_directory: ~/code
docker:
- image: circleci/android:api-26-alpha
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "library/build.gradle" }}
- run:
n... | version: 2
jobs:
build:
working_directory: ~/code
docker:
- image: circleci/android:api-26-alpha
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "library/build.gradle" }}
- run:
n... | Add UI test task and debug info to CircleCI | Add UI test task and debug info to CircleCI
| YAML | mit | thyrlian/AwesomeValidation,thyrlian/AwesomeValidation |
d48a593523daa166cfdf02e9ebdf4d6eda0a59b6 | circle.yml | circle.yml | machine:
node:
version: 0.12.7
dependencies:
# cache_directories:
pre:
- sudo /opt/google-cloud-sdk/bin/gcloud -q components update
- sudo chown -R ubuntu:ubuntu ~/.config/gcloud
- echo $GCLOUD_AUTH_KEY | base64 --decode > ~/gcloud_auth.json
- gcloud auth activate-service-account $GCLOUD_AUTH... | machine:
node:
version: 0.12.7
dependencies:
# cache_directories:
pre:
- sudo /opt/google-cloud-sdk/bin/gcloud -q components update
- sudo chown -R ubuntu:ubuntu ~/.config/gcloud
- echo $GCLOUD_AUTH_KEY | base64 --decode > ~/gcloud_auth.json
- gcloud auth activate-service-account $GCLOUD_AUTH... | Install bower before running bower install | Install bower before running bower install
| YAML | apache-2.0 | o19s/splainer,o19s/splainer,o19s/splainer |
6483689123e6e9832faa85e97790ae889f051c35 | metadata/de.bahnhoefe.deutschlands.bahnhofsfotos.yml | metadata/de.bahnhoefe.deutschlands.bahnhofsfotos.yml | Categories:
- Navigation
- Games
License: MIT
AuthorName: Railwaystations Team
WebSite: https://railway-stations.org
SourceCode: https://github.com/RailwayStations/RSAndroidApp
IssueTracker: https://github.com/RailwayStations/RSAndroidApp/issues
AutoName: Railway station photos
RepoType: git
Repo: https://github.... | Categories:
- Navigation
- Games
License: MIT
AuthorName: Railwaystations Team
WebSite: https://railway-stations.org
SourceCode: https://github.com/RailwayStations/RSAndroidApp
IssueTracker: https://github.com/RailwayStations/RSAndroidApp/issues
AutoName: Railway station photos
RepoType: git
Repo: https://github.... | Update Railway station photos to 12.4.1 (56) | Update Railway station photos to 12.4.1 (56)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
04a4fb92f1a83dfef502dea2780275a774cbdcfa | recipes/pluginbase/meta.yaml | recipes/pluginbase/meta.yaml | {% set name = "pluginbase" %}
{% set version = "0.5" %}
{% set sha256 = "b4f830242a078a4f44c978a84f3365bba4d008fdd71a591c71447f4df35354dd" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name... | {% set name = "pluginbase" %}
{% set version = "0.5" %}
{% set sha256 = "b4f830242a078a4f44c978a84f3365bba4d008fdd71a591c71447f4df35354dd" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name... | Add a test section to check if the module is importable. | Add a test section to check if the module is importable.
| YAML | bsd-3-clause | patricksnape/staged-recipes,Juanlu001/staged-recipes,petrushy/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,pmlandwehr/staged-recipes,ceholden/staged-recipes,mcs07/staged-recipes,ocefpaf/staged-recipes,SylvainCorlay/staged-recipes,rvalieris/staged-recipes,jakirkham/staged-recipes,kwilcox/staged-... |
59de783535e5aabd5d68cd1d6ab425a8cd754b47 | .github/workflows/ghsa-sync-jira.yml | .github/workflows/ghsa-sync-jira.yml | name: GitHub Security Alerts for Jira
on:
schedule:
- cron: '0 */1 * * *'
jobs:
syncSecurityAlerts:
runs-on: ubuntu-latest
steps:
- name: "Sync security alerts to Jira issues"
uses: reload/github-security-jira@v1.x
env:
GH_SECURITY_TOKEN: ${{ secrets.GH_TOKEN }}
... | name: GitHub Security Alerts for Jira
on:
schedule:
- cron: '0 */6 * * *'
jobs:
syncSecurityAlerts:
runs-on: ubuntu-latest
steps:
- name: "Sync security alerts to Jira issues"
uses: reload/github-security-jira@v1.x
env:
GH_SECURITY_TOKEN: ${{ secrets.GH_TOKEN }}
... | Change security sync to every 6 hours | Change security sync to every 6 hours | YAML | mit | syntacticNaCl/budgeit,syntacticNaCl/budgeit,syntacticNaCl/budgeit |
f067ebc8095b3db7814d08cdbc10741520a23919 | .github/workflows/release-please.yml | .github/workflows/release-please.yml | on:
push:
branches:
- main
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: node
package-name: release-please-action
- uses: actions/checkout@v2
if: ${... | on:
push:
branches:
- main
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: node
package-name: release-please-action
- uses: actions/checkout@v2
if: ${... | Add message when deploying new version | chore: Add message when deploying new version
| YAML | apache-2.0 | gsuitedevs/apps-script-oauth1,googleworkspace/apps-script-oauth1 |
3d5d9706f74fc53107387a872885fd6248476ffe | wercker.yml | wercker.yml | build:
box:
id: niaquinto/gradle
entrypoint: /bin/bash -c
steps:
- script:
name: Build java code
code: |
gradle assemble
- script:
name: Run Junit Tests
code: |
gradle test
deploy:
box: coenvl/alpine-git
steps:
- add-to-known_ho... | build:
box:
id: niaquinto/gradle
entrypoint: /bin/sh -c "/bin/bash"
steps:
- script:
name: Build java code
code: |
gradle assemble
- script:
name: Run Junit Tests
code: |
gradle test
deploy:
box: coenvl/alpine-git
steps:
- add-t... | Fix from guys at slack | Fix from guys at slack
| YAML | apache-2.0 | coenvl/jSAM,coenvl/jSAM |
c7da6bd3a3933eaca74e3a0a16e777784ffc97d7 | lib/jekyll_picture_tag/defaults/presets.yml | lib/jekyll_picture_tag/defaults/presets.yml | markup: auto
formats: [original]
widths: [400, 600, 800, 1000]
fallback_width: 800
fallback_format: original
noscript: false
link_source: false
quality: 75
| markup: auto
formats: [original]
widths: [400, 600, 800, 1000]
fallback_width: 800
fallback_format: original
noscript: false
link_source: false
quality: 75
data_sizes: true
| Set default data_size setting true | Set default data_size setting true
| YAML | bsd-3-clause | robwierzbowski/jekyll-picture-tag |
e375bfea8b073ad4c26266a4a72520577e9df147 | .binstar.yml | .binstar.yml | package: odo
user: blaze
platform:
- linux-64
- linux-32
- osx-64
- win-32
- win-64
engine:
- python=2.6
- python=2.7
- python=3.3
- python=3.4
before_script:
- python -V
script:
- conda config --add channels blaze
- conda build conda.recipe
env:
- LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
ioti... | package: odo
user: blaze
platform:
- linux-64
- linux-32
- osx-64
- win-32
- win-64
engine:
- python=2.6
- python=2.7
- python=3.3
- python=3.4
before_script:
- python -V
install:
- conda config --add channels blaze
script:
- conda build conda.recipe
env:
- LC_ALL=en_US.UTF-8 LANG=en_US.U... | Move config add to install key | Move config add to install key
| YAML | bsd-3-clause | cpcloud/odo,Dannnno/odo,ContinuumIO/odo,alexmojaki/odo,quantopian/odo,cowlicks/odo,ContinuumIO/odo,Dannnno/odo,quantopian/odo,cowlicks/odo,blaze/odo,alexmojaki/odo,blaze/odo,ywang007/odo,ywang007/odo,cpcloud/odo |
750ac9cc155538c5fd18619881fcf0ca43821bf8 | .codacy.yaml | .codacy.yaml | ---
exclude_paths:
- "**/src/test/**/*.*"
| ---
exclude_paths:
- "**/src/test/**/*.*"
# Exclude logging package because of underscored names.
- "**/src/main/**/logging/*.*"
| Exclude `logging` package from Codacy testing because of method names prefixed with underscores. | Exclude `logging` package from Codacy testing because of method names
prefixed with underscores.
This is pretty safe, since the main quality check is done by
Error Prone.
| YAML | apache-2.0 | SpineEventEngine/base,SpineEventEngine/base,SpineEventEngine/base |
e0255cc2027de05eb4c148d18789ce2e51b21548 | .rubocop.yml | .rubocop.yml | AllCops:
Exclude:
- 'Gemfile'
- 'Guardfile'
- 'Rakefile'
- 'bin/**/*'
- 'config/**/*'
- 'db/**/*'
- 'lib/**/*'
- 'spec/**/*'
- 'app/helpers/flashes_helper.rb'
- 'vendor/**/*'
Layout/SpaceInsideHashLiteralBraces:
Enabled: false
Metrics/LineLength:
Max: 85
Style/Documentat... | AllCops:
Exclude:
- 'Gemfile'
- 'Guardfile'
- 'Rakefile'
- 'bin/**/*'
- 'config/**/*'
- 'db/**/*'
- 'lib/**/*'
- 'spec/**/*'
- 'app/helpers/flashes_helper.rb'
- 'vendor/**/*'
Layout/SpaceInsideHashLiteralBraces:
Enabled: false
Metrics/LineLength:
Max: 85
Naming/Uncommuni... | Add exceptions for unhelpful cops | Add exceptions for unhelpful cops
| YAML | agpl-3.0 | nilbus/github-portfolio,nilbus/github-portfolio,nilbus/github-portfolio,nilbus/github-portfolio |
4a695af7d8ac4ada301d37081f2abb268f37b250 | roles/common/tasks/main.yaml | roles/common/tasks/main.yaml | ---
- name: Set up locales
locale_gen: name={{item}} state=present
sudo: true
with_items:
- fr_FR.UTF-8
- en_US.UTF-8
- name: apt-get update
apt: update_cache=yes cache_valid_time=3600
sudo: true
- name: apt-get upgrade
apt: upgrade=full
sudo: true
- name: Set hostname
hostname: name={{inven... | ---
- name: Set up locales
locale_gen: name={{item}} state=present
sudo: true
with_items:
- fr_FR.UTF-8
- en_US.UTF-8
- name: apt-get update
apt: update_cache=yes cache_valid_time=3600
sudo: true
- name: apt-get upgrade
apt: upgrade=full
sudo: true
- name: Set hostname
hostname: name={{inven... | Fix hostname should resolve to loopback in /etc/hosts | Fix hostname should resolve to loopback in /etc/hosts
| YAML | mit | adrienkohlbecker/hypervisor,adrienkohlbecker/hypervisor |
95e5f87e0026b90b37673e5aa38fc332e22da97b | roles/hipache/tasks/main.yml | roles/hipache/tasks/main.yml | ---
# tasks file for hipach
- name: Add tsuru repositories.
apt_repository: repo='ppa:tsuru/ppa' update_cache=yes
- name: Install system packages.
apt: update_cache=true name="{{ item }}"
with_items: packages
- name: Install Hipache packages with npm
npm: global=yes name=hipache state=present
- name: copy h... | ---
# tasks file for hipach
- name: Add tsuru repositories.
apt_repository: repo='ppa:tsuru/ppa' update_cache=yes
- name: Install system packages.
apt: update_cache=true name="{{ item }}"
with_items: packages
# hipache package shipped with ubuntu does not allow
# to specify an external redis server.
- name: In... | Create hipache log dir. (needed if hipache is not installed form apt repository) | Create hipache log dir.
(needed if hipache is not installed form apt repository)
| YAML | mit | alphagov/ansible-playbook-gandalf |
897f3b11993e2732f41e1892fd93036ae0f73698 | packages/ha/halves.yaml | packages/ha/halves.yaml | homepage: ''
changelog-type: ''
hash: b6b9529cbd3a85fab3dc42eeded2a8c7426de98cf92ff02613ba56679f339743
test-bench-deps:
base: -any
halves: -any
hedgehog: ! '>=0.5 && <0.6'
lens: -any
maintainer: brian@brianmckenna.org
synopsis: Splitting/combining data structures to/from halves, quarters, eighths
changelog: ''
... | homepage: ''
changelog-type: ''
hash: eaccb9882e48d4d247f0d1258858f1949622642048b7f64fd9b88b432f94544c
test-bench-deps:
base: -any
halves: -any
hedgehog: ! '>=0.5 && <0.7'
lens: -any
maintainer: brian@brianmckenna.org
synopsis: Split or combine data structures to and from halves, quarters, eighths
changelog: ''... | Update from Hackage at 2018-10-15T10:59:11Z | Update from Hackage at 2018-10-15T10:59:11Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f73e8a672086f131b4050caa98f697d8c20d9108 | prow/prowjobs/kubeflow/kubeflow-presubmits.yaml | prow/prowjobs/kubeflow/kubeflow-presubmits.yaml | presubmits:
kubeflow/pipelines:
- name: kubeflow-pipeline-frontend-v2-test
cluster: kubeflow
optional: true
always_run: false
skip_report: true
spec:
containers:
- image: node:12
command:
- /bin/sh
args:
- -c
- cd ./frontend && npm run test:ci:... | presubmits:
kubeflow/pipelines:
- name: kubeflow-pipeline-frontend-v2-test
cluster: build-kubeflow
optional: true
always_run: false
skip_report: true
spec:
containers:
- image: node:12
command:
- /bin/sh
args:
- -c
- cd ./frontend && npm run te... | Correct kubeflow build cluster name | Correct kubeflow build cluster name
| YAML | apache-2.0 | GoogleCloudPlatform/oss-test-infra,GoogleCloudPlatform/oss-test-infra |
c26c87d1e1ec1e3ee40c9d3ac614466c981fd8d5 | locale/flarum-likes.yml | locale/flarum-likes.yml | flarum-likes:
##
# UNIQUE KEYS - The following keys are used in only one location each.
##
# Strings in this namespace are used by the admin interface.
admin:
# These strings are used in the Permissions page of the admin interface.
permissions:
like_posts_label: Like posts
# Strings in thi... | flarum-likes:
##
# UNIQUE KEYS - The following keys are used in only one location each.
##
# Strings in this namespace are used by the admin interface.
admin:
# These strings are used in the Permissions page of the admin interface.
permissions:
like_posts_label: Like posts
# Strings in thi... | Modify the label for the notification preference setting | Modify the label for the notification preference setting
| YAML | mit | raweba/flarum-ext-danish,ogioncz/flarum-ext-czech,pladask/flarum-ext-norwegian-nynorsk,balkanje/flarum-ext-bosnian1,flarum/flarum-ext-english,pladask/flarum-ext-norwegian-bokmal,FlarumChina/flarum-ext-simplified-chinese-pro,ogioncz/flarum-ext-czech,pladask/flarum-ext-norwegian-nynorsk,flarum/english,pladask/flarum-ext-... |
a45c268eae919deaa163518f507d3f58af303785 | shippable.yml | shippable.yml | language: none
build:
pre_ci:
- docker build -t masecret .
pre_ci_boot:
image_name: masecret
ci:
- nosetest
| language: none
build:
pre_ci:
- docker build -t masecret .
pre_ci_boot:
image_name: masecret
ci:
- nosetests
| Fix command name to run inside CI container | Fix command name to run inside CI container
| YAML | mit | orangain/masecret |
5a3113848649d9bda17054c4ec45b42e0adab7ad | recipes/boost_histogram/conda_build_config.yaml | recipes/boost_histogram/conda_build_config.yaml | c_compiler: # [win]
- vs2017 # [win]
- vs2017 # [win]
- vs2017 # [win]
cxx_compiler: # [win]
- vs2017 # [win]
- vs2017 # [win]
- vs2017 # [win]
vc: ... | c_compiler: # [win]
- vs2017 # [win]
- vs2017 # [win]
cxx_compiler: # [win]
- vs2017 # [win]
- vs2017 # [win]
vc: # [win]
- 14.1 # [win]
- 14.1... | Drop Python 2.7 support on Windows | Drop Python 2.7 support on Windows | YAML | bsd-3-clause | mariusvniekerk/staged-recipes,kwilcox/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,SylvainCorlay/staged-recipes,scopatz/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,stuertz/staged-recipes,jakirkham/staged-recipes,isuruf/staged-recipes,conda-forge/staged-recipes,hadim/stage... |
b7e0e615bbab6f069e38f926956eba68bd5e7718 | metadata/com.github.cvzi.screenshottile.yml | metadata/com.github.cvzi.screenshottile.yml | Categories:
- System
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/cvzi/ScreenshotTile
IssueTracker: https://github.com/cvzi/ScreenshotTile/issues
AutoName: Screenshot Tile (NoRoot)
Description: |-
Adds a button/tile to the quick settings panel to take screenshots.
After install you ne... | Categories:
- System
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/cvzi/ScreenshotTile
IssueTracker: https://github.com/cvzi/ScreenshotTile/issues
AutoName: Screenshot Tile (NoRoot)
Description: |-
Adds a button/tile to the quick settings panel to take screenshots.
After install you ne... | Update Screenshot Tile (NoRoot) to 1.0.2 (3) | Update Screenshot Tile (NoRoot) to 1.0.2 (3)
| YAML | agpl-3.0 | f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata |
505da2f99446a5f31f48148602e17348dd8818f3 | .github/workflows/merge-dependabot-upgrades.yml | .github/workflows/merge-dependabot-upgrades.yml | # See https://github.com/ridedott/merge-me-action/
# This workflow automates merges from patches sent by Dependabot, and
# only by dependabot, once the other CI workflows pass
name: Auto-merge Dependabot PRs
on:
workflow_run:
types:
- completed
workflows:
- "Continuous Integration"
jobs:
merge... | # See https://github.com/ridedott/merge-me-action/
# This workflow automates merges from patches sent by Dependabot, and
# only by dependabot, once the other CI workflows pass
name: Auto-merge Dependabot PRs
on:
workflow_run:
types:
- completed
workflows:
- "Continuous Integration"
jobs:
merge... | Bump ridedott/merge-me-action from 2.9.78 to 2.9.79 | Bump ridedott/merge-me-action from 2.9.78 to 2.9.79
Bumps [ridedott/merge-me-action](https://github.com/ridedott/merge-me-action) from 2.9.78 to 2.9.79.
- [Release notes](https://github.com/ridedott/merge-me-action/releases)
- [Changelog](https://github.com/ridedott/merge-me-action/blob/master/CHANGELOG.md)
- [Commits... | YAML | mit | Ocramius/DoctrineBatchUtils |
c3b24f46589d73ad1baf41524303d3f4d2d88277 | http_methods/pubspec.yaml | http_methods/pubspec.yaml | name: http_methods
version: 1.0.0
description: |
List of all HTTP methods registered with IANA as list of strings, and metadata
such as whether a method idempotent.
homepage: https://github.com/google/dart-neats/tree/master/http_methods
repository: https://github.com/google/dart-neats.git
issue_tracker: https://git... | name: http_methods
version: 2.0.0-nullsafety.0
description: |
List of all HTTP methods registered with IANA as list of strings, and metadata
such as whether a method idempotent.
homepage: https://github.com/google/dart-neats/tree/master/http_methods
repository: https://github.com/google/dart-neats.git
issue_tracker... | Migrate http_methods to Dart null safety | Migrate http_methods to Dart null safety
| YAML | apache-2.0 | google/dart-neats,google/dart-neats |
7e943e93268eb95119b747ac03c1e56acd019026 | apps/elekto/deployment.yaml | apps/elekto/deployment.yaml | apiVersion: apps/v1
kind: Deployment
metadata:
name: elekto
namespace: elekto
labels:
app: elekto
spec:
replicas: 1
selector:
matchLabels:
app: elekto
strategy:
type: Recreate
template:
metadata:
labels:
app: elekto
spec:
containers:
- image: ghcr.io/e... | apiVersion: apps/v1
kind: Deployment
metadata:
name: elekto
namespace: elekto
labels:
app: elekto
spec:
replicas: 1
selector:
matchLabels:
app: elekto
strategy:
type: Recreate
template:
metadata:
labels:
app: elekto
spec:
containers:
- image: ghcr.io/e... | Update elekto to 0.5.1 version | Update elekto to 0.5.1 version
This is partly an attempt to address issue 2955
with recasting ballots, also some UI wording improvements
Signed-off-by: Josh Berkus <c028c213ed5efcf30c3f4fc7361dbde0c893c5b7@agliodbs.com>
| YAML | apache-2.0 | kubernetes/k8s.io,kubernetes/k8s.io,kubernetes/k8s.io,kubernetes/k8s.io |
15bfbc5078d113a6f7d4df737f9af70a4f809474 | site/.forestry/front_matter/templates/event.yml | site/.forestry/front_matter/templates/event.yml | ---
pages:
- event/kindergarten-coffee.md
- event/lego-ninjago-movie-morning.md
hide_body: false
fields:
- name: date
label: Today's Date
type: datetime
hidden: false
default: ''
config:
required: true
- name: publishdate
label: Post Publish Date
type: datetime
hidden: false
default: ''
config:
... | ---
pages:
- event/kindergarten-coffee.md
- event/lego-ninjago-movie-morning.md
hide_body: false
fields:
- name: date
label: Today's Date
type: datetime
hidden: false
default: ''
config:
required: true
- name: publishdate
label: Post Publish Date
type: datetime
hidden: false
default: ''
config:
... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | IslandViewPTA/islandview-pta-site,IslandViewPTA/islandview-pta-site,IslandViewPTA/islandview-pta-site |
a7fb3cf1821c5f57177eecccb682fa94bef4cac5 | ci/parameters.yml | ci/parameters.yml | email-server: "smtp.svc.pivotal.io"
email-from: "ci@spring.io"
email-to: ["spring-boot-dev@pivotal.io"]
github-repo: "https://github.com/spring-projects/spring-boot.git"
github-repo-name: "spring-projects/spring-boot"
docker-hub-organization: "springci"
artifactory-server: "https://repo.spring.io/"
branch: "2.0.x"
buil... | email-server: "smtp.svc.pivotal.io"
email-from: "ci@spring.io"
email-to: ["spring-boot-dev@pivotal.io"]
github-repo: "https://github.com/spring-projects/spring-boot.git"
github-repo-name: "spring-projects/spring-boot"
docker-hub-organization: "springci"
artifactory-server: "https://repo.spring.io"
branch: "2.0.x"
build... | Remove extra / from artifactory server param | Remove extra / from artifactory server param
Fixes gh-13535
| YAML | apache-2.0 | wilkinsona/spring-boot,hello2009chen/spring-boot,drumonii/spring-boot,spring-projects/spring-boot,joshiste/spring-boot,tiarebalbi/spring-boot,scottfrederick/spring-boot,eddumelendez/spring-boot,rweisleder/spring-boot,scottfrederick/spring-boot,mbenson/spring-boot,kdvolder/spring-boot,rweisleder/spring-boot,shakuzen/spr... |
31c3a573e835362811d3d0afbac969ff29bacdc2 | asm-acm-tutorial/root-sync/deployments/ingress-gateway/kustomization.yaml | asm-acm-tutorial/root-sync/deployments/ingress-gateway/kustomization.yaml | # 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, ... | Fix asm-ingress deployment (no depends-on anymore) | Fix asm-ingress deployment (no depends-on anymore) | YAML | apache-2.0 | GoogleCloudPlatform/anthos-config-management-samples |
d2b193ff78bb8e3186205e08744d1312a9da6cef | query-specifications/bi-read-20.yaml | query-specifications/bi-read-20.yaml | workload: BI
operation: read
number: 20
title: Recruitment
description: |
Given a *Company* `company` and a *Person* `person2` (who is known to be working at another *Company*), find a *Person* (`person1`) working the in the `company` who have the top-20 shortest path to `person2` through people who have studied toge... | workload: BI
operation: read
number: 20
title: Recruitment
description: |
Given a *Company* `company` and a *Person* `person2` (who is known to be working at another *Company*), find a *Person* (`person1`) working the in the `company` who have the top-20 shortest path to `person2` through people who have studied toge... | Add more sorting to Q20 results | Add more sorting to Q20 results
| YAML | apache-2.0 | ldbc/ldbc_snb_docs,ldbc/ldbc_snb_docs,ldbc/ldbc_snb_docs |
eea5ceeac95561faf35882c286ab850c5f61c581 | templates/jenkins/jenkins.yml | templates/jenkins/jenkins.yml | # Container for running Jenkins with a local jobs volume
# Run this image via
# - `docker-compose -f jenkins.yml -p <%= machineName %> run jenkins`
version: '2.1'
services:
jenkins:
image: phase2/jenkins-docker:1.9.1
volumes:
# Primary jenkins configuration. Direct file mount prevents writing updates... | # Container for running Jenkins with a local jobs volume
# Run this image via
# - `docker-compose -f jenkins.yml -p <%= machineName %> run jenkins`
version: '2.1'
services:
jenkins:
image: phase2/jenkins-docker:latest
volumes:
# Primary jenkins configuration. Direct file mount prevents writing update... | Update Jenkins docker image to use 'latest'. | Update Jenkins docker image to use 'latest'.
| YAML | mit | phase2/generator-outrigger-drupal,phase2/generator-outrigger-drupal,phase2/generator-outrigger-drupal |
e71989d9b19e02ad0e23141760195546233270c6 | Magic/src/main/resources/examples/survival/crafting/wand.yml | Magic/src/main/resources/examples/survival/crafting/wand.yml | wand:
# This defines the recipe output- a template wand will be created, and
# then upgraded based on its enchanting path and the # of levels in parenthesis
output: wand
output_type: wand
# Used as a substitute item when the wand item is naturally crafted
# This is mainly for the resource pack, so players ... | wand:
# This defines the recipe output
output: wand
# This makes sure you get the wand version, in case of name collisions
# Probably not necessary
output_type: wand
# Used as a substitute item when the wand item is naturally crafted
# This is mainly for the resource pack, so players don't craft a wood h... | Add crafting and effects examples | Add crafting and effects examples
| YAML | mit | elBukkit/MagicPlugin,elBukkit/MagicPlugin,elBukkit/MagicPlugin |
83b6cc66822ad602d6bf4ef48cbdeac2352f90c6 | test/docker-compose.yml | test/docker-compose.yml | version: '3'
services:
db-sql-server:
container_name: data-quality-test-db-sql-server
image: data-quality-test-db-sql-server
restart: always
build:
context: .
dockerfile: ./db-sql-server/Dockerfile
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "1234-abcd"
command: ["/bin/... | version: '3'
services:
db-sql-server:
container_name: data-quality-test-db-sql-server
image: data-quality-test-db-sql-server
restart: always
build:
context: .
dockerfile: ./db-sql-server/Dockerfile
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "1234-abcd"
command: ["/bin/... | Remove network for test containers | Remove network for test containers
| YAML | apache-2.0 | alexisrolland/data-quality,alexisrolland/data-quality,alexisrolland/data-quality,alexisrolland/data-quality |
d2507464e9026be2a4ab04c325b5e3a94254c22f | app/config/config_test.yml | app/config/config_test.yml | imports:
- { resource: config_prod.yml }
- { resource: parameters_test.yml }
- { resource: security_test.yml }
parameters:
doctrine.dbal.connection_factory.class: 'Oro\Component\Testing\Doctrine\PersistentConnectionFactory'
framework:
test: ~
session:
storage_id: session.storage.mock_f... | imports:
- { resource: config_prod.yml }
- { resource: parameters_test.yml }
- { resource: security_test.yml }
parameters:
doctrine.dbal.connection_factory.class: 'Oro\Component\Testing\Doctrine\PersistentConnectionFactory'
framework:
test: ~
session:
storage_id: session.storage.mock_f... | Exclude test env from password demands | BAP-10931: Exclude test env from password demands
- revert passwords from some tests
| YAML | mit | orocrm/platform-application,orocrm/platform-application |
0f87eed6f73be7f8d54a0f0458e2fad44976da7d | app/config/routing_dev.yml | app/config/routing_dev.yml | _welcome:
pattern: /
defaults: { _controller: AcmeDemoBundle:Welcome:index }
_demo_secured:
resource: "@AcmeDemoBundle/Controller/SecuredController.php"
type: annotation
_demo:
resource: "@AcmeDemoBundle/Controller/DemoController.php"
type: annotation
prefix: /demo
_assetic:
... | _assetic:
resource: .
type: assetic
_wdt:
resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml"
prefix: /_wdt
_profiler:
resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml"
prefix: /_profiler
_configurator:
resource: "@SensioDistributionBundle/Resources/... | Revert "Revert "Revert "Revert "Removed demo paths"""" | Revert "Revert "Revert "Revert "Removed demo paths""""
This reverts commit cc6e6367ffc6dff9139fcc7ef2c5e867c7eb9e5a.
| YAML | mit | joekukish/PeerReviewingSuite,joekukish/PeerReviewingSuite |
408c3d66edbacc79d8eb357102f4da21b5e05fe2 | metadata.yaml | metadata.yaml | name: docker
summary: Deploys Docker Engine, a lightweight runtime and packaging tool.
maintainer: Charles Butler <charles.butler@ubuntu.com>
description: |
Deploys Docker Engine, a portable, lightweight runtime and packaging tool.
tags:
- ops
- application_development
subordinate: false
provides:
docker-contain... | name: docker
summary: Deploys Docker Engine, a lightweight runtime and packaging tool.
maintainer: Charles Butler <charles.butler@ubuntu.com>
description: |
Deploys Docker Engine, a portable, lightweight runtime and packaging tool.
tags:
- ops
- application_development
subordinate: false
provides:
docker-contain... | Comment out the 2 relations that are not implemented yet - pending contributions from @whitmo | Comment out the 2 relations that are not implemented yet - pending contributions from @whitmo
| YAML | bsd-3-clause | chuckbutler/docker-charm,chuckbutler/docker-charm |
a414ecf61ce2a9b2e2b9c5ed19dc6fb44476ef49 | meta/main.yml | meta/main.yml | ---
galaxy_info:
author: Ben Webber
description: Provision a vanilla Minecraft server
license: Apache 2.0
min_ansible_version: 1.8
platforms:
- name: Ubuntu
versions:
- trusty
- xenial
- name: Debian
versions:
- wheezy
- jessie
- name: EL
versions:
... | ---
galaxy_info:
author: Ben Webber
description: Provision a vanilla Minecraft server
license: Apache 2.0
min_ansible_version: 1.8
platforms:
- name: Ubuntu
versions:
- trusty
- xenial
- name: Debian
versions:
- jessie
- name: EL
versions:
- 7
categori... | Remove unsupported Debian version from Galaxy metadata | Remove unsupported Debian version from Galaxy metadata
| YAML | apache-2.0 | devops-coop/ansible-minecraft,devops-coop/ansible-minecraft,devops-coop/ansible-minecraft |
93bc3b657b69e4886dcfef7a2502e165f2cd90d2 | .codecov.yml | .codecov.yml | comment: off
github_checks:
annotations: false
coverage:
status:
patch:
default:
target: 95%
project:
default:
threshold: 1%
| comment: off
github_checks:
annotations: false
coverage:
status:
patch:
default:
target: 95%
only_pulls: true
project:
default:
threshold: 1%
| Remove Codecov Patch status outside PRs | Remove Codecov Patch status outside PRs
| YAML | mit | OpenZeppelin/openzeppelin-contracts,OpenZeppelin/openzeppelin-contracts,OpenZeppelin/openzeppelin-contracts |
b1b1f56ac05dac52c2abeb146381d6b1ac191e81 | materialize.libraries.yml | materialize.libraries.yml | global-styling:
version: VERSION
css:
theme:
css/materialize.min.css: { weight: -10 }
modules:
css/drupal-toolbar.css: { weight: -10 }
global-scripts:
js:
js/materialize.min.js: {}
dependencies:
- core/jquery
- core/jquery.once
- core/drupal.ajax
- core/drupal
- cor... | global-styling:
version: VERSION
css:
theme:
css/materialize.min.css: { weight: -10 }
modules:
css/drupal-toolbar.css: { weight: -10 }
fonts:
'https://fonts.googleapis.com/icon?family=Material+Icons': { type: external }
global-scripts:
js:
js/materialize.min.js: {}
dependenci... | Add google material icons font. | Add google material icons font.
| YAML | mit | archual/drupal_materialize_theme,archual/drupal_materialize_theme,archual/drupal_materialize_theme |
400dce25e83cfa1889b913a4766ebbf6217b6031 | .kitchen.yml | .kitchen.yml | ---
driver:
name: vagrant
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
- name: centos-6.4
suites:
- name: default
run_list:
- recipe[digitalocean_dns::default]
attributes:
| ---
driver:
name: vagrant
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
- name: ubuntu-14.04
- name: centos-6.5
suites:
- name: default
run_list:
- recipe[digitalocean_dns::default]
attributes:
| Add 14.04 and update to the latest centos 6 minor | Add 14.04 and update to the latest centos 6 minor
| YAML | apache-2.0 | skottler/chef-digitalocean_dns |
02fcf78f66063d9cbc6c853eb61279294d47a739 | .rubocop.yml | .rubocop.yml | require: rubocop-rspec
inherit_from:
- .rubocop_todo.yml
- .rubocop_rspec.yml
AllCops:
DisplayCopNames: true # Display the name of the failing cops
TargetRubyVersion: 2.1
Exclude:
- 'gemfiles/vendor/**/*'
- 'vendor/**/*'
- '**/.irbrc'
Gemspec/RequiredRubyVersion:
Enabled: false
Metrics/BlockLe... | require: rubocop-rspec
inherit_from:
- .rubocop_todo.yml
- .rubocop_rspec.yml
AllCops:
DisplayCopNames: true # Display the name of the failing cops
TargetRubyVersion: 2.1
Exclude:
- 'gemfiles/vendor/**/*'
- 'vendor/**/*'
- '**/.irbrc'
Gemspec/RequiredRubyVersion:
Enabled: false
Metrics/BlockLe... | Enable nested contexts in RSpec | Enable nested contexts in RSpec
Remove rubocop rule disallowing larger nesting of examples
| YAML | mit | mavenlink/oauth2,intridea/oauth2,mavenlink/oauth2,ShakrMedia/oauth2 |
ae18bd9d25c45ac5fc8f00843f498dfe324dc4e1 | .rubocop.yml | .rubocop.yml | # Lining up the attributes of some methods is advantageous for readability
Style/SpaceBeforeFirstArg:
Enabled: false
# Chef methods tend to be self-documenting
Style/Documentation:
Enabled: false
# Offense count: 1
Style/ClassVars:
Exclude:
- 'libraries/default.rb'
# The default 79 character limit is somet... | # Offense count: 1
Style/ClassVars:
Exclude:
- 'libraries/default.rb'
| Drop unnecessary Rubocop rules b/c cookstyle | Drop unnecessary Rubocop rules b/c cookstyle
| YAML | apache-2.0 | SimpleFinance/chef-zookeeper,evertrue/zookeeper-cookbook,criteo-forks/chef-zookeeper,evertrue/zookeeper-cookbook,SimpleFinance/chef-zookeeper,evertrue/zookeeper-cookbook,SimpleFinance/chef-zookeeper |
de013b730a98af43c8817febf93dc5986ddae678 | .drone.yml | .drone.yml | image: bradrydzewski/go:1.4
notify:
email:
recipients:
- drone@clever.com
slack:
on_failure: true
on_started: false
on_success: false
webhook_url: $$slack_webhook
script:
- go get
- go test -v
| image: clever/drone-go:1.5
notify:
email:
recipients:
- drone@clever.com
slack:
on_failure: true
on_started: false
on_success: false
webhook_url: $$slack_webhook
script:
- go get
- go test -v
| Use Go 1.5 Drone image | Use Go 1.5 Drone image
| YAML | apache-2.0 | Clever/discovery-go |
159f4563c042ff0ecee650c820e18b2d658f2dea | .zuul.yaml | .zuul.yaml | - project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-wallaby-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
| - project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-xena-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
| Add Python3 xena unit tests | Add Python3 xena unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for xena.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I01d7c2ed0666f0af0993784943338c0ee6c5a... | YAML | apache-2.0 | openstack/oslo.vmware |
1f5e01b3f2fde239213de96c3472bca71ff709ea | .zuul.yaml | .zuul.yaml | - project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-yoga-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
| - project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-zed-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
| Add Python3 zed unit tests | Add Python3 zed unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for zed.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I3c6623fe5c5df7a965458ba1b2bc5dde0900d23... | YAML | apache-2.0 | openstack/oslo.service |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.