commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
197b42a8bcef3a6b86c8a93b8fbb34e9c4ac92f6
circle.yml
circle.yml
machine: python: version: anaconda3-4.0.0 environment: PATH: /home/ubuntu/virtualenvs/venv-anaconda3-4.0.0/bin:$PATH LD_LIBRARY_PATH: /opt/circleci/.pyenv/versions/anaconda3-4.0.0/lib dependencies: pre: - sudo apt-get update - sudo apt-get install build-essential cmake swig - sudo apt-get install git wget vim tmux unzip - sudo apt-get install libboost-program-options-dev libboost-python-dev libtool libboost-all-dev - sudo apt-get install liblzma-dev libpq-dev - sudo apt-get install default-jre default-jdk - conda install -y numpy scipy - conda install -y nltk - conda install -y seaborn matplotlib - conda install -y scikit-learn - pip install py4j - pip install pyfunctional - pip install click - pip install requests override: - python setup.py download
machine: python: version: anaconda3-4.0.0 environment: PATH: /home/ubuntu/virtualenvs/venv-anaconda3-4.0.0/bin:$PATH LD_LIBRARY_PATH: /opt/circleci/.pyenv/versions/anaconda3-4.0.0/lib dependencies: pre: - sudo apt-get update - sudo apt-get install build-essential cmake swig - sudo apt-get install git wget vim tmux unzip - sudo apt-get install libboost-program-options-dev libboost-python-dev libtool libboost-all-dev - sudo apt-get install liblzma-dev libpq-dev - sudo apt-get install default-jre default-jdk - pip install -r requirements.txt override: - python setup.py download
Use pip install to play well with virtualenv
Use pip install to play well with virtualenv
YAML
mit
miyyer/qb,Pinafore/qb,Pinafore/qb,miyyer/qb,miyyer/qb,miyyer/qb
eb9f08f3e7bea91a569b93ccde745157bcc791ab
circle.yml
circle.yml
dependencies: cache_directories: - ~/.meteor override: - meteor || curl https://install.meteor.com | /bin/sh - meteor npm install test: override: - eslint client/ imports/ server/
dependencies: cache_directories: - ~/.meteor override: - meteor || curl https://install.meteor.com | /bin/sh - npm install -g eslint - meteor npm install test: override: - eslint client/ imports/ server/
Add eslint inside the deploy process
Add eslint inside the deploy process
YAML
mit
jeremyfourna/basket-live-stats,jeremyfourna/basket-live-stats
5078af774d669203e40de07016c8aecf528a50b6
circle.yml
circle.yml
dependencies: override: - bundle install - npm install -g [email protected] general: branches: ignore: - gh-pages machine: node: version: 6.9.5 test: override: - bundle exec rake post: - sassdoc core/ --parse --verbose --strict
dependencies: override: - bundle install - npm install -g [email protected] general: branches: ignore: - gh-pages machine: node: version: 9.8.0 test: override: - bundle exec rake post: - sassdoc core/ --parse --verbose --strict
Update Node from 6.9.5 to 9.8.0 for Circle
Update Node from 6.9.5 to 9.8.0 for Circle
YAML
mit
thoughtbot/bourbon,Jazz-Man/bourbon,Jazz-Man/bourbon,thoughtbot/bourbon
a07f3c70219a32d0681d7854c81eab0651b2abf6
circle.yml
circle.yml
machine: services: - docker dependencies: override: - > docker run --env CIRCLE_BRANCH --env CIRCLE_PROJECT_REPONAME --env CIRCLE_TOKEN --env GCR_JSON_KEY --volume /var/run/docker.sock:/var/run/docker.sock codeclimate/patrick pull || true - make image test: override: - make citest deployment: registry: branch: master commands: - > docker run --env CIRCLE_BUILD_NUM --env CIRCLE_PROJECT_REPONAME --env GCR_JSON_KEY --volume /var/run/docker.sock:/var/run/docker.sock codeclimate/patrick push gcr notify: webhooks: - url: https://cc-slack-proxy.herokuapp.com/circle
machine: services: - docker dependencies: override: - > docker run --env CIRCLE_BRANCH --env CIRCLE_PROJECT_REPONAME --env CIRCLE_TOKEN --env GCR_JSON_KEY --volume /var/run/docker.sock:/var/run/docker.sock codeclimate/patrick pull || true - make image test: override: - make citest deployment: registry: branch: master commands: - > docker run --env CIRCLE_BUILD_NUM --env CIRCLE_PROJECT_REPONAME --env GCR_JSON_KEY --volume /var/run/docker.sock:/var/run/docker.sock codeclimate/patrick push gcr notify: webhooks: - url: https://cc-slack-proxy.herokuapp.com/circle
Fix CircleCI multiline docker run invocation
Fix CircleCI multiline docker run invocation
YAML
mit
codeclimate/codeclimate-duplication,codeclimate/codeclimate-duplication,codeclimate/codeclimate-duplication,codeclimate/codeclimate-duplication
82a3d8bb02d74dffb14e591a7b96cd98baa70db6
circle.yml
circle.yml
general: artifacts: - coverage machine: node: version: v5.6.0 services: - docker pre: - sudo apt-get update && sudo apt-get install --only-upgrade google-chrome-stable test: override: - npm run ci: environment: NODE_ENV: production - mkdir -p $CIRCLE_TEST_REPORTS/integration - cp integration-test-results.xml $CIRCLE_TEST_REPORTS/integration/results.xml deployment: production: owner: jeffcharles branch: master commands: - ./scripts/deploy.sh
general: artifacts: - coverage machine: node: version: v5.6.0 services: - docker pre: - wget -q https://dl-ssl.google.com/linux/linux_signing_key.pub - sudo apt-key add linux_signing_key.pub - sudo sh -c 'echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' - sudo apt-get update && sudo apt-get install --only-upgrade google-chrome-stable test: override: - npm run ci: environment: NODE_ENV: production - mkdir -p $CIRCLE_TEST_REPORTS/integration - cp integration-test-results.xml $CIRCLE_TEST_REPORTS/integration/results.xml deployment: production: owner: jeffcharles branch: master commands: - ./scripts/deploy.sh
Use PPA for updating Chrome
Use PPA for updating Chrome
YAML
mit
jeffcharles/number-switcher-3000,jeffcharles/number-switcher-3000,jeffcharles/number-switcher-3000
6ea545479b05f8a16a26e79e3c086e91e3b7d466
circle.yml
circle.yml
dependencies: pre: - yarn global add lerna codecov override: - yarn install - lerna bootstrap post: - case $CIRCLE_NODE_INDEX in 0) NODE_VERSION=4 ;; 1) NODE_VERSION=5 ;; 2) NODE_VERSION=6 ;; esac; nvm install $NODE_VERSION && nvm alias default $NODE_VERSION test: override: - yarn test - if [[ -e junitresults.xml ]]; then cp junitresults.xml $CIRCLE_TEST_REPORTS/test-results.xml; fi post: - codecov
machine: node: version: 6.1.0 dependencies: pre: - yarn global add lerna codecov override: - yarn install - lerna bootstrap post: - case $CIRCLE_NODE_INDEX in 0) NODE_VERSION=4 ;; 1) NODE_VERSION=5 ;; 2) NODE_VERSION=6 ;; esac; nvm install $NODE_VERSION && nvm alias default $NODE_VERSION test: override: - yarn test - if [[ -e junitresults.xml ]]; then cp junitresults.xml $CIRCLE_TEST_REPORTS/test-results.xml; fi post: - codecov
Add minimum node version for running tests
chore: Add minimum node version for running tests
YAML
mit
lingui/js-lingui,lingui/js-lingui
526eabb6a81b382e4490cf90a8a7b97942c7441f
circle.yml
circle.yml
machine: environment: INSTALL_PREFIX_DIR: ~/opt INSTALL_PREFIX_BIN_DIR: ${INSTALL_PREFIX_DIR}/bin PATH: ${INSTALL_PREFIX_BIN_DIR}:${PATH} checkout: post: - git submodule sync --recursive - git submodule update --recursive --init dependencies: override: - vendor-install-tools/install.py meson --installPrefixDir=${INSTALL_PREFIX_BIN_DIR} test: post: - meson -v - echo 'Does nothing yet'
machine: environment: INSTALL_PREFIX_DIR: ${HOME}/opt INSTALL_PREFIX_BIN_DIR: ${INSTALL_PREFIX_DIR}/bin PATH: ${INSTALL_PREFIX_BIN_DIR}:${PATH} checkout: post: - git submodule sync --recursive - git submodule update --recursive --init dependencies: override: - vendor-install-tools/install.py meson --installPrefixDir=${INSTALL_PREFIX_DIR} test: post: - meson -v - echo 'Does nothing yet'
Use ${HOME} for prefix dir and fix --installPrefixDir
Use ${HOME} for prefix dir and fix --installPrefixDir
YAML
apache-2.0
winksaville/test-meson-helloworld,winksaville/test-meson-helloworld
6ac0210f419a98c7438f13340ca42861e1ef5cc9
circle.yml
circle.yml
machine: php: version: 7.07 dependencies: pre: - echo "date.timezone = 'Australia/Melbourne'" > ~/.phpenv/versions/$(phpenv global)/etc/conf.d/timezone.ini test: pre: # install composer dependencies to gain access to concise - composer --dev install override: # run full test suite for coverage - vendor/bin/concise --ci post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - if [ -d "build/junit" ]; then cp build/junit/*.xml $CIRCLE_TEST_REPORTS/junit/; fi
machine: php: version: 7.0.7 dependencies: pre: - echo "date.timezone = 'Australia/Melbourne'" > ~/.phpenv/versions/$(phpenv global)/etc/conf.d/timezone.ini test: pre: # install composer dependencies to gain access to concise - composer --dev install override: # run full test suite for coverage - vendor/bin/concise --ci post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - if [ -d "build/junit" ]; then cp build/junit/*.xml $CIRCLE_TEST_REPORTS/junit/; fi
Fix incorrect php version in the ci config, whoops
Fix incorrect php version in the ci config, whoops
YAML
mit
houseofdross/slack-skippybadge
c1c665c0ea50ff8794742c6ad1672327aae1adc1
circle.yml
circle.yml
machine: java: version: oraclejdk8 environment: GRADLE_OPTS: '-Xmx512m -XX:+UseG1GC -XX:+CMSClassUnloadingEnabled -XX:InitialCodeCacheSize=64M -XX:CodeCacheExpansionSize=1M -XX:CodeCacheMinimumFreeSpace=1M -XX:ReservedCodeCacheSize=200M -XX:MinMetaspaceExpansion=1M -XX:MaxMetaspaceExpansion=8M -XX:MaxMetaspaceSize=200M -XX:MaxDirectMemorySize=96M -XX:CompressedClassSpaceSize=256M -Xss1024K' JAVA_HOME: '/usr/lib/jvm/java-8-oracle' MALLOC_ARENA_MAX: '1' MALLOC_MMAP_THRESHOLD_: '131072' MALLOC_TRIM_THRESHOLD_: '131072' MALLOC_TOP_PAD_: '131072' MALLOC_MMAP_MAX_: '65536' dependencies: pre: - sudo add-apt-repository -y ppa:webupd8team/java - sudo apt-get update - echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | sudo debconf-set-selections - sudo apt-get install -y oracle-java8-installer - sudo update-java-alternatives -s java-8-oracle - javac -version - echo $JAVA_HOME
machine: java: version: oraclejdk8 environment: GRADLE_OPTS: '-Xmx512m -XX:+UseG1GC -XX:+CMSClassUnloadingEnabled -XX:InitialCodeCacheSize=64M -XX:CodeCacheExpansionSize=1M -XX:CodeCacheMinimumFreeSpace=1M -XX:ReservedCodeCacheSize=200M -XX:MinMetaspaceExpansion=1M -XX:MaxMetaspaceExpansion=8M -XX:MaxMetaspaceSize=200M -XX:MaxDirectMemorySize=96M -XX:CompressedClassSpaceSize=256M -Xss1024K' JAVA_HOME: '/usr/lib/jvm/java-8-oracle' MALLOC_ARENA_MAX: '1' MALLOC_MMAP_THRESHOLD_: '131072' MALLOC_TRIM_THRESHOLD_: '131072' MALLOC_TOP_PAD_: '131072' MALLOC_MMAP_MAX_: '65536' dependencies: pre: - sudo add-apt-repository -y ppa:webupd8team/java - sudo apt-get update - echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | sudo debconf-set-selections - sudo apt-get install -y oracle-java8-installer - sudo update-java-alternatives -s java-8-oracle - javac -version - echo $JAVA_HOME test: override: - gradle test: timeout: 1200
Increase 'gradle test' timeout on Circle CI
Increase 'gradle test' timeout on Circle CI
YAML
apache-2.0
michel-kraemer/vertx-lang-typescript,michel-kraemer/vertx-lang-typescript,michel-kraemer/vertx-lang-typescript
179b5e95731c56fd21e0ee979637176995355b4c
azure-pipelines-ci.yml
azure-pipelines-ci.yml
trigger: - master pool: vmImage: 'Ubuntu-16.04' steps: - task: Npm@1 inputs: command: 'install' workingDir: 'tools' displayName: 'Install packages' - task: Npm@1 inputs: command: 'custom' workingDir: 'tools' customCommand: 'run test-ci' displayName: 'Run schema tests' - task: PublishTestResults@2 condition: succeededOrFailed() inputs: testRunner: JUnit testResultsFiles: 'tools/test-results.xml' failTaskOnFailedTests: true displayName: 'Publish test results'
pr: branches: include: - master trigger: none pool: vmImage: 'Ubuntu-16.04' steps: - task: Npm@1 inputs: command: 'install' workingDir: 'tools' displayName: 'Install packages' - task: Npm@1 inputs: command: 'custom' workingDir: 'tools' customCommand: 'run test-ci' displayName: 'Run schema tests' - task: PublishTestResults@2 condition: succeededOrFailed() inputs: testRunner: JUnit testResultsFiles: 'tools/test-results.xml' failTaskOnFailedTests: true displayName: 'Publish test results'
Fix PR trigger for CI validation
Fix PR trigger for CI validation
YAML
mit
Azure/azure-resource-manager-schemas,Azure/azure-resource-manager-schemas,Azure/azure-resource-manager-schemas,Azure/azure-resource-manager-schemas
d9ba98d0f0ebeb1edf8f1b2f5b35258f31fc8304
.rubocop.yml
.rubocop.yml
AllCops: NewCops: enable Style/FrozenStringLiteralComment: Enabled: false Metrics/BlockLength: Max: 30 Metrics/MethodLength: Max: 30 Style/TrailingCommaInHashLiteral: EnforcedStyleForMultiline: 'comma' Layout/HashAlignment: EnforcedColonStyle: table Metrics/AbcSize: Max: 20
AllCops: NewCops: enable Style/FrozenStringLiteralComment: Enabled: false Metrics/BlockLength: Max: 30 ExcludedMethods: [ 'describe' ] Metrics/MethodLength: Max: 30 Style/TrailingCommaInHashLiteral: EnforcedStyleForMultiline: 'comma' Layout/HashAlignment: EnforcedColonStyle: table Metrics/AbcSize: Max: 20
Allow describe to be longer than 30 lines
Allow describe to be longer than 30 lines `describe` is where all the tests live and so is often very long
YAML
mit
deanwilson/puppet-lint-no_erb_template-check
0364b7fd949e6e82a485a9b416cb902883a149cf
pubspec.yaml
pubspec.yaml
name: more version: 1.10.1 author: Lukas Renggli <[email protected]> homepage: https://github.com/renggli/dart-more description: More Dart — Literally. Collecting, iterating, caching, mathematics, matching, and ordering easily. environment: sdk: '>=2.0.0-dev.69.0 <3.0.0' dependencies: collection: ^1.14.0 dev_dependencies: build_runner: ^0.9.0 build_test: ^0.10.0 build_web_compilers: ^0.4.0 test: ^1.3.0
name: more version: 1.10.1 author: Lukas Renggli <[email protected]> homepage: https://github.com/renggli/dart-more description: More Dart — Literally. Collecting, iterating, caching, mathematics, matching, and ordering easily. environment: sdk: ^2.0.0 dependencies: collection: ^1.14.0 dev_dependencies: build_runner: ^0.9.0 build_test: ^0.10.0 build_web_compilers: ^0.4.0 test: ^1.3.0
Update the lower Dart SDK version to 2.0.0
Update the lower Dart SDK version to 2.0.0
YAML
mit
renggli/dart-more,renggli/dart-more
feb70fca201a273802ec097614bcd9d5b4799930
pubspec.yaml
pubspec.yaml
name: win32 description: A Dart library for accessing common Win32 APIs using FFI. No C required! version: 2.0.0 homepage: https://win32.pub repository: https://github.com/timsneath/win32 issue_tracker: https://github.com/timsneath/win32/issues documentation: https://win32.pub environment: sdk: '>=2.12.0-259.8 <3.0.0' dependencies: ffi: ^1.0.0 dev_dependencies: pedantic: ^1.10.0 test: ^1.16.0 winmd: path: ../winmd
name: win32 description: A Dart library for accessing common Win32 APIs using FFI. No C required! version: 2.0.0 homepage: https://win32.pub repository: https://github.com/timsneath/win32 issue_tracker: https://github.com/timsneath/win32/issues documentation: https://win32.pub environment: sdk: '>=2.12.0-259.8 <3.0.0' dependencies: ffi: ^1.0.0 dev_dependencies: pedantic: ^1.10.0 test: ^1.16.0 winmd: ^0.4.0-dev.2
Switch back to public version of winmd
Switch back to public version of winmd
YAML
bsd-3-clause
timsneath/win32,timsneath/win32,timsneath/win32
a0ac25d2a15d1a15ac353d9f7125bb94eae060b7
pubspec.yaml
pubspec.yaml
name: audio_session description: Sets the iOS audio session category and Android audio attributes for your app, and manages your app's audio focus, mixing and ducking behaviour. version: 0.0.1 homepage: https://github.com/ryanheise/audio_session environment: sdk: ">=2.7.0 <3.0.0" flutter: ">=1.20.0 <2.0.0" dependencies: flutter: sdk: flutter flutter_web_plugins: sdk: flutter rxdart: ^0.24.1 dev_dependencies: flutter_test: sdk: flutter flutter: plugin: platforms: android: package: com.ryanheise.audio_session pluginClass: AudioSessionPlugin ios: pluginClass: AudioSessionPlugin macos: pluginClass: AudioSessionPlugin web: pluginClass: AudioSessionWeb fileName: audio_session_web.dart
name: audio_session description: Sets the iOS audio session category and Android audio attributes for your app, and manages your app's audio focus, mixing and ducking behaviour. version: 0.0.1 homepage: https://github.com/ryanheise/audio_session environment: sdk: ">=2.7.0 <3.0.0" flutter: ">=1.12.13+hotfix.5" dependencies: flutter: sdk: flutter flutter_web_plugins: sdk: flutter rxdart: ^0.24.1 dev_dependencies: flutter_test: sdk: flutter flutter: plugin: platforms: android: package: com.ryanheise.audio_session pluginClass: AudioSessionPlugin ios: pluginClass: AudioSessionPlugin macos: pluginClass: AudioSessionPlugin web: pluginClass: AudioSessionWeb fileName: audio_session_web.dart
Revert Flutter min sdk requirement to 1.12.13+hotfix.5
Revert Flutter min sdk requirement to 1.12.13+hotfix.5
YAML
mit
ryanheise/audio_session,ryanheise/audio_session,ryanheise/audio_session,ryanheise/audio_session,ryanheise/audio_session
f83f2c1f0e203f98a3bd36c40e5a1d72eed4555f
pubspec.yaml
pubspec.yaml
name: range_fix description: A workaround for the Range.getClientRects bug in Chrome. version: 0.1.2 author: Kwang Yul Seo <[email protected]> homepage: https://github.com/kseo/range_fix environment: sdk: '>=1.0.0 <2.0.0' #dependencies: # lib_name: any dev_dependencies: browser: any color: any test: '>=0.12.0 <0.13.0'
name: range_fix description: A workaround for the Range.getClientRects bug in Chrome. version: 0.1.2 authors: - Kwang Yul Seo <[email protected]> - Fluidic Team <[email protected]> homepage: https://github.com/kseo/range_fix environment: sdk: '>=1.0.0 <2.0.0' #dependencies: # lib_name: any dev_dependencies: browser: any color: any test: '>=0.12.0 <0.13.0'
Add Fluidic Team to the list of authors.
Add Fluidic Team to the list of authors.
YAML
bsd-3-clause
fluidic/range_fix,fluidic/range_fix,fluidic/range_fix
f93979d9e212c36b33aad74ee19ad9b5f6e68855
packages/ip/ip2proxy.yaml
packages/ip/ip2proxy.yaml
homepage: http://www.ip2location.com changelog-type: markdown hash: ad6594d396b518a41e72774d0c3f03fdb663d762f8b857669549f1e06cbe0c5d test-bench-deps: {} maintainer: [email protected] synopsis: IP2Proxy Haskell package for proxy detection. changelog: ! '# Revision history for ip2proxy ## 1.0.0 -- 2018-11-29 * First version. Released on an unsuspecting world. ' basic-deps: bytestring: ! '>=0.10 && <0.11' base: ! '>=4.11 && <4.12' binary: ! '>=0.8.4 && <0.9' iproute: ! '>=1.7 && <1.8' all-versions: - 1.0.0 author: IP2Location latest: 1.0.0 description-type: haddock description: This Haskell package allows users to query an IP address to determine if it was being used as open proxy, web proxy, VPN anonymizer and TOR exits. license-name: MIT
homepage: https://www.ip2location.com changelog-type: markdown hash: 940f40b8b6ad9ed213ca67da53089c7ecd5319ce30f7d2fd24bad7b62cb1cacb test-bench-deps: {} maintainer: [email protected] synopsis: IP2Proxy Haskell package for proxy detection. changelog: | # Revision history for ip2proxy ## 2.0.0 -- 2019-05-27 * Added support for PX5 to PX8 packages. ## 1.0.0 -- 2018-11-29 * First version. Released on an unsuspecting world. basic-deps: bytestring: ! '>=0.10 && <0.11' base: ! '>=4.11 && <4.12' binary: ! '>=0.8.4 && <0.9' iproute: ! '>=1.7 && <1.8' all-versions: - 1.0.0 - 2.0.0 author: IP2Location latest: 2.0.0 description-type: haddock description: This Haskell package allows users to query an IP address to determine if it was being used as VPN anonymizer, open proxies, web proxies, Tor exits, data center, web hosting (DCH) range and search engine robots (SES). license-name: MIT
Update from Hackage at 2019-05-27T06:11:05Z
Update from Hackage at 2019-05-27T06:11:05Z
YAML
mit
commercialhaskell/all-cabal-metadata
d00e4f88185ca4d2041f0bb9a10be696b15bea72
packages/sa/sampling.yaml
packages/sa/sampling.yaml
homepage: https://github.com/jtobin/sampling changelog-type: '' hash: cffb3fb841ffd78ed6f538a291b824a8bcaf982f1c1c51eed5beb0cef2b8f946 test-bench-deps: base: -any criterion: -any sampling: -any maintainer: [email protected] synopsis: Sample values from collections. changelog: '' basic-deps: mwc-random: ! '>=0.13 && <0.14' base: ! '>4.8 && <5' containers: ! '>=0.5 && <1' foldl: ! '>=1.1 && <2' primitive: ! '>=0.6 && <1' vector: ! '>=0.11 && <0.12' all-versions: - '0.1.1' - '0.2.0' - '0.3.0' - '0.3.1' author: Jared Tobin latest: '0.3.1' description-type: haddock description: ! 'Basic sampling tools. Exports variations on two simple functions for sampling from arbitrary ''Foldable'' collections: * ''sample'', for sampling without replacement * ''resample'', for sampling with replacement (i.e., a bootstrap) Each variation can be prefixed with ''p'' to sample from a container of values weighted by probability.' license-name: MIT
homepage: https://github.com/jtobin/sampling changelog-type: '' hash: 900a3a30a6b4a96869589dbffceb82251e8ffce6caff065bcfe664ae3c5faa7d test-bench-deps: base: -any criterion: -any sampling: -any maintainer: [email protected] synopsis: Sample values from collections. changelog: '' basic-deps: mwc-random: ! '>=0.13 && <0.14' base: ! '>4.8 && <5' containers: ! '>=0.5 && <1' foldl: ! '>=1.1 && <2' primitive: ! '>=0.6 && <1' vector: ! '>=0.11 && <1' all-versions: - '0.1.1' - '0.2.0' - '0.3.0' - '0.3.1' - '0.3.2' author: Jared Tobin latest: '0.3.2' description-type: haddock description: ! 'Basic sampling tools. Exports variations on two simple functions for sampling from arbitrary ''Foldable'' collections: * ''sample'', for sampling without replacement * ''resample'', for sampling with replacement (i.e., a bootstrap) Each variation can be prefixed with ''p'' to sample from a container of values weighted by probability.' license-name: MIT
Update from Hackage at 2017-01-31T23:12:44Z
Update from Hackage at 2017-01-31T23:12:44Z
YAML
mit
commercialhaskell/all-cabal-metadata
a2d6431cd1a4d6842161e67bf6e6809bedb07b85
packages/to/tokstyle.yaml
packages/to/tokstyle.yaml
homepage: https://toktok.github.io/tokstyle changelog-type: '' hash: 91c24ddcc7b5230aed32e74c6a439b2a62453fc0824276aaba9de2b76f630463 test-bench-deps: base: <5 hspec: -any tokstyle: -any maintainer: [email protected] synopsis: TokTok C code style checker changelog: '' basic-deps: warp: -any bytestring: -any compact: -any wai-cors: -any wai: -any base: ==4.* text: -any groom: -any filepath: -any servant-server: '>=0.5' array: -any servant: '>=0.5' containers: -any language-c: -any tokstyle: -any mtl: -any wai-extra: -any deepseq: -any aeson: '>=0.8.1.0' all-versions: - 0.0.1 - 0.0.5 author: iphydf latest: 0.0.5 description-type: haddock description: TokTok C code style checker license-name: GPL-3.0-only
homepage: https://toktok.github.io/tokstyle changelog-type: '' hash: e637fde4c40bff65106b3cc8ed3f451e61f4e2ac0758d00539c8e9e6babec784 test-bench-deps: base: <5 hspec: -any text: -any cimple: -any tokstyle: -any maintainer: [email protected] synopsis: TokTok C code style checker changelog: '' basic-deps: warp: -any bytestring: -any wai-cors: -any wai: -any base: ==4.* text: -any groom: -any filepath: -any cimple: '>=0.0.5' servant-server: '>=0.5' servant: '>=0.5' containers: -any tokstyle: -any mtl: -any wai-extra: -any deepseq: -any aeson: '>=0.8.1.0' all-versions: - 0.0.1 - 0.0.5 - 0.0.6 author: iphydf latest: 0.0.6 description-type: haddock description: TokTok C code style checker license-name: GPL-3.0-only
Update from Hackage at 2021-12-25T01:15:06Z
Update from Hackage at 2021-12-25T01:15:06Z
YAML
mit
commercialhaskell/all-cabal-metadata
a6613bfb6b5bbb9ad26b010a3305de84b67846ac
packages/lu/luminance-samples.yaml
packages/lu/luminance-samples.yaml
homepage: https://github.com/phaazon/luminance-samples changelog-type: markdown hash: fcb8a49644ef411cfcabb393034f5c09646edcd650911159502bfa540ebee76b test-bench-deps: {} maintainer: Dimitri Sabadie <[email protected]> synopsis: Luminance samples changelog: '' basic-deps: JuicyPixels: ! '>=3.2 && <3.4' luminance: ==0.1.* base: ==4.8.* contravariant: ==1.3.* mtl: ==2.2.* GLFW-b: ==1.4.* transformers: ==0.4.* resourcet: ==1.1.* vector: ==0.11.* all-versions: - '0.1' author: Dimitri Sabadie <[email protected]> latest: '0.1' description-type: haddock description: Luminance samples used as tutorial help license-name: BSD3
homepage: https://github.com/phaazon/luminance-samples changelog-type: markdown hash: 991275b9636890a0efe87fa9f58245368b3d6796125f910c359acfee6e386585 test-bench-deps: {} maintainer: Dimitri Sabadie <[email protected]> synopsis: Luminance samples changelog: ! '### 0.1.1 - Added Common.hs in the `extra-source-files` field of the luminance-samples.cabal. - Added CHANGELOG.md. ### 0.1 - Initial revision. ' basic-deps: JuicyPixels: ! '>=3.2 && <3.4' luminance: ==0.1.* base: ==4.8.* contravariant: ==1.3.* mtl: ==2.2.* GLFW-b: ==1.4.* transformers: ==0.4.* resourcet: ==1.1.* vector: ==0.11.* all-versions: - '0.1' - '0.1.1' author: Dimitri Sabadie <[email protected]> latest: '0.1.1' description-type: haddock description: Luminance samples used as tutorial help license-name: BSD3
Update from Hackage at 2015-09-22T22:38:42+0000
Update from Hackage at 2015-09-22T22:38:42+0000
YAML
mit
commercialhaskell/all-cabal-metadata
4c5e9035afa331177c8cfce6dd28c3067225e7ce
packages/ti/timezone-olson-th.yaml
packages/ti/timezone-olson-th.yaml
homepage: http://github.com/jonpetterbergman/timezone-olson-th changelog-type: '' hash: 1bc76c990f92654a7c9afef0a135e6fddca0e34e224be585f49374b2d85a8129 test-bench-deps: {} maintainer: [email protected] synopsis: Load TimeZoneSeries from an Olson file at compile time. changelog: '' basic-deps: base: ! '>=4.7 && <4.10' time: ! '>=1.4 && <1.7' timezone-series: ! '>=0.1 && <0.2' timezone-olson: ! '>=0.1 && <0.2' template-haskell: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' author: Petter Bergman latest: '0.1.0.2' description-type: markdown description: ! "# timezone-olson-th\nTemplate Haskell to load a TimeZoneSeries from an Olson file at compile time.\n\nFor Example:\n\n myTimeZoneSeries :: TimeZoneSeries\n \ myTimeZoneSeries = $(loadTZFile \"/usr/share/zoneinfo/Europe/Stockholm\")\n\n" license-name: BSD3
homepage: http://github.com/jonpetterbergman/timezone-olson-th changelog-type: '' hash: 6ac15b8fd48a49fc6b7f176008ed908cd8c4b2017bada06ff9f8710366888905 test-bench-deps: {} maintainer: [email protected] synopsis: Load TimeZoneSeries from an Olson file at compile time. changelog: '' basic-deps: base: ! '>=4.7 && <4.10' time: ! '>=1.4 && <1.9' timezone-series: ! '>=0.1 && <0.2' timezone-olson: ! '>=0.1 && <0.2' template-haskell: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.0.3' author: Petter Bergman latest: '0.1.0.3' description-type: markdown description: ! "# timezone-olson-th\nTemplate Haskell to load a TimeZoneSeries from an Olson file at compile time.\n\nFor Example:\n\n myTimeZoneSeries :: TimeZoneSeries\n \ myTimeZoneSeries = $(loadTZFile \"/usr/share/zoneinfo/Europe/Stockholm\")\n\n" license-name: BSD3
Update from Hackage at 2017-06-04T19:01:45Z
Update from Hackage at 2017-06-04T19:01:45Z
YAML
mit
commercialhaskell/all-cabal-metadata
04283dfed159cb8fc94ceec086d840c37c284234
appveyor.yml
appveyor.yml
# version format. This will always be changed by the Install script. version: 1.0.{build} # Dev14 is required to build (os actually means VM image) os: Visual Studio 2015 Preview # set up the build number (last two numbers). this has to happen before # we do anything else because it's the only time we can set environment # variables. init: - ps: $year = (Get-Date -Format 'yyyy').Substring(3,1) - ps: $day = Get-Date -Format 'MMdd' - ps: $buildVersion = $year + $day + '.' + $env:APPVEYOR_BUILD_NUMBER - ps: Add-AppveyorMessage -Message "Updating build number to $buildVersion" -Category Information - ps: Set-AppveyorBuildVariable -Name BuildNumber -Value $buildVersion install: - cmd: powershell -ExecutionPolicy Bypass scripts\Appveyor-Install.ps1 before_build: - nuget restore build: project: Salesforce.VisualStudio.Services.sln configuration: - Release platform: Any CPU artifacts: - path: src\Salesforce.VisualStudio.Services\bin\$(configuration)\Salesforce.VisualStudio.Services.vsix
# version format. This will always be changed by the Install script. version: 1.0.{build} # Dev14 is required to build (os actually means VM image) os: Visual Studio 2015 Preview # set up the build number (last two numbers). this has to happen before # we do anything else because it's the only time we can set environment # variables. init: - ps: $year = (Get-Date -Format 'yyyy').Substring(3,1) - ps: $day = Get-Date -Format 'MMdd' - ps: $buildVersion = $year + $day + '.' + $env:APPVEYOR_BUILD_NUMBER - ps: Add-AppveyorMessage -Message "Updating build number to $buildVersion" -Category Information - ps: Set-AppveyorBuildVariable -Name BuildNumber -Value $buildVersion install: - cmd: powershell -ExecutionPolicy Bypass scripts\Appveyor-Install.ps1 before_build: - nuget restore build: project: Salesforce.VisualStudio.Services.sln configuration: - Release - Debug platform: Any CPU artifacts: - path: src\Salesforce.VisualStudio.Services\bin\$(configuration)\Salesforce.VisualStudio.Services.vsix name: $(configuration) VSIX - path: src\Salesforce.VisualStudio.Services\bin\$(configuration)\Salesforce.VisualStudio.Services.pdb name: $(configuration) PDB
Add PDBs and Debug configuration to artifacts.
Add PDBs and Debug configuration to artifacts.
YAML
bsd-3-clause
developerforce/visual-studio-tools
8fa441b891f68725f11f6977c842009d74f416cf
roles/fail2ban/defaults/main.yml
roles/fail2ban/defaults/main.yml
--- fail2ban_package: fail2ban fail2ban_loglevel: INFO fail2ban_logtarget: /var/log/fail2ban.log fail2ban_socket: /var/run/fail2ban/fail2ban.sock fail2ban_ignoreip: 127.0.0.1/8 {{ ip_whitelist | join(' ') }} fail2ban_bantime: 600 fail2ban_maxretry: 6 fail2ban_backend: polling fail2ban_destemail: root@localhost fail2ban_banaction: iptables-multiport fail2ban_mta: sendmail fail2ban_protocol: tcp fail2ban_chain: INPUT fail2ban_action: action_ fail2ban_services: - name: ssh port: ssh filter: sshd logpath: /var/log/auth.log
--- fail2ban_package: fail2ban fail2ban_loglevel: INFO fail2ban_logtarget: /var/log/fail2ban.log fail2ban_socket: /var/run/fail2ban/fail2ban.sock fail2ban_ignoreip: 127.0.0.1/8 {{ ip_whitelist | join(' ') }} fail2ban_bantime: 600 fail2ban_maxretry: 6 fail2ban_backend: polling fail2ban_destemail: root@localhost fail2ban_banaction: iptables-multiport fail2ban_mta: sendmail fail2ban_protocol: tcp fail2ban_chain: INPUT fail2ban_action: action_ fail2ban_services_default: - name: ssh port: ssh filter: sshd logpath: /var/log/auth.log fail2ban_services_custom: [] fail2ban_services: "{{ fail2ban_services_default + fail2ban_services_custom }}"
Make Fail2ban services list extensible
Make Fail2ban services list extensible enable adding custom services in 'group_vars/'; rename default list to 'fail2ban_services_default'; create 'fail2ban_services_default'; combine 'default' & 'custom'.
YAML
mit
newtonne/trellis,buluma/trellis,newtonne/trellis,roots/bedrock-ansible,roots/bedrock-ansible,pressbooks/trellis,buluma/trellis,pressbooks/trellis,buluma/trellis,buluma/trellis,newtonne/trellis,roots/trellis,roots/trellis
c4cd43c4fcc5f63157db824a05cc0f1a36073153
roles/ssh_cluster/tasks/main.yml
roles/ssh_cluster/tasks/main.yml
--- - name: Create SSH keys for the user in question user: name={{ ssh_user }} generate_ssh_key=yes ssh_key_bits=2048 register: sshkey - name: Install key on remote hosts authorized_key: user={{ ssh_user }} key="{{ sshkey.ssh_public_key }}" delegate_to: "{{ item }}" with_items: play_hosts - name: Setup known hosts file template: src=known_hosts.j2 dest=/etc/ssh/ssh_known_hosts mode=0644 owner=root group=root
--- - name: Create SSH keys for the user in question user: name={{ ssh_user }} generate_ssh_key=yes ssh_key_bits=2048 - name: Get the public key off the machine slurp: src: "~{{ ssh_user }}/.ssh/id_rsa.pub" register: sshkey - name: Install key on remote hosts authorized_key: user={{ ssh_user }} key="{{ sshkey.content|b64decode }}" delegate_to: "{{ item }}" with_items: play_hosts - name: Setup known hosts file template: src=known_hosts.j2 dest=/etc/ssh/ssh_known_hosts mode=0644 owner=root group=root
Fix a potential issue with SSH keys not being copied if a machine gets redeployed
Fix a potential issue with SSH keys not being copied if a machine gets redeployed
YAML
mit
smarthall/ansible-pgpool
6ae4ff3f836f21f1a507767c34e9ebdf420ceb0f
quicksilver.yml
quicksilver.yml
--- - hosts: workstation tasks: - name: install Quicksilver mac_pkg: pkg_type=app url=http://qs0.qsapp.com/plugins/download.php archive_type=dmg archive_path=Quicksilver.app sudo: yes
--- - hosts: workstation tasks: - name: install Quicksilver mac_pkg: pkg_type=app url=http://cdn.qsapp.com/plugins/files/com.blacktree.Quicksilver__16401.dmg archive_type=dmg archive_path=Quicksilver.app sudo: yes
Update Quicksilver link (didn't like the redirect)
Update Quicksilver link (didn't like the redirect)
YAML
apache-2.0
justinclayton/ansible-osx,wchrisjohnson/ansible-osx,spencergibb/ansible-osx,vladdancer/ansible-osx,seakayone/ansible-osx,JSainsburyPLC/ansible-osx
5009037e59f625c61678364c6052926021ef88ea
recipes/geotext/meta.yaml
recipes/geotext/meta.yaml
{% set name = "geotext" %} {% set version = "0.3.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 3f7ca079d052ac9861354cfa9d72fe8aaa98025b440bc45baa47c862198aa25f build: #noarch: python skip: True # [win] number: 0 script: python -m pip install --no-deps --ignore-installed . requirements: host: - python - pip run: - python test: imports: - geotext about: home: https://pypi.org/project/geotext/ license: MIT license_family: MIT license_file: LICENSE summary: Geotext extracts country and city mentions from text description: | Geotext extracts country and city mentions from text doc_url: https://geotext.readthedocs.io/en/ dev_url: https://github.com/elyase/geotext extra: recipe-maintainers: - CurtLH
{% set name = "geotext" %} {% set version = "0.3.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 3f7ca079d052ac9861354cfa9d72fe8aaa98025b440bc45baa47c862198aa25f build: #noarch: python skip: True # [win] number: 0 script: python -m pip install --no-deps --ignore-installed . requirements: host: - python - pip run: - python test: imports: - geotext about: home: https://pypi.org/project/geotext/ license: MIT license_family: MIT license_file: LICENSE summary: 'Geotext extracts country and city mentions from text' description: | Geotext extracts country and city mentions from text doc_url: https://geotext.readthedocs.io/en/ dev_url: https://github.com/elyase/geotext extra: recipe-maintainers: - CurtLH
Put summary inside of a string
Put summary inside of a string
YAML
bsd-3-clause
igortg/staged-recipes,kwilcox/staged-recipes,scopatz/staged-recipes,shadowwalkersb/staged-recipes,mcs07/staged-recipes,patricksnape/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,ReimarBauer/staged-recipes,chrisburr/staged-recipes,isuruf/staged-recipes,Juanlu001/staged-recipes,SylvainCorlay/staged-recipes,dschreij/staged-recipes,cpaulik/staged-recipes,mcs07/staged-recipes,patricksnape/staged-recipes,stuertz/staged-recipes,rmcgibbo/staged-recipes,johanneskoester/staged-recipes,sodre/staged-recipes,Juanlu001/staged-recipes,petrushy/staged-recipes,asmeurer/staged-recipes,rvalieris/staged-recipes,basnijholt/staged-recipes,barkls/staged-recipes,asmeurer/staged-recipes,mariusvniekerk/staged-recipes,johanneskoester/staged-recipes,jjhelmus/staged-recipes,jakirkham/staged-recipes,jochym/staged-recipes,mariusvniekerk/staged-recipes,goanpeca/staged-recipes,cpaulik/staged-recipes,sodre/staged-recipes,isuruf/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,jjhelmus/staged-recipes,rmcgibbo/staged-recipes,hadim/staged-recipes,SylvainCorlay/staged-recipes,ocefpaf/staged-recipes,pmlandwehr/staged-recipes,kwilcox/staged-recipes,hadim/staged-recipes,synapticarbors/staged-recipes,pmlandwehr/staged-recipes,birdsarah/staged-recipes,barkls/staged-recipes,ceholden/staged-recipes,scopatz/staged-recipes,synapticarbors/staged-recipes,dschreij/staged-recipes,petrushy/staged-recipes,conda-forge/staged-recipes,igortg/staged-recipes,chrisburr/staged-recipes,birdsarah/staged-recipes,sodre/staged-recipes,basnijholt/staged-recipes,stuertz/staged-recipes,ceholden/staged-recipes,conda-forge/staged-recipes,shadowwalkersb/staged-recipes,goanpeca/staged-recipes,rvalieris/staged-recipes
454b518c1230781b904c2b941ccb76f936faf39a
yaml/single-pod.yaml
yaml/single-pod.yaml
apiVersion: v1 kind: Pod metadata: name: killa namespace: kube-system labels: app: killa spec: containers: - name: killa image: killa imagePullPolicy: IfNotPresent volumeMounts: - name: docker mountPath: /var/run/docker.sock volumes: - name: docker hostPath: type: Socket path: "/var/run/docker.sock" terminationGracePeriodSeconds: 1
apiVersion: v1 kind: Pod metadata: name: killa namespace: kube-system labels: app: killa spec: containers: - name: killa image: gcr.io/ahmetb-public/killa:a8e0747 imagePullPolicy: IfNotPresent volumeMounts: - name: docker mountPath: /var/run/docker.sock volumes: - name: docker hostPath: type: Socket path: "/var/run/docker.sock" terminationGracePeriodSeconds: 1
Update yaml with a public image
Update yaml with a public image Signed-off-by: Ahmet Alp Balkan <[email protected]>
YAML
apache-2.0
GoogleCloudPlatform/freshpod
6f22de2a95f2e2999e5ff36cf252f2aa7a41a84e
tasks/modules/http_echo_module.yml
tasks/modules/http_echo_module.yml
# file: nginx/tasks/modules/http_echo_module.yml # configure flag: --add-module=/tmp/nginx_echo - name: Nginx | Modules | Download the http_echo_module source get_url: url: "{{nginx_echo_url}}" dest: "/tmp/nginx-echo-module.tar.gz" - name: Nginx | Modules | Unpack the http_auth_request_module source command: tar -xvzf /tmp/nginx-echo-module.tar.gz chdir=/tmp creates=/tmp/echo-nginx-module-{{nginx_echo_version}} - name: Nginx | Modules | Copy the http_auth_request_module source folder command: sudo cp -R /tmp/echo-nginx-module-{{nginx_echo_version}} /tmp/nginx_echo
# file: nginx/tasks/modules/http_echo_module.yml # configure flag: --add-module=/tmp/nginx_echo - name: Nginx | Modules | Download the http_echo_module source get_url: url: "{{nginx_echo_url}}" dest: "/tmp/nginx-echo-module.tar.gz" - name: Nginx | Modules | Unpack the http_echo_module source command: tar -xvzf /tmp/nginx-echo-module.tar.gz chdir=/tmp creates=/tmp/echo-nginx-module-{{nginx_echo_version}} - name: Nginx | Modules | Copy the http_echo_module source folder command: sudo cp -R /tmp/echo-nginx-module-{{nginx_echo_version}} /tmp/nginx_echo
Fix wrong task's name (s/auth_request/echo/).
Fix wrong task's name (s/auth_request/echo/). Signed-off-by: Jean-Denis Vauguet <[email protected]>
YAML
mit
orlissenberg/ansible-nginx,ANXS/nginx,ANXS/nginx,benbovy/nginx,benbovy/nginx,KrashStudio/nginx,KrashStudio/nginx,orlissenberg/ansible-nginx
ae6d63a032e1a2509ab645a5f1655e150d3b96e4
utils/packaging/cleanup_opensuse.yml
utils/packaging/cleanup_opensuse.yml
--- - name: Clean up zypper cache command: zypper clean - name: Really clean zypper cache shell: for i in `ls /var/lib/zypp/`; do rm -rfv /var/lib/zypp/${i}/*; done - name: Determine kernel version in chroot shell: ls /lib/modules/ register: kernel_version - name: Generate module dependencies with depmod for kernel shell: depmod -a {{ kernel_version.stdout }} - name: Regenerate initramfs using dracut shell: dracut --force --regenerate-all # - name: Apply default SELinux contexts to the system # shell: restorecon -R / # when: selinux_enabled
--- - name: Clean up zypper cache command: zypper clean - name: Really clean zypper cache shell: for i in `ls /var/lib/zypp/`; do rm -rfv /var/lib/zypp/${i}/*; done - name: Determine kernel version in chroot shell: ls /lib/modules/ register: kernel_version - name: Generate module dependencies with depmod for kernel shell: depmod -a {{ kernel_version.stdout }} - name: Regenerate initramfs using dracut command: dracut --force --regenerate-all # - name: Apply default SELinux contexts to the system # shell: restorecon -R / # when: selinux_enabled
Switch to command to avoid failure
Switch to command to avoid failure
YAML
apache-2.0
squashible/squashible,squashible/squashible
6eb8bf18fc50196173e7468863bb3ee0e50894d7
.codeclimate.yml
.codeclimate.yml
--- engines: duplication: enabled: true config: languages: - ruby - javascript - python - php fixme: enabled: true radon: enabled: true ratings: paths: - "**.inc" - "**.js" - "**.jsx" - "**.module" - "**.php" - "**.py" - "**.rb" exclude_paths: []
--- engines: duplication: enabled: true config: languages: - ruby - javascript - python - php fixme: enabled: true radon: enabled: true config: python_version: 2 ratings: paths: - "**.inc" - "**.js" - "**.jsx" - "**.module" - "**.php" - "**.py" - "**.rb" exclude_paths: []
Set Python version to 2
Set Python version to 2
YAML
mit
wreckoner/PyEuler
4da139b383046d6e8703f673865a365250168374
.codeclimate.yml
.codeclimate.yml
--- engines: duplication: enabled: true config: languages: - ruby - javascript - python - php eslint: enabled: true fixme: enabled: true ratings: paths: - "**.inc" - "**.js" - "**.jsx" - "**.module" - "**.php" - "**.py" - "**.rb" exclude_paths: [ "public/assets/" ]
--- engines: duplication: enabled: true config: languages: - ruby - javascript - python - php checks: Similar code: enabled: false eslint: enabled: true fixme: enabled: true ratings: paths: - "**.inc" - "**.js" - "**.jsx" - "**.module" - "**.php" - "**.py" - "**.rb" exclude_paths: [ "public/assets/" ]
Remove Similar Code check cuz meaningless fur express
Remove Similar Code check cuz meaningless fur express Signed-off-by: Lawrence Law <[email protected]>
YAML
mit
nowhere-cloud/node-frontend,nowhere-cloud/node-frontend
afb155bca88d238a3d8843a4ea50cfbdd5c7fba2
.codeclimate.yml
.codeclimate.yml
--- engines: checkstyle: enabled: true channel: beta checks: com.puppycrawl.tools.checkstyle.checks.imports.CustomImportOrderCheck: enabled: false csslint: enabled: true duplication: enabled: true config: languages: - ruby - javascript - python - php eslint: enabled: true fixme: enabled: true pmd: enabled: true channel: beta ratings: paths: - "**.java" - "**.css" - "**.js" - "**.py" exclude_paths: []
--- engines: checkstyle: enabled: true channel: beta checks: com.puppycrawl.tools.checkstyle.checks.imports.CustomImportOrderCheck: enabled: false csslint: enabled: true eslint: enabled: true fixme: enabled: true pmd: enabled: true channel: beta ratings: paths: - "**.java" - "**.css" - "**.js" exclude_paths: []
Remove references to unused languages in code climate configuration
Remove references to unused languages in code climate configuration
YAML
apache-2.0
Tom-Willemsen/PicoBramble,Tom-Willemsen/PicoBramble,Tom-Willemsen/PicoBramble
251da4af079fd030d4fad194e9f5f65b2126ad04
.codeclimate.yml
.codeclimate.yml
languages: JavaScript: true exclude_paths: - "templates/*" - "script/lib/*" - "script/tests/*"
languages: JavaScript: true exclude_paths: - "commands/templates/*" - "js/lib/*" - "js/tests/*"
Correct paths in CodeClimate config
Correct paths in CodeClimate config
YAML
apache-2.0
weepower/wee-core
9f47891b30c81f9ee652bfd5fe300ef140d2003b
.codeclimate.yml
.codeclimate.yml
engines: rubocop: enabled: true exclude_paths: - "*.gemspec" - "*.md" - Rakefile - Gemfile - docs/**/* - task/**/* - coverage/**/*
engines: rubocop: enabled: true ratings: - lib/** - "**.rb" exclude_paths: - "*.gemspec" - "*.md" - Rakefile - Gemfile - docs/**/* - task/**/* - coverage/**/*
Fix glob for ruby files
Fix glob for ruby files
YAML
mit
renehernandez/data_structures_101,renehernandez/data_structures_101
65a67ad266b53fad04571ce1615a525bbf3a6051
openedx.yaml
openedx.yaml
# This file describes this Open edX repo, as described in OEP-2: # http://open-edx-proposals.readthedocs.io/en/latest/oeps/oep-0002.html#specification nick: rept oeps: {} owner: edx/openedx-tooling tags: [tools] track-pulls: true
# This file describes this Open edX repo, as described in OEP-2: # http://open-edx-proposals.readthedocs.io/en/latest/oeps/oep-0002.html#specification nick: rept oeps: {} openedx-release: {ref: master} owner: edx/openedx-tooling tags: [tools] track-pulls: true
Tag repo-tools itself with releases
Tag repo-tools itself with releases
YAML
apache-2.0
edx/repo-tools,edx/repo-tools
1ae81a5ac1fe7d498fed44f0d6ef1e3532e7aae4
.bazelci/build_bazel_binaries.yml
.bazelci/build_bazel_binaries.yml
--- platforms: centos7: build_targets: - "//src:bazel" build_flags: - "-c" - "opt" ubuntu1604: build_targets: - "//src:bazel" build_flags: - "-c" - "opt" ubuntu1804: build_targets: - "//src:bazel" build_flags: - "-c" - "opt" macos: build_targets: - "//src:bazel" build_flags: - "-c" - "opt" windows: build_flags: - "--copt=-w" - "--host_copt=-w" - "-c" - "opt" build_targets: - "//src:bazel"
--- platforms: centos7: build_targets: - "//src:bazel" build_flags: - "-c" - "opt" ubuntu1604: build_targets: - "//src:bazel" build_flags: - "-c" - "opt" ubuntu1804: build_targets: - "//src:bazel" build_flags: - "-c" - "opt" macos: build_targets: - "//src:bazel" build_flags: - "-c" - "opt" windows: build_flags: - "--copt=-w" - "--host_copt=-w" - "-c" - "opt" build_targets: - "//src:bazel.exe"
Build bazel binary with .exe extension
Build bazel binary with .exe extension This is required to make sure https://github.com/bazelbuild/continuous-integration/pull/850 works. RELNOTES: None PiperOrigin-RevId: 274759608
YAML
apache-2.0
bazelbuild/bazel,safarmer/bazel,safarmer/bazel,bazelbuild/bazel,dslomov/bazel-windows,katre/bazel,dslomov/bazel-windows,cushon/bazel,ButterflyNetwork/bazel,ButterflyNetwork/bazel,meteorcloudy/bazel,davidzchen/bazel,aehlig/bazel,aehlig/bazel,ButterflyNetwork/bazel,twitter-forks/bazel,ButterflyNetwork/bazel,dslomov/bazel,cushon/bazel,safarmer/bazel,ulfjack/bazel,perezd/bazel,ulfjack/bazel,twitter-forks/bazel,safarmer/bazel,davidzchen/bazel,akira-baruah/bazel,akira-baruah/bazel,perezd/bazel,ButterflyNetwork/bazel,cushon/bazel,dslomov/bazel-windows,davidzchen/bazel,meteorcloudy/bazel,safarmer/bazel,werkt/bazel,werkt/bazel,aehlig/bazel,akira-baruah/bazel,ulfjack/bazel,perezd/bazel,katre/bazel,dslomov/bazel,meteorcloudy/bazel,cushon/bazel,ButterflyNetwork/bazel,ulfjack/bazel,werkt/bazel,dslomov/bazel,aehlig/bazel,twitter-forks/bazel,aehlig/bazel,aehlig/bazel,werkt/bazel,twitter-forks/bazel,davidzchen/bazel,katre/bazel,dslomov/bazel-windows,perezd/bazel,meteorcloudy/bazel,katre/bazel,dslomov/bazel,dslomov/bazel-windows,akira-baruah/bazel,meteorcloudy/bazel,safarmer/bazel,aehlig/bazel,werkt/bazel,twitter-forks/bazel,katre/bazel,akira-baruah/bazel,bazelbuild/bazel,twitter-forks/bazel,akira-baruah/bazel,bazelbuild/bazel,werkt/bazel,ulfjack/bazel,cushon/bazel,bazelbuild/bazel,dslomov/bazel,dslomov/bazel-windows,davidzchen/bazel,bazelbuild/bazel,meteorcloudy/bazel,twitter-forks/bazel,ulfjack/bazel,ulfjack/bazel,davidzchen/bazel,perezd/bazel,cushon/bazel,davidzchen/bazel,meteorcloudy/bazel,katre/bazel,dslomov/bazel,dslomov/bazel,perezd/bazel,perezd/bazel
40e313af3a05168debc84210d1cd929529f4f9a2
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/config.yml
blank_issues_enabled: true contact_links: - name: Get in touch with the community url: https://discord.gg/rPWFv6W about: Hop on the Discord server if you want to discuss new features or problem with us
blank_issues_enabled: true contact_links: - name: Get in touch with the community url: https://discord.gg/rPWFv6W about: Hop on the Discord server if you want to discuss new features or problem with us - name: Just have a question? url: https://github.com/wger-project/wger/discussions about: Open a new discussion
Add link to github discussions
Add link to github discussions
YAML
agpl-3.0
petervanderdoes/wger,wger-project/wger,petervanderdoes/wger,petervanderdoes/wger,wger-project/wger,wger-project/wger,petervanderdoes/wger,wger-project/wger
30d0e2a8561cb5e8b211b7abf8ea82d37f47ea56
.github/workflows/maven-build.yml
.github/workflows/maven-build.yml
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven name: Java CI with Maven on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 11 uses: actions/setup-java@v2 with: java-version: '11' distribution: 'adopt' cache: maven - name: Build with Maven run: mvn -B package --file pom.xml
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven name: Java CI with Maven on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 11 uses: actions/setup-java@v2 with: java-version: '11' distribution: 'adopt' cache: maven - name: Build with Maven Wrapper run: ./mvnw -B package
Use the provided maven wrapper
Use the provided maven wrapper
YAML
apache-2.0
pkudevops/spring-petclinic-changed,pkudevops/spring-petclinic-changed
246c252942591e460842c5afa254f2b769aefd30
.github/workflows/release-gem.yml
.github/workflows/release-gem.yml
name: Release gem on: workflow_dispatch: inputs: dummy: required: false default: 'dummy' jobs: build: name: Build + Publish runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby 3.0 uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 - run: bundle install - name: Publish to RubyGems run: | mkdir -p $HOME/.gem touch $HOME/.gem/credentials chmod 0600 $HOME/.gem/credentials printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials bundle exec rake release env: GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
name: Release gem on: push: tags: - 'v*' jobs: build: name: Build + Publish runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby 3.0 uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 - run: bundle install - name: Publish to RubyGems run: | mkdir -p $HOME/.gem touch $HOME/.gem/credentials chmod 0600 $HOME/.gem/credentials printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials bundle exec rake release env: GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
Switch to cutting releases based on tags
Switch to cutting releases based on tags
YAML
mit
fgrehm/letter_opener_web,fgrehm/letter_opener_web,fgrehm/letter_opener_web,fgrehm/letter_opener_web
8da9a678c57830e0bfddb9e1aac0b49eb3d586aa
.github/workflows/standardjs.yaml
.github/workflows/standardjs.yaml
name: StandardJS on: pull_request: types: - opened - edited - synchronize jobs: StandardJS: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12.x - run: npm install standard - run: npx standard
name: StandardJS on: pull_request: types: - opened - edited - synchronize jobs: StandardJS: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: 12.x - run: npm install standard - run: npx standard
Update actions/setup-node action to v2
Update actions/setup-node action to v2 Generated by renovateBot
YAML
mit
pion/webrtc,pion/webrtc,pion/webrtc,pion/webrtc
347eeef06b28fdf7c00ed3e07bac32046b7eb9bc
ui/.taskcluster.yml
ui/.taskcluster.yml
version: 0 metadata: name: Balrog UI Task Graph description: Balrog UI owner: "{{ event.head.user.email }}" source: "{{ event.head.repo.url }}" tasks: - provisionerId: "{{ taskcluster.docker.provisionerId }}" workerType: "{{ taskcluster.docker.workerType }}" payload: maxRunTime: 1200 image: "bhearsum/lineman-docker" command: - "/bin/bash" - "-c" - "git clone $GITHUB_HEAD_REPO_URL && cd balrog-ui && git checkout $GITHUB_HEAD_BRANCH && lineman spec-ci" extra: github: env: true events: - push - pull_request.* metadata: name: Balrog UI Pull Request description: Pull Request owner: "{{ event.head.user.email }}" source: "{{ event.head.repo.url }}"
version: 0 metadata: name: Balrog UI Task Graph description: Balrog UI owner: "{{ event.head.user.email }}" source: "{{ event.head.repo.url }}" tasks: - provisionerId: "{{ taskcluster.docker.provisionerId }}" workerType: "{{ taskcluster.docker.workerType }}" payload: maxRunTime: 1200 image: "bhearsum/lineman-docker" command: - "/bin/bash" - "-c" - "git clone $GITHUB_HEAD_REPO_URL && cd balrog-ui && git checkout $GITHUB_HEAD_BRANCH && npm install && npm install -g lineman && lineman spec-ci" extra: github: env: true events: - push - pull_request.* metadata: name: Balrog UI Pull Request description: Pull Request owner: "{{ event.head.user.email }}" source: "{{ event.head.repo.url }}"
Update command to install necessary node packages.
[balrog-ui] Update command to install necessary node packages.
YAML
mpl-2.0
testbhearsum/balrog,nurav/balrog,testbhearsum/balrog,aksareen/balrog,aksareen/balrog,nurav/balrog,testbhearsum/balrog,mozbhearsum/balrog,aksareen/balrog,tieu/balrog,tieu/balrog,tieu/balrog,mozbhearsum/balrog,nurav/balrog,mozbhearsum/balrog,mozbhearsum/balrog,testbhearsum/balrog,aksareen/balrog,nurav/balrog,tieu/balrog
a4092eb8273e5a25e927b4c45cbb60c313da1f5e
.github/workflows/publish-package.yml
.github/workflows/publish-package.yml
# This workflows will upload a Python Package using Twine when a release is created # For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries name: Publish Package on: release: types: [published] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.6 - name: Install dependencies run: | python -m pip install --upgrade pip pip install setuptools wheel twine - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python setup.py sdist bdist_wheel twine upload dist/*
# This workflows will upload a Python Package using Twine when a release is created # For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries name: Publish Package on: push: tags: - '*' jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.6 - name: Install dependencies run: | python -m pip install --upgrade pip pip install setuptools wheel twine - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python setup.py sdist bdist_wheel twine upload dist/*
Fix publish package workflow to use tags
Fix publish package workflow to use tags
YAML
mit
mstuttgart/pycep-correios
c276bfde5c5c11159145ad1ea3d58a4958b459cf
ansible/roles/tshark/tasks/main.yml
ansible/roles/tshark/tasks/main.yml
- apt: name=tshark
- apt: name: tshark - lineinfile: path: /usr/share/wireshark/init.lua regexp: '^disable_lua =' line: 'disable_lua = true'
Replace disable_lua parameter false to true.
Replace disable_lua parameter false to true.
YAML
mit
groovenauts/raspi-ops,groovenauts/raspi-ops,groovenauts/raspi-ops,groovenauts/raspi-ops
c448fb8538cb5c65d9a6ed48367e668bb908e2a0
meta/main.yml
meta/main.yml
--- galaxy_info: author: ansistrano description: Ansible role to deploy scripting applications like PHP, Python, Ruby, etc. in a Capistrano style company: Ansistrano license: MIT min_ansible_version: 1.8 platforms: - name: EL versions: - all - name: GenericUNIX versions: - all - name: Fedora versions: - all - name: opensuse versions: - all - name: Amazon versions: - all - name: GenericBSD versions: - all - name: FreeBSD versions: - all - name: Ubuntu versions: - all - name: SLES versions: - all - name: GenericLinux versions: - all - name: Debian versions: - all categories: - cloud - web dependencies: []
--- galaxy_info: author: ansistrano description: Ansible role to deploy scripting applications like PHP, Python, Ruby, etc. in a Capistrano style company: Ansistrano license: MIT min_ansible_version: 1.9 platforms: - name: EL versions: - all - name: GenericUNIX versions: - all - name: Fedora versions: - all - name: opensuse versions: - all - name: Amazon versions: - all - name: GenericBSD versions: - all - name: FreeBSD versions: - all - name: Ubuntu versions: - all - name: SLES versions: - all - name: GenericLinux versions: - all - name: Debian versions: - all categories: - cloud - web dependencies: []
Change minimal ansible version to 1.9
Change minimal ansible version to 1.9
YAML
mit
dgsuarez/deploy,laupow/deploy
46c16037280e2f7a239253f3ab4e6ae362ae53be
.github/workflows/analyze-and-build.yml
.github/workflows/analyze-and-build.yml
name: Analyze and Build on: push jobs: js: name: JavaScript Checks runs-on: ubuntu-latest steps: - uses: actions/setup-node@master with: {version: ^12.0} - uses: actions/checkout@master - run: yarn install --frozen-lockfile - run: yarn run bundle-data - run: yarn run pretty - run: yarn run flow check - run: yarn run lint - name: Run tests run: yarn run test --coverage - name: Upload coverage env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} run: bash <(curl -s https://codecov.io/bash) bundle-android: runs-on: ubuntu-latest steps: - uses: actions/setup-node@master with: { version: ^12.0 } - uses: actions/checkout@master - run: yarn install --frozen-lockfile - run: yarn run bundle-data - run: yarn run --silent bundle:android bundle-ios: runs-on: ubuntu-latest steps: - uses: actions/setup-node@master with: { version: ^12.0 } - uses: actions/checkout@master - run: yarn install --frozen-lockfile - run: yarn run bundle-data - run: yarn run --silent bundle:ios
name: Analyze and Build on: push jobs: js: name: JavaScript Checks runs-on: ubuntu-latest steps: - uses: actions/setup-node@master with: {version: ^12.0} - uses: actions/checkout@master - run: yarn install --frozen-lockfile - run: yarn run bundle-data - run: yarn run pretty - run: yarn run flow check - run: yarn run lint - name: Run tests run: yarn run test --coverage - name: Upload coverage env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} run: bash <(curl -s https://codecov.io/bash) bundle-android: runs-on: ubuntu-latest steps: - uses: actions/setup-node@master with: { version: ^12.0 } - uses: actions/checkout@master - run: yarn install --frozen-lockfile - run: yarn run bundle-data - run: yarn run --silent bundle:android bundle-ios: runs-on: ubuntu-latest steps: - uses: actions/setup-node@master with: { version: ^12.0 } - uses: actions/checkout@master - run: yarn install --frozen-lockfile - run: yarn run bundle-data - run: yarn run --silent bundle:ios android: runs-on: ubuntu-latest steps: - uses: actions/setup-node@master with: { version: ^12.0 } - uses: actions/checkout@master - run: yarn install --frozen-lockfile - run: bundle check || bundle install --frozen --path vendor/bundle - run: android/gradlew androidDependencies --console=plain - run: echo 'org.gradle.workers.max=2' >> android/gradle.properties - run: bundle exec fastlane android ci-run
Add a starter Android build
Add a starter Android build Signed-off-by: Kristofer Rye <[email protected]>
YAML
agpl-3.0
StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native
0aed32993783293db28040c42d2e0e2b097e50e8
.github/workflows/deploy_to_ftp.yml
.github/workflows/deploy_to_ftp.yml
name: 🚀 Deploy to FTP on: push: branches: [ src ] jobs: build: name: Build & Deploy runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.9.6 - name: Set up Poetry uses: abatilo/[email protected] with: poetry-version: 1.1.7 - name: Install dependencies run: poetry install - name: Generate static output run: poetry run pelican -s publishconf.py - name: Deploy website to FTP uses: SamKirkland/[email protected] with: server: ${{ secrets.ftp_server }} username: ${{ secrets.ftp_username }} password: ${{ secrets.ftp_password }} local-dir: ./output/publish/ server-dir: ./public_html/
name: 🚀 Deploy to FTP on: push: branches: [ src ] workflow_dispatch jobs: build: name: Build & Deploy runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.9.6 - name: Set up Poetry uses: abatilo/[email protected] with: poetry-version: 1.1.7 - name: Install dependencies run: poetry install - name: Generate static output run: poetry run pelican -s publishconf.py - name: Deploy website to FTP uses: SamKirkland/[email protected] with: server: ${{ secrets.ftp_server }} username: ${{ secrets.ftp_username }} password: ${{ secrets.ftp_password }} local-dir: ./output/publish/ server-dir: ./public_html/
Add option to trigger deployment manually
Add option to trigger deployment manually
YAML
mit
marcardioid/marcsleegers.com,marcardioid/marcsleegers.com
9dfc5977054c000fa611303c8098d189b9b18786
.github/workflows/docker-build.yaml
.github/workflows/docker-build.yaml
name: ci on: push: branches: - 'master' jobs: docker: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Set up QEMU uses: docker/setup-qemu-action@v1 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - name: Login to DockerHub uses: docker/login-action@v1 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v2 with: context: nginx-pagespeed/ platforms: linux/amd64,linux/arm64 push: true tags: phpdockerio/nginx-pagespeed:latest
name: ci # on: # push: # branches: # - 'master' jobs: docker: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Set up QEMU uses: docker/setup-qemu-action@v1 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - name: Login to DockerHub uses: docker/login-action@v1 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v2 with: context: nginx-pagespeed/ platforms: linux/amd64,linux/arm64 push: true tags: phpdockerio/nginx-pagespeed:latest
Build for now on any branch
Build for now on any branch
YAML
apache-2.0
phpdocker-io/base-images
8c18021631df7277749a71d55da42d737f537957
.github/workflows/new_weeknotes.yml
.github/workflows/new_weeknotes.yml
# This is a basic workflow to help you get started with Actions name: New Weeknotes Post # Controls when the workflow will run on: # Run every Sunday at midnight UTC schedule: - cron: "0 0 * * SUN" # Allows you to run this workflow manually from the Actions tab workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 # Runs a single command using the runners shell - name: Create a new weeknotes file run: ./scripts/next_weeknotes_post.sh # Set up Git for committing - name: Set up git config run: | git config user.name "Adam Lukens" git config user.email "<[email protected]>" # Commit the new weeknotes and open a pull request - name: Commit the new weeknotes run: | git add . git commit -m "Add weeknotes post for $(date --iso-8601)" git push -u origin $(date --iso-8601)-weeknotes gh pr create -f --assignee @me
# This is a basic workflow to help you get started with Actions name: New Weeknotes Post # Controls when the workflow will run on: # Run every Sunday at midnight UTC schedule: - cron: "0 0 * * SUN" # Allows you to run this workflow manually from the Actions tab workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 # Set up Git for committing - name: Set up git config run: | git config user.name "Adam Lukens" git config user.email "<[email protected]>" - name: Create and commit the new weeknotes run: | git checkout -b $(date --iso-8601)-weeknotes ./scripts/next_weeknotes_post.sh git add . git commit -m "Add weeknotes post for $(date --iso-8601)" git push -u origin HEAD gh pr create -f --assignee @me
Set up branch for new weeknotes
Set up branch for new weeknotes
YAML
cc0-1.0
McPolemic/McPolemic.github.io,McPolemic/McPolemic.github.io,McPolemic/McPolemic.github.io
d2f151686193175d083a74a47318e25107df4d03
.github/workflows/windows_cmake.yml
.github/workflows/windows_cmake.yml
name: Windows Cmake on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: env: EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }} jobs: Windows-cmake: name: Windows Cmake uses: steinwurf/windows-cmake-action/.github/workflows/[email protected] with: extra_resolve_options: $EXTRA_RESOLVE_OPTIONS
name: Windows Cmake on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: env: EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }} jobs: Windows-cmake: name: Windows Cmake uses: steinwurf/windows-cmake-action/.github/workflows/[email protected] with: extra_resolve_options: $EXTRA_RESOLVE_OPTIONS
Update Windows Cmake to new version 4.0.0
Update Windows Cmake to new version 4.0.0
YAML
bsd-3-clause
steinwurf/recycle,steinwurf/recycle
04530484ce87abd42ce9e411551326b874a33de0
ansible/roles/mongodb/tasks/configure_mongo.yml
ansible/roles/mongodb/tasks/configure_mongo.yml
--- # Playbook that configures a runnning instance of MongoDB # Heavily influenced by: https://github.com/UnderGreen/ansible-role-mongodb # Using a subset of @UnderGreen's work - name: Configure mongodb template: src: mongod.conf.j2 dest: /etc/mongod.conf backup: yes owner: root group: root mode: 0644 notify : - mongodb restart
--- # Playbook that configures a runnning instance of MongoDB # Heavily influenced by: https://github.com/UnderGreen/ansible-role-mongodb # Using a subset of @UnderGreen's work - name: Configure mongodb template: src: mongod.conf.j2 dest: /etc/mongodb.conf backup: yes owner: root group: root mode: 0644 notify : - mongodb restart
Fix incorrect path for mongodb.conf
Fix incorrect path for mongodb.conf
YAML
mit
picoCTF/picoCTF,royragsdale/picoCTF,royragsdale/picoCTF,picoCTF/picoCTF,royragsdale/picoCTF,picoCTF/picoCTF,royragsdale/picoCTF,royragsdale/picoCTF,picoCTF/picoCTF,picoCTF/picoCTF,royragsdale/picoCTF,royragsdale/picoCTF,picoCTF/picoCTF
0570c461693ffa5053c6f1e7bff7ea7ab356b96b
zuul.d/project.yaml
zuul.d/project.yaml
# Copyright 2017, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - project: templates: - check-requirements - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: - openstack-ansible-linters - openstack-ansible-functional-centos-7 - openstack-ansible-functional-opensuse-423 - openstack-ansible-functional-ubuntu-bionic - openstack-ansible-functional-ubuntu-xenial - openstack-ansible-python3-ubuntu-xenial experimental: jobs: - openstack-ansible-integrated-deploy-aio gate: jobs: - openstack-ansible-linters - openstack-ansible-functional-centos-7 - openstack-ansible-functional-opensuse-423 - openstack-ansible-functional-ubuntu-bionic - openstack-ansible-functional-ubuntu-xenial
# Copyright 2017, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - project: templates: - check-requirements - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: - openstack-ansible-linters - openstack-ansible-functional-centos-7 - openstack-ansible-functional-opensuse-423 - openstack-ansible-functional-ubuntu-bionic - openstack-ansible-functional-ubuntu-xenial - openstack-ansible-python3-ubuntu-bionic experimental: jobs: - openstack-ansible-integrated-deploy-aio gate: jobs: - openstack-ansible-linters - openstack-ansible-functional-centos-7 - openstack-ansible-functional-opensuse-423 - openstack-ansible-functional-ubuntu-bionic - openstack-ansible-functional-ubuntu-xenial - openstack-ansible-python3-ubuntu-bionic
Switch python3 test to bionic and add it to gate
Switch python3 test to bionic and add it to gate Ubuntu bionic is python3 by default, and OSA stein will not support Ubuntu xenial, so it makes sense to switch the testing to use bionic instead. The test is also passing, so we should add it into the gate queue to prevent regressions. Change-Id: I43b6aac57f664e19f2d77be5a17fd3cb663075b2
YAML
apache-2.0
openstack/openstack-ansible-plugins,openstack/openstack-ansible-plugins
68a3f90c1cd93af7e06bbe8df4a03f17eaac8180
metadata/org.totschnig.ocr.tesseract.yml
metadata/org.totschnig.ocr.tesseract.yml
Categories: - Graphics License: Apache-2.0 AuthorName: Michael Totschnig AuthorEmail: [email protected] AuthorWebSite: https://michael.totschnig.org/ SourceCode: https://github.com/mtotschnig/OCR IssueTracker: https://github.com/mtotschnig/OCR/issues AutoName: OCR RepoType: git Repo: https://github.com/mtotschnig/OCR.git Builds: - versionName: '2.0' versionCode: 2 commit: r2 subdir: app gradle: - tesseract - versionName: 2.0.1 versionCode: 3 commit: r3 subdir: app gradle: - tesseract AutoUpdateMode: Version r%c UpdateCheckMode: Tags CurrentVersion: 2.0.1 CurrentVersionCode: 3
Categories: - Graphics License: Apache-2.0 AuthorName: Michael Totschnig AuthorEmail: [email protected] AuthorWebSite: https://michael.totschnig.org/ SourceCode: https://github.com/mtotschnig/OCR IssueTracker: https://github.com/mtotschnig/OCR/issues AutoName: OCR RepoType: git Repo: https://github.com/mtotschnig/OCR.git Builds: - versionName: '2.0' versionCode: 2 commit: r2 subdir: app gradle: - tesseract - versionName: 2.0.1 versionCode: 3 commit: r3 subdir: app gradle: - tesseract - versionName: '2.1' versionCode: 4 commit: r4 subdir: app gradle: - tesseract AutoUpdateMode: Version r%c UpdateCheckMode: Tags CurrentVersion: '2.1' CurrentVersionCode: 4
Update OCR to 2.1 (4)
Update OCR to 2.1 (4)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
e29eb89bbccaef871ed5ead304273d1a57615590
config/kbaird-twistage-desktop.yml
config/kbaird-twistage-desktop.yml
site: 'http://kbaird-twistage-desktop:3000' user: '[email protected]' password: 'Testing1' company: 'corcoran' license_key: '441a869594091' album_id: 'ma7c46256ac25' image_id: 'ic5d79a80c436' track_id: 't86aa451e2aa1' video_id: 'bc3f6246c3ed2'
site: 'http://kbaird-twistage-desktop:3000' company: 'corcoran' license_key: '441a869594091' album_id: 'ma7c46256ac25' image_id: 'ic5d79a80c436' track_id: 't86aa451e2aa1' video_id: 'bc3f6246c3ed2'
Remove user/pw cruft from YAML file
Remove user/pw cruft from YAML file
YAML
bsd-3-clause
Perceptive-Cloud/helix,Perceptive-Cloud/helix
009ae00c9ed483be4ffaa8f76802592597b27d3e
roles/base/tasks/main.yml
roles/base/tasks/main.yml
# # Copyright 2017 Martin Goellnitz. # # 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, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # - name: Upgrade all packages yum: name=* state=latest - name: Prepare firewall shell: firewall-cmd --zone=public --add-port={{item}}/tcp --permanent with_items: - 40180 - 40183 - 80 - 443 - 22 # Java - name: Install Java yum: name=java-1.8.0-openjdk-devel update_cache=yes - name: Java path configuration template: src=java.sh dest=/etc/profile.d/java.sh # Unzip - name: Install unzip yum: name=unzip update_cache=yes - include: chef.yml # Make sure mariadb is not installed - name: Uninstall MariaDB package yum: name={{ item }} state=absent update_cache=yes with_items: - mariadb-server - mariadb-common - mariadb-config
# # Copyright 2017 Martin Goellnitz. # # 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, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # - name: Upgrade all packages yum: name=* state=latest - name: Prepare firewall shell: firewall-cmd --zone=public --add-port={{item}}/tcp --permanent with_items: - 40080 - 40180 - 40183 - 80 - 443 - 22 # Java - name: Install Java yum: name=java-1.8.0-openjdk-devel update_cache=yes - name: Java path configuration template: src=java.sh dest=/etc/profile.d/java.sh # Unzip - name: Install unzip yum: name=unzip update_cache=yes - include: chef.yml # Make sure mariadb is not installed - name: Uninstall MariaDB package yum: name={{ item }} state=absent update_cache=yes with_items: - mariadb-server - mariadb-common - mariadb-config
Add solr port for remote CAE work
Add solr port for remote CAE work
YAML
apache-2.0
provocon/coremedia-centos-development
e018d50d5576460da05b18f8a6239265bd976293
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/node:8@sha256:0f95ad042f0099e737b59c3873795b9fb427ddf5fac675e47b1d44d58616c1bd - image: circleci/mongo:3@sha256:75dd30ed98bd9d4717bc5862a6e011b427d6618a83e8b6697bbb366ebd303dfa steps: - checkout - run: yarn install --frozen-lockfile - run: yarn test - run: yarn codecov
version: 2 jobs: build: docker: - image: circleci/node:8@sha256:23f55ec43b896824088c2dcd6b0f88b7c34c6f7e5fa761d98244a5ef434f93e1 - image: circleci/mongo:3@sha256:75dd30ed98bd9d4717bc5862a6e011b427d6618a83e8b6697bbb366ebd303dfa steps: - checkout - run: yarn install --frozen-lockfile - run: yarn test - run: yarn codecov
Update circleci/node:8 Docker digest to 23f55e
Update circleci/node:8 Docker digest to 23f55e
YAML
mit
js-accounts/accounts
05bc241a59fd324b52be9a555400a3160e626bea
group_vars/development/main.yml
group_vars/development/main.yml
acme_tiny_challenges_directory: "{{ www_root }}/letsencrypt" env: development ferm_enabled: false mysql_root_password: "{{ vault_mysql_root_password }}" # Define this variable in group_vars/development/vault.yml web_user: vagrant
acme_tiny_challenges_directory: "{{ www_root }}/letsencrypt" env: development ferm_enabled: false mysql_root_password: "{{ vault_mysql_root_password }}" # Define this variable in group_vars/development/vault.yml web_user: vagrant basic_auth_passwd: demo
Add basic_auth_passwd var to dev vars
Add basic_auth_passwd var to dev vars
YAML
mit
proteusthemes/pt-ops,proteusthemes/pt-ops,proteusthemes/pt-ops
ce5ef7f865d53f8660b26d5bd7b1d936d9deb87e
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: test: docker: - image: artsy/hokusai working_directory: ~/doppler steps: - add_ssh_keys - checkout - setup_remote_docker - run: name: Test command: hokusai test no_output_timeout: 1h push: docker: - image: artsy/hokusai steps: - add_ssh_keys - checkout - setup_remote_docker - run: name: Push command: hokusai registry push --tag $CIRCLE_SHA1 --force --overwrite deploy: docker: - image: artsy/hokusai steps: - add_ssh_keys - checkout - run: name: Configure command: hokusai configure --kubectl-version 1.10.7 --s3-bucket artsy-citadel --s3-key k8s/config --platform linux - run: name: Deploy command: hokusai staging deploy $CIRCLE_SHA1 workflows: version: 2 default: jobs: - test - push: filters: branches: only: master requires: - test - deploy: filters: branches: only: master requires: - push
version: 2 jobs: test: docker: - image: artsy/hokusai working_directory: ~/doppler steps: - add_ssh_keys - checkout - setup_remote_docker - run: name: Test command: hokusai test no_output_timeout: 1h push: docker: - image: artsy/hokusai steps: - add_ssh_keys - checkout - setup_remote_docker - run: name: Push command: hokusai registry push --tag $CIRCLE_SHA1 --force --overwrite staging_deploy: docker: - image: artsy/hokusai steps: - add_ssh_keys - checkout - run: name: Configure command: hokusai configure --kubectl-version 1.10.7 --s3-bucket artsy-citadel --s3-key k8s/config --platform linux - run: name: Deploy command: hokusai staging deploy $CIRCLE_SHA1 production_deploy: docker: - image: artsy/hokusai steps: - add_ssh_keys - checkout - setup_remote_docker - run: name: Configure command: hokusai configure --kubectl-version 1.6.3 --s3-bucket artsy-citadel --s3-key k8s/config --platform linux - run: name: Promote command: hokusai pipeline promote no_output_timeout: 30m workflows: version: 2 default: jobs: - test: filters: branches: ignore: release - push: filters: branches: only: master requires: - test - staging_deploy: filters: branches: only: master requires: - push - production_deploy: filters: branches: only: - release
Deploy to production when merging into the release branch.
Deploy to production when merging into the release branch.
YAML
mit
artsy/doppler,artsy/doppler,artsy/doppler,artsy/doppler
8b8227ed93cd3fb0e876716889779da32fb352fe
main.yml
main.yml
--- - hosts: localhost connection: local vars_files: - vars/main.yml roles: - geerlingguy.homebrew - geerlingguy.dotfiles tasks: - include: tasks/ansible-setup.yml - include: tasks/preferences.yml # TODO: Use sudo once .osx can be run via root with no user interaction. - name: Run .osx dotfiles. shell: ~/.osx --no-restart changed_when: false
--- - hosts: all connection: local vars_files: - vars/main.yml roles: - geerlingguy.homebrew - geerlingguy.dotfiles tasks: - include: tasks/ansible-setup.yml - include: tasks/preferences.yml # TODO: Use sudo once .osx can be run via root with no user interaction. - name: Run .osx dotfiles. shell: ~/.osx --no-restart changed_when: false
Make play run on only 127.0.0.1, not 'localhost' also.
Make play run on only 127.0.0.1, not 'localhost' also.
YAML
mit
toby-griffiths/mac-dev-playbook,annikaC/mac-dev-playbook,timdiels1/mac-dev-playbook,Dextro/macbuild
2e8a3e394329dec210318b86f25b6b3c50bb505c
config/locales/en.yml
config/locales/en.yml
en: spree: adyen_cse: errors: missing_encrypted_data: Encrypted data hasn't been set for this payment payment_form_labels: legend: Card Details holder_name: Card Holder Name number: Card Number cvc: CVC expiry_month: Expiration Month (MM) expiry_year: Expiration Year (YYYY) payment_form_placeholders: holder_name: John Doe number: '5555444433331111' cvc: '737' expiry_month: MM expiry_year: YYYY gateway_errors: 3dsecureauthenticationfailed: 3D Secure authentication was not executed or it did not execute successfully. acquirerfraus: Possible fraud blockedcard: Blocked Card cancelled: The transaction was cancelled cvcdeclined: CVC Declined refused: Payment unsuccessful declined: Card Declined acquirererror: Error with Bank expiredcard: Expired Card default_refusal_reason: 'There was an error processing your payment' 101: 'Please enter a valid card number' 103: 'Please enter a valid CVC' 128: 'Please enter a Card Holder Name' 129: 'Please enter a valid expiration date' 140: 'Please enter a valid expiration date' 141: 'Please enter a valid expiration date' api_username: API username api_password: API password merchant_account: Merchant Account public_key: Public key three_d_secure: Using 3D secure?
en: spree: adyen_cse: errors: missing_encrypted_data: Encrypted data hasn't been set for this payment payment_form_labels: legend: Card Details holder_name: Card Holder Name number: Card Number cvc: CVC expiry_month: Expiration Month (MM) expiry_year: Expiration Year (YYYY) payment_form_placeholders: holder_name: John Doe number: '5555444433331111' cvc: '737' expiry_month: MM expiry_year: YYYY gateway_errors: 3dsecureauthenticationfailed: 3D Secure authentication was not executed or it did not execute successfully. acquirerfraus: Possible fraud blockedcard: Blocked Card cancelled: The transaction was cancelled cvcdeclined: CVC Declined refused: Payment unsuccessful declined: Card Declined acquirererror: Error with Bank expiredcard: Expired Card transactionnotpermitted: 'Transaction Not Permitted' default_refusal_reason: 'There was an error processing your payment' 101: 'Please enter a valid card number' 103: 'Please enter a valid CVC' 128: 'Please enter a Card Holder Name' 129: 'Please enter a valid expiration date' 140: 'Please enter a valid expiration date' 141: 'Please enter a valid expiration date' api_username: API username api_password: API password merchant_account: Merchant Account public_key: Public key three_d_secure: Using 3D secure?
Add transaction not permitted locale
Add transaction not permitted locale
YAML
bsd-3-clause
madetech/solidus_adyen_cse,madetech/solidus_adyen_cse,madetech/solidus_adyen_cse
283d721138c32f1d572635e81d867a4d34120f7c
packages/bi/BitStringRandomMonad.yaml
packages/bi/BitStringRandomMonad.yaml
homepage: '' changelog-type: '' hash: 04d75c4e2c4fbeae69ba769a2faebc4faa642dc04b460289ccb201d17d75d4d5 test-bench-deps: bytestring: -any bitstring: -any base: -any mtl: -any BitStringRandomMonad: -any transformers: -any parallel: -any QuickCheck: -any primitive: -any vector: -any maintainer: [email protected] synopsis: '' changelog: '' basic-deps: bytestring: -any bitstring: -any base: ! '>=4.8 && <4.10' mtl: -any transformers: -any parallel: -any primitive: -any vector: -any all-versions: - '0.1.0.0' - '0.1.1.1' - '0.1.1.2' - '0.2.0.0' - '0.2.0.2' author: Marcus Ofenhed latest: '0.2.0.2' description-type: haddock description: ! 'A library which turns a bytestring into a random monad. Input could be any PRNG which can output a lazy bytestring.' license-name: BSD3
homepage: '' changelog-type: '' hash: 38ddada1c3b9ad243162bf7c9ea0159d81e8c64b1f76d0bc69b3116fc97a9328 test-bench-deps: bytestring: -any bitstring: -any base: -any mtl: -any BitStringRandomMonad: -any transformers: -any parallel: -any QuickCheck: -any primitive: -any vector: -any maintainer: [email protected] synopsis: '' changelog: '' basic-deps: bytestring: -any bitstring: -any base: ! '>=4.8 && <4.10' mtl: -any transformers: -any parallel: -any primitive: -any vector: -any all-versions: - '0.1.0.0' - '0.1.1.1' - '0.1.1.2' - '0.2.0.0' - '0.2.0.2' - '1.0.0.1' author: Marcus Ofenhed latest: '1.0.0.1' description-type: haddock description: ! 'A library which turns a bytestring into a random monad. Input could be any PRNG which can output a lazy bytestring.' license-name: BSD3
Update from Hackage at 2017-05-04T16:02:02Z
Update from Hackage at 2017-05-04T16:02:02Z
YAML
mit
commercialhaskell/all-cabal-metadata
fb53721449b9449923cf084f5fc8d346bcf68c19
packages/ix/ixset-typed-conversions.yaml
packages/ix/ixset-typed-conversions.yaml
homepage: '' changelog-type: markdown hash: e168909a2c8b464d033b9c77c540031cc8bbc70c08ec1aa169dfb4e72ef2f1bb test-bench-deps: {} maintainer: [email protected] synopsis: Conversions from ixset-typed to other containers. changelog: | # Changelog for ixset-typed-conversions ## (v0.1.0.0) Add conversion functions from `IxSet` to `HashMap` and `Zipper []`. basic-deps: exceptions: -any base: '>=4.7 && <5' unordered-containers: -any ixset-typed: -any hashable: -any zipper-extra: -any all-versions: - 0.1.0.0 author: Daniel Firth latest: 0.1.0.0 description-type: markdown description: | # ixset-typed-conversions Conversions from ixset-typed to other containers. license-name: MIT
homepage: '' changelog-type: markdown hash: 66af8ee3f0d3ac9198adc6da44326ed523f79e88ed6c637e6aa88cfb85db1033 test-bench-deps: {} maintainer: [email protected] synopsis: Conversions from ixset-typed to other containers. changelog: | # Changelog for ixset-typed-conversions ## (v0.1.0.0) Add conversion functions from `IxSet` to `HashMap` and `Zipper []`. basic-deps: exceptions: -any base: '>=4.7 && <5' unordered-containers: -any ixset-typed: -any hashable: -any zipper-extra: -any all-versions: - 0.1.0.0 - 0.1.0.1 author: Daniel Firth latest: 0.1.0.1 description-type: markdown description: | # ixset-typed-conversions Conversions from ixset-typed to other containers. license-name: MIT
Update from Hackage at 2020-08-09T21:58:34Z
Update from Hackage at 2020-08-09T21:58:34Z
YAML
mit
commercialhaskell/all-cabal-metadata
690d618b5b1e157361a1a117dd37c85651dec5e6
data/FreeBSD/10.0-RELEASE.yaml
data/FreeBSD/10.0-RELEASE.yaml
--- classes: [ 'base', 'dnsclient', 'ldapclient', 'pkgng' ] pkgprovider: 'pkgng'
--- classes: [ 'base', 'dnsclient', 'ldapclient', 'pkgng', 'sudoers' ] pkgprovider: 'pkgng'
Add sudoers package to bsd10
Add sudoers package to bsd10
YAML
apache-2.0
CamLib/puppet3,CamLib/puppet3
77f9dcd74904af074dfcac875b524eac520088d3
metadata/com.github.postapczuk.lalauncher.yml
metadata/com.github.postapczuk.lalauncher.yml
Categories: - System License: GPL-2.0-only WebSite: https://github.com/postapczuk/Light-Android-Launcher SourceCode: https://github.com/postapczuk/Light-Android-Launcher Summary: Lightweight app launcher Description: |- Configurable, super lightweight app launcher with a low memory usage and small install size. Inspired by Light Phone, but leaves you access to all apps, by just one swipe. There are no trackers, no ads, and no device permissions. There is only Open Source Code, available on GPLv2 license. Its a fork of [https://github.com/Collinux/minimalist-launcher Minimalist Launcher by Collunux]. Created because there is no favourite apps in the main repo. RepoType: git Repo: https://github.com/postapczuk/Light-Android-Launcher Builds: - versionName: '1.0' versionCode: 1 commit: '1.0' subdir: LaLauncher gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '1.0' CurrentVersionCode: 1
Categories: - System License: GPL-2.0-only WebSite: https://github.com/postapczuk/Light-Android-Launcher SourceCode: https://github.com/postapczuk/Light-Android-Launcher AutoName: Light Android Launcher Summary: Lightweight app launcher Description: |- Configurable, super lightweight app launcher with a low memory usage and small install size. Inspired by Light Phone, but leaves you access to all apps, by just one swipe. There are no trackers, no ads, and no device permissions. There is only Open Source Code, available on GPLv2 license. Its a fork of [https://github.com/Collinux/minimalist-launcher Minimalist Launcher by Collunux]. Created because there is no favourite apps in the main repo. RepoType: git Repo: https://github.com/postapczuk/Light-Android-Launcher Builds: - versionName: '1.0' versionCode: 1 commit: '1.0' subdir: LaLauncher gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '1.0' CurrentVersionCode: 1
Set autoname of Light Android Launcher
Set autoname of Light Android Launcher
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata
672584a82e3dceb3638e256e0bc6ca7209b2f0f2
packages/se/servant-matrix-param.yaml
packages/se/servant-matrix-param.yaml
homepage: '' changelog-type: '' hash: 0a97e54d15072a249e7c11c5cdea3101afdd14106d669bbbb1ad2f69138d9e83 test-bench-deps: base: <5 hspec: -any doctest: -any servant: ==0.5 servant-matrix-param: -any servant-aeson-specs: -any maintainer: [email protected] synopsis: Matrix parameter combinator for servant changelog: '' basic-deps: base: <5 servant: ==0.5 all-versions: - '0.1' - '0.1.0.1' author: '' latest: '0.1.0.1' description-type: haddock description: Matrix parameter combinator for servant license-name: MIT
homepage: '' changelog-type: '' hash: 6a73121fdd3c23332f066a1ffdec72ab7cf6e91498d3d2e884fdf9f766df272e test-bench-deps: bytestring: -any wai: -any base: <5 hspec: -any text: -any doctest: -any servant-server: -any servant: ==0.5 containers: -any servant-matrix-param: -any wai-extra: -any transformers: -any http-types: -any aeson: -any servant-aeson-specs: -any maintainer: [email protected] synopsis: Matrix parameter combinator for servant changelog: '' basic-deps: base: <5 servant: ==0.5 all-versions: - '0.1' - '0.1.0.1' - '0.2' author: '' latest: '0.2' description-type: haddock description: Matrix parameter combinator for servant license-name: MIT
Update from Hackage at 2016-08-19T14:51:38+0000
Update from Hackage at 2016-08-19T14:51:38+0000
YAML
mit
commercialhaskell/all-cabal-metadata
d57859746c71275e1b0f851bad299fea26b3e94c
scripts/test/ui-test.yaml
scripts/test/ui-test.yaml
--- # Playbook to perform integration testing on Celos # # Performs various tests against the servlets. - hosts: host gather_facts: no vars: root: "../.." tests_dir: "{{root}}/celos-server/src/test/resources/com/collective/celos/workflow-configuration-test" service_url: "http://{{inventory_hostname}}:{{service_port}}" tasks:
--- # Playbook to perform integration testing on Celos # # Performs various tests against the servlets. - hosts: host gather_facts: no vars: service_url: "http://{{inventory_hostname}}:{{service_port}}" tasks: - name: Check static content is served local_action: module: uri status_code: 200 url: "{{service_url}}/static/style.css"
Check static content is served
Check static content is served
YAML
apache-2.0
collectivemedia/celos,collectivemedia/celos,collectivemedia/celos
7ae5020a5bea4048d1d8b13d00775d1df0b0ace0
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: [push, pull_request] jobs: phpspec: runs-on: ubuntu-latest strategy: matrix: php: [7.1, 7.2, 7.3] steps: - uses: actions/checkout@v1 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - name: Validate Composer files run: composer validate --no-check-all --strict - name: Install Composer dependencies run: composer install --prefer-dist --no-progress --no-suggest - name: Run tests run: php vendor/bin/phpspec run
name: CI on: [push, pull_request] jobs: phpspec: runs-on: ubuntu-latest strategy: matrix: php: [7.1, 7.2, 7.3, 7.4, 8.0] steps: - uses: actions/checkout@v1 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - name: Validate Composer files run: composer validate --no-check-all --strict - name: Install Composer dependencies run: composer install --prefer-dist --no-progress --no-suggest - name: Run tests run: php vendor/bin/phpspec run
Test on PHP 7.4 and 8 as well
CI: Test on PHP 7.4 and 8 as well
YAML
mit
franzliedke/studio
ae547867acdc27a20e5be8924f5579fa0ee6be7c
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: push: jobs: test: name: >- ${{ matrix.os }} ${{ matrix.ruby }} env: TESTOPTS: -v strategy: fail-fast: false matrix: os: [ubuntu-20.04] ruby: ['3.0', '3.1'] include: - { os: ubuntu-20.04 , ruby: ruby-head } - { os: ubuntu-20.04 , ruby: jruby, allow-failure: true } - { os: ubuntu-20.04 , ruby: jruby-head } - { os: ubuntu-20.04 , ruby: truffleruby } - { os: ubuntu-20.04 , ruby: truffleruby-head } runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rake id: test continue-on-error: ${{ matrix.allow-failure || false }} # set outcome in step name so we can see it without having to expand logs - name: >- Test outcome: ${{ steps.test.outcome }} # every step must define a `uses` or `run` key run: | echo "Test outcome: ${{ steps.test.outcome }}"
name: CI on: push: # GitHub Actions notes # - outcome in step name so we can see it without having to expand logs # - every step must define a `uses` or `run` key jobs: test: name: >- ${{ matrix.os }} ${{ matrix.ruby }} env: TESTOPTS: -v strategy: fail-fast: false matrix: os: [ubuntu-20.04] ruby: ['3.0', '3.1'] include: - { os: ubuntu-20.04 , ruby: ruby-head } - { os: ubuntu-20.04 , ruby: jruby, allow-failure: true } - { os: ubuntu-20.04 , ruby: jruby-head } - { os: ubuntu-20.04 , ruby: truffleruby } - { os: ubuntu-20.04 , ruby: truffleruby-head } runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 continue-on-error: ${{ matrix.allow-failure || false }} id: bundle with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: "setup-ruby and bundle install outcome: ${{ steps.bundle.outcome }}" run: echo "" - run: bundle exec rake continue-on-error: ${{ matrix.allow-failure || false }} id: test - name: "bundle exec rake outcome: ${{ steps.test.outcome }}" run: echo ""
Allow `bundle install` to fail in CI
Allow `bundle install` to fail in CI
YAML
mit
fedora-ruby/gem-compare
bc8a98ff007bdbb91771fd513a6736dab7337fce
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: push: branches: - master - release-* pull_request: branches: - master - release-* jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x] steps: - uses: actions/checkout@v1 with: fetch-depth: 5 - name: Use node version ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Remove existing TypeScript run: | npm uninstall typescript --no-save npm uninstall tslint --no-save - name: npm install and test run: | npm install npm update npm test - name: Validate the browser can import TypeScript run: gulp test-browser-integration
name: CI on: push: branches: - master - release-* pull_request: branches: - master - release-* jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 13.x] steps: - uses: actions/checkout@v1 with: fetch-depth: 5 - name: Use node version ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Remove existing TypeScript run: | npm uninstall typescript --no-save npm uninstall tslint --no-save - name: npm install and test run: | npm install npm update npm test - name: Validate the browser can import TypeScript run: gulp test-browser-integration
Add node 13 to CI
Add node 13 to CI
YAML
apache-2.0
kitsonk/TypeScript,Microsoft/TypeScript,RyanCavanaugh/TypeScript,kpreisser/TypeScript,SaschaNaz/TypeScript,weswigham/TypeScript,SaschaNaz/TypeScript,RyanCavanaugh/TypeScript,Microsoft/TypeScript,microsoft/TypeScript,nojvek/TypeScript,SaschaNaz/TypeScript,kpreisser/TypeScript,weswigham/TypeScript,kitsonk/TypeScript,SaschaNaz/TypeScript,kpreisser/TypeScript,nojvek/TypeScript,microsoft/TypeScript,Microsoft/TypeScript,weswigham/TypeScript,microsoft/TypeScript,kitsonk/TypeScript,nojvek/TypeScript,nojvek/TypeScript,RyanCavanaugh/TypeScript
6bffc5e5935e39410f1703082148f009945217e7
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: pull_request: push: branches: - master jobs: tests: runs-on: ubuntu-latest strategy: fail-fast: false matrix: php: ['7.2', '7.3', '7.4'] name: PHP ${{ matrix.php }} tests steps: - uses: actions/checkout@v2 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: none extensions: mongodb - uses: "ramsey/composer-install@v1" - run: vendor/bin/phpunit
name: CI on: pull_request: push: branches: - master jobs: tests: runs-on: ubuntu-latest strategy: fail-fast: false matrix: php: ['7.2', '7.3', '7.4'] dependencies: ['lowest', 'highest'] name: PHP ${{ matrix.php }} tests on deps=${{ matrix.dependencies }} steps: - uses: actions/checkout@v2 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: none extensions: mongodb - uses: "ramsey/composer-install@v1" with: dependency-versions: ${{ matrix.dependencies }} - run: vendor/bin/phpunit
Test lower and higher deps
Test lower and higher deps
YAML
mit
johanderuijter/uuid-doctrine-odm
af07d2aecb92fce25a1ee7b618106d304cc9b305
.github/workflows/go.yml
.github/workflows/go.yml
name: Go on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: name: Build runs-on: ubuntu-latest steps: - name: Set up Go 1.x uses: actions/setup-go@v2 with: go-version: ^1.13 - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Get dependencies run: | go get -v -t -d ./... if [ -f Gopkg.toml ]; then curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh dep ensure fi - name: Format run: go fmt ./... - name: Build run: ./bin/build - name: Test run: ./bin/test
name: Go on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: name: Build runs-on: ubuntu-latest steps: - name: Setup env run: | echo "::set-env name=GOPATH::$(go env GOPATH)" echo "::add-path::$(go env GOPATH)/bin" - name: Set up Go 1.x uses: actions/setup-go@v2 with: go-version: ^1.13 - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Get dependencies run: | go get -v -t -d ./... if [ -f Gopkg.toml ]; then curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh dep ensure fi - name: Format run: go fmt ./... - name: Build run: ./bin/build - name: Test run: ./bin/test
Set GOPATH env before any Go step
build(github_action): Set GOPATH env before any Go step
YAML
apache-2.0
maximilien/i18n4go,maximilien/i18n4go,maximilien/i18n4go
f556dd319810028366b1c0fb1e4c4c4136f8355d
.github/workflows/pr.yml
.github/workflows/pr.yml
name: Pull Request Checks on: [pull_request] jobs: build_image: name: Build Image runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Make GITHUB_ACCESS_TOKEN available run: echo $GITHUB_ACCESS_TOKEN > GITHUB_ACCESS_TOKEN env: GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_ACCESS_TOKEN }} - name: Docker Build run: DOCKER_BUILDKIT=1 docker build . -t docker.pkg.github.com/josephduffy/josephduffy.co.uk/website:$GITHUB_SHA --secret=id=GITHUB_ACCESS_TOKEN,src=./GITHUB_ACCESS_TOKEN check_format: name: Check for formatting errors using on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest] steps: - uses: actions/checkout@v2 - name: Install node version from .node-version shell: bash -l {0} run: nvm install - run: npm install - run: npm run format:check lint: name: Check for linting errors using on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest] steps: - uses: actions/checkout@v2 - uses: hallee/eslint-action@v1 with: repo-token: ${{secrets.GITHUB_TOKEN}}
name: Pull Request Checks on: [pull_request] jobs: build_image: name: Build Image runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Make GITHUB_ACCESS_TOKEN available run: echo $GITHUB_ACCESS_TOKEN > GITHUB_ACCESS_TOKEN env: GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_ACCESS_TOKEN }} - name: Docker Build run: DOCKER_BUILDKIT=1 docker build . -t docker.pkg.github.com/josephduffy/josephduffy.co.uk/website:$GITHUB_SHA --secret=id=GITHUB_ACCESS_TOKEN,src=./GITHUB_ACCESS_TOKEN check_format: name: Check for formatting errors using on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest] steps: - uses: actions/checkout@v2 - name: Install node version from .node-version shell: bash -l {0} run: nvm use - run: npm install - run: npm run format:check lint: name: Check for linting errors using on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest] steps: - uses: actions/checkout@v2 - uses: hallee/eslint-action@v1 with: repo-token: ${{secrets.GITHUB_TOKEN}}
Replace nvm install with nvm use
Replace nvm install with nvm use
YAML
mit
JosephDuffy/josephduffy.co.uk,JosephDuffy/josephduffy.co.uk,JosephDuffy/josephduffy.co.uk
e8c8cdfbe9966f18b3c72977c08f24233b60082a
mkdocs.yml
mkdocs.yml
site_name: Suitup Framework site_description: Awesome PHP Framework with high productivity site_author: Braghim Sistemas repo_url: https://github.com/braghimsistemas/suitup-php theme: name: material highlightjs: true hljs_languages: - yaml - php extra_css: - css/extra-style.css pages: - Home: index.md - User Guide: - Getting Started: getting-started/index.md - About: - License: about/LICENSE.md - SuitUp 1 Compatibility: compatibility/index.md plugins: - search copyright: Copyright &copy; 2019 Braghim Sistemas
site_name: Suitup Framework site_description: Awesome PHP Framework with high productivity site_author: Braghim Sistemas repo_url: https://github.com/braghimsistemas/suitup-php theme: name: readthedocs highlightjs: true hljs_languages: - yaml - php extra_css: - css/extra-style.css pages: - Home: index.md - User Guide: - Getting Started: getting-started/index.md - About: - License: about/LICENSE.md - SuitUp 1 Compatibility: compatibility/index.md plugins: - search copyright: Copyright &copy; 2019 Braghim Sistemas
Read the docs dont allow material theme =/
Read the docs dont allow material theme =/
YAML
mit
braghimsistemas/suitup-php,braghimsistemas/suitup-php,braghimsistemas/suitup-php
35845930f3c40979c0ed72f29db1b3e0a09e6fe4
metadata/com.crazylegend.vigilante.yml
metadata/com.crazylegend.vigilante.yml
Categories: - Security License: GPL-3.0-only AuthorName: FunkyMuse AuthorWebSite: https://www.funkymuse.dev/ SourceCode: https://github.com/FunkyMuse/Vigilante IssueTracker: https://github.com/FunkyMuse/Vigilante/issues Changelog: https://github.com/FunkyMuse/Vigilante/releases Donate: https://patreon.com/funkymuse AutoName: Vigilante RepoType: git Repo: https://github.com/FunkyMuse/Vigilante Builds: - versionName: 1.0.5 versionCode: 4 commit: 1.0.5 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.0.5 CurrentVersionCode: 4
Categories: - Security License: GPL-3.0-only AuthorName: FunkyMuse AuthorWebSite: https://www.funkymuse.dev/ SourceCode: https://github.com/FunkyMuse/Vigilante IssueTracker: https://github.com/FunkyMuse/Vigilante/issues Changelog: https://github.com/FunkyMuse/Vigilante/releases Donate: https://patreon.com/funkymuse AutoName: Vigilante RepoType: git Repo: https://github.com/FunkyMuse/Vigilante Builds: - versionName: 1.0.5 versionCode: 4 commit: 1.0.5 subdir: app gradle: - yes - versionName: 1.0.6 versionCode: 5 commit: 1.0.6 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.0.6 CurrentVersionCode: 5
Update Vigilante to 1.0.6 (5)
Update Vigilante to 1.0.6 (5)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
473d7a418a93ae9b95effc6770d9581ae37d82de
metadata/org.woheller69.audiometry.yml
metadata/org.woheller69.audiometry.yml
Categories: - Sports & Health License: GPL-3.0-only AuthorName: woheller69 SourceCode: https://github.com/woheller69/audiometry IssueTracker: https://github.com/woheller69/audiometry/issues AutoName: hEARtest RepoType: git Repo: https://github.com/woheller69/audiometry Builds: - versionName: '1.2' versionCode: 120 commit: V1.2 subdir: app gradle: - yes AutoUpdateMode: Version V%v UpdateCheckMode: Tags CurrentVersion: '1.2' CurrentVersionCode: 120
Categories: - Sports & Health License: GPL-3.0-only AuthorName: woheller69 SourceCode: https://github.com/woheller69/audiometry IssueTracker: https://github.com/woheller69/audiometry/issues AutoName: hEARtest RepoType: git Repo: https://github.com/woheller69/audiometry Builds: - versionName: '1.2' versionCode: 120 commit: V1.2 subdir: app gradle: - yes - versionName: '1.3' versionCode: 130 commit: 375603c6959d02c8b5cb2e604007ae4791d9db97 subdir: app gradle: - yes AutoUpdateMode: Version V%v UpdateCheckMode: Tags CurrentVersion: '1.3' CurrentVersionCode: 130
Update hEARtest to 1.3 (130)
Update hEARtest to 1.3 (130)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
eb77f7ec01d33272421a37035d3a31d577499e62
spec/integration/scenarios/task_with_args_scenario.yml
spec/integration/scenarios/task_with_args_scenario.yml
- target: localhost command: - "rm -rf /var/tmp/hello_rundock_from_task_with_args_scenario" - target: anyhost-01 task: - write_echo task_with_args two --- anyhost-01: target_type: host host: 172.17.42.1 ssh_opts: port: 22222 user: tester key: "<replaced_by_platforms>" --- write_echo: command: - mkdir /var/tmp/hello_rundock_from_$1_scenario - echo 'Hello Rundock from task with args Scenario. $@ $#' > /var/tmp/hello_rundock_from_$1_scenario/hello_rundock_from_$1_scenario - cp /var/tmp/hello_rundock_from_$1_scenario/hello_rundock_from_$1_scenario /var/tmp/hello_rundock_from_$1_scenario_$2
- target: anyhost-01 command: - "rm -rf /var/tmp/hello_rundock_from_task_with_args_scenario" task: - write_echo task_with_args two --- anyhost-01: target_type: host host: 172.17.42.1 ssh_opts: port: 22222 user: tester key: "<replaced_by_platforms>" --- write_echo: command: - mkdir /var/tmp/hello_rundock_from_$1_scenario - echo 'Hello Rundock from task with args Scenario. $@ $#' > /var/tmp/hello_rundock_from_$1_scenario/hello_rundock_from_$1_scenario - cp /var/tmp/hello_rundock_from_$1_scenario/hello_rundock_from_$1_scenario /var/tmp/hello_rundock_from_$1_scenario_$2
Fix test in 8201a6 update
Fix test in 8201a6 update
YAML
mit
hiracy/rundock,hiracy/rundock
907109a7aedeb7fb1a977e0ea58a10135e6ac1d7
.codeclimate.yml
.codeclimate.yml
--- engines: duplication: enabled: true config: languages: - ruby fixme: enabled: true rubocop: enabled: true ratings: paths: - '**.rb' exclude_paths: - script/ - spec/
--- version: 2 plugins: duplication: enabled: true config: languages: - ruby fixme: enabled: true rubocop: enabled: true channel: rubocop-0-54 exclude_patterns: - script/ - spec/
Use more recent Rubocop for CodeClimate
Use more recent Rubocop for CodeClimate
YAML
mit
dominicsayers/machinist,dominicsayers/machinist
eb9f525ecf4ce627058c147de80b9ae317d11c47
.codeclimate.yml
.codeclimate.yml
engines: eslint: enabled: true scss-lint: enabled: true ratings: paths: - client/src/** exclude_paths: - "client/dist/**"
engines: eslint: enabled: true scss-lint: enabled: true duplication: enabled: true config: languages: javascript: mass_threshold: 100 ratings: paths: - client/src/** exclude_paths: - "client/dist/**"
Add CodeClimate duplicate detection for JS
Add CodeClimate duplicate detection for JS Keep this in-line with framework and asset-admin configs
YAML
bsd-3-clause
silverstripe/silverstripe-cms,jonom/silverstripe-cms,silverstripe/silverstripe-cms,jonom/silverstripe-cms
7d359e0ab05c4b663076bf599c7caba16671187c
.codeclimate.yml
.codeclimate.yml
version: "2" checks: file-lines: enabled: false similar-code: enabled: false method-lines: enabled: false plugins: sonar-python: enabled: true config: test_patterns: - "metpy/**/tests/*.py" checks: python:S3776: enabled: false python:S107: enabled: false python:S1542: enabled: false pep8: enabled: true checks: E501: enabled: false exclude_patterns: - "versioneer.py" - "metpy/_version.py" - "metpy/io/_nexrad_msgs/msg*.py" - "docs/**/*"
version: "2" checks: file-lines: enabled: false similar-code: enabled: false method-lines: enabled: false argument-count: config: threshold: 10 plugins: sonar-python: enabled: true config: test_patterns: - "metpy/**/tests/*.py" checks: python:S3776: enabled: false python:S107: enabled: false python:S1542: enabled: false pep8: enabled: true checks: E501: enabled: false exclude_patterns: - "versioneer.py" - "metpy/_version.py" - "metpy/io/_nexrad_msgs/msg*.py" - "docs/**/*"
Update maximum argument count to 10
[MNT] Update maximum argument count to 10
YAML
bsd-3-clause
Unidata/MetPy,jrleeman/MetPy,Unidata/MetPy,dopplershift/MetPy,ahaberlie/MetPy,dopplershift/MetPy,jrleeman/MetPy,ahaberlie/MetPy,ShawnMurd/MetPy
5a8155912c2810f06bfb46889f17f643169f5145
.codeclimate.yml
.codeclimate.yml
--- engines: duplication: enabled: true config: languages: - ruby fixme: enabled: true rubocop: enabled: true ratings: paths: - "**.rb" exclude_paths: - spec/
--- engines: duplication: enabled: true config: languages: - ruby fixme: enabled: true rubocop: enabled: true ratings: paths: - "**.rb" exclude_paths: - fogbugz-commands.gemspec - spec/
Exclude gemspec from code climate
Exclude gemspec from code climate
YAML
mit
martinmosegaard/fogbugz-commands,martinmosegaard/fogbugz-commands
029002cf534f544beb21316fb9a9d75cc3168c76
.codeclimate.yml
.codeclimate.yml
languages: JavaScript: true exclude_paths: - "*.min.js" - "public/assets/wee/temp/*" - "public/assets/wee/tests/*" - "public/assets/js/polyfill/es5-shim.js" - "public/assets/js/polyfill/html5shiv.js" - "public/assets/js/polyfill/sizzle.js"
languages: JavaScript: true exclude_paths: - "*.min.js" - "public/assets/wee/build/*" - "public/assets/wee/temp/*" - "public/assets/wee/tests/*" - "public/assets/js/polyfill/es5-shim.js" - "public/assets/js/polyfill/html5shiv.js" - "public/assets/js/polyfill/sizzle.js"
Remove build script from CodeClimate audit
Remove build script from CodeClimate audit
YAML
apache-2.0
weepower/wee,janusnic/wee,weepower/wee,janusnic/wee
0c2529d5db7222b79d04757fcb9b86d3f65c8aa0
.codeclimate.yml
.codeclimate.yml
--- engines: scss-lint: enabled: true duplication: enabled: true config: languages: - javascript - php fixme: enabled: true phpmd: enabled: true config: file_extensions: "php" rulesets: "codesize,design,unusedcode,docs/phpmd-ruleset.xml" ratings: paths: - "html/css/*.scss" - "protected/**.php" exclude_paths: - config/ - node_modules/ - tests/ - vendor/ - html/bower/ - html/css/build/
--- engines: scss-lint: enabled: true duplication: enabled: true config: languages: - javascript - php fixme: enabled: true phpmd: enabled: true config: file_extensions: "php" rulesets: "codesize,design,unusedcode,docs/phpmd-ruleset.xml" ratings: paths: - "html/css/*.scss" - "protected/**.php" exclude_paths: - config/ - node_modules/ - tests/ - vendor/ - html/bower/ - html/css/build/ - html/pdfjs/
Exclude pdfjs from code climate analysis
Exclude pdfjs from code climate analysis
YAML
agpl-3.0
CatoTH/Ratsinformant,CatoTH/Ratsinformant,CatoTH/Ratsinformant,CatoTH/Muenchen-Transparent,CatoTH/Muenchen-Transparent,codeformunich/Muenchen-Transparent,CatoTH/Ratsinformant,codeformunich/Muenchen-Transparent
e2770713167701812ce2002273e248c7ba0ce405
.codeclimate.yml
.codeclimate.yml
languages: JavaScript: true exclude_paths: - "templates/*" - "script/tests/*"
languages: JavaScript: true exclude_paths: - "cli.js" - "utils.js" - "build/*" - "commands/*" - "templates/*" - "script/lib/*" - "script/tests/*"
Remove private build scripts and external scripts from CodeClimate
Remove private build scripts and external scripts from CodeClimate
YAML
apache-2.0
weepower/wee-core
a96d3f4a7cae445a34d0b6d837e07e7a13aae083
.pullapprove.yml
.pullapprove.yml
version: 2 group_defaults: approve_by_comment: enabled: true approve_regex: '^!!\/approve' reset_on_push: enabled: true groups: blacklisters: required: 1 users: - angussidney - Aralun # Kyll - ArtOfCode- - AWegnerGitHub # Andy - bwDraco - ByteCommander - CalvT - double-beep - ferrybig - Fortunate-MAN # Ashish Ahuja - Glorfindel83 - honnza # Jan Dvorak - iBug - K-Davis1 - LunarWatcher # Zoe AKA Princess Luna - Machavity - magisch - Makyen - metasmoke - NobodyNada - paper1111 - quartata - spacemonaut # doppelgreener - superplane39 # Mithrandir - surajrao - teward - tripleee - Undo1 - WELZ-gh - DasGeek - EliahKagan author_approval: ignored: true reject_value: -1
version: 2 group_defaults: approve_by_comment: enabled: true approve_regex: '^!!\/approve' reset_on_push: enabled: true groups: blacklisters: required: 1 users: - angussidney - Aralun # Kyll - ArtOfCode- - AWegnerGitHub # Andy - bwDraco - ByteCommander - CalvT - double-beep - ferrybig - Fortunate-MAN # Ashish Ahuja - Glorfindel83 - honnza # Jan Dvorak - iBug - K-Davis1 - LunarWatcher # Zoe AKA Princess Luna - Machavity - magisch - Makyen - metasmoke - NobodyNada - paper1111 - quartata - spacemonaut # doppelgreener - superplane39 # Mithrandir - surajrao - teward - tripleee - Undo1 - WELZ-gh - DasGeek - EliahKagan - Daniil-M-beep author_approval: ignored: true reject_value: -1
Add Daniil-M-beep to PullApprove -autopull
Add Daniil-M-beep to PullApprove -autopull
YAML
apache-2.0
Charcoal-SE/SmokeDetector,Charcoal-SE/SmokeDetector
82de803dfb3c5bcda89e6c60bee9afcaac4562f2
.scrutinizer.yml
.scrutinizer.yml
checks: python: code_rating: true duplicate_code: true filter: paths: ['napps/*', 'tests/*'] build: environment: python: 3.6.0 postgresql: false redis: false dependencies: before: - sudo apt-get install --no-install-recommends -y librrd-dev tests: before: - pip install git+git://github.com/kytos/python-openflow.git # Can't install kytos directly because it has an HTTP dependency - pip install git+git://github.com/diraol/watchdog.git - git clone --depth 1 git://github.com/kytos/kytos.git && cd kytos && sed -i 's|.*http.*watchdog.*||' requirements.txt && pip install . && cd - && rm -rf kytos - pip install -r requirements.txt -r requirements-dev.txt override: - command: 'python setup.py ci' coverage: file: '.coverage' config_file: '.coveragerc' format: 'py-cc'
checks: python: code_rating: true duplicate_code: true filter: paths: ['docs/*', 'napps/*', 'tests/*'] build: environment: python: 3.6.0 postgresql: false redis: false dependencies: # "override" to not run inferred "python setup.py install" and # "pip install -r requirements.txt" override: - sudo apt-get install --no-install-recommends -y librrd-dev tests: before: - pip install git+git://github.com/kytos/python-openflow.git - pip install git+git://github.com/kytos/kytos.git - pip install -r requirements.txt -r requirements-dev.txt override: - command: 'python setup.py ci' coverage: file: '.coverage' config_file: '.coveragerc' format: 'py-cc'
Update and improve kytos install in CI
[test] Update and improve kytos install in CI Fix #283 Trying to fix scrutinizer Python Analysis
YAML
mit
kytos/kytos-napps,cemsbr/kytos-napps,kytos/kyco-core-napps
93ebc4c5c150e02b4efaf54f8cf89c015955decd
.scrutinizer.yml
.scrutinizer.yml
imports: - javascript - php filter: excluded_paths: [3rdparty/*, js/vendor/*, js/public/app.js, tests/] tools: external_code_coverage: timeout: 600 # Timeout in seconds. 10 minutes runs: 6 # Scrutinizer waits for the first 6 coverage submissions (each DB, unit & integration)
imports: - javascript - php filter: excluded_paths: [3rdparty/*, js/vendor/*, js/public/app.js, tests/] tools: external_code_coverage: timeout: 600 # Timeout in seconds. 10 minutes runs: 6 # Scrutinizer waits for the first 6 coverage submissions (each DB, unit & integration) build: nodes: analysis: tests: override: - php-scrutinizer-run
Enable Scrutinizer new PHP analysis engine
Enable Scrutinizer new PHP analysis engine As explained at https://scrutinizer-ci.com/docs/tools/php/php-analyzer/guides/migrate_to_new_php_analysis
YAML
agpl-3.0
paulijar/music,owncloud/music,paulijar/music,owncloud/music,owncloud/music,paulijar/music,paulijar/music,owncloud/music,owncloud/music,paulijar/music
6d9828249c3e6b5290cf1ba571c461d6757107ae
.pullapprove.yml
.pullapprove.yml
approve_by_comment: true approve_regex: ^Approved reject_regex: ^Rejected reset_on_push: false reviewers: members: - atneik - battletoilet - dammittom - ericthompson - Jahnp - mikewheaton - philworthington name: default required: 2
approve_by_comment: true approve_regex: ^Approved reject_regex: ^Rejected reset_on_push: false reviewers: members: - atneik - battletoilet - dammittom - ericthompson - Jahnp - mikewheaton - philworthington - wdo3650 name: default required: 2
Add William to pull approvers list
Add William to pull approvers list Sorry I missed you here, William!
YAML
mit
OfficeDev/Office-UI-Fabric,OfficeDev/Office-UI-Fabric
cbf4e3075ba3afd393a0493ac58538961f8e3948
openmoltools/meta.yaml
openmoltools/meta.yaml
package: name: openmoltools version: 0.7.1 source: git_url: https://github.com/choderalab/openmoltools.git git_tag: v0.7.1 build: number: 2 skip: - [win32 or (win and py2k)] # TODO no openmm py35 win - [win and py35] requirements: build: - python - setuptools - pandas - six - mdtraj - numpy - numpydoc - scipy - pandas - openmm >=7.0.1 - ambermini - pytables - parmed # - rdkit # rdkit is an optional dependency, may want to comment this out for the release version. run: - python - setuptools - pandas - six - mdtraj - numpy - numpydoc - scipy - openmm ==7.0rc1 - ambermini - pytables - parmed - libgfortran 1.* # [linux and np == 19] # - rdkit # rdkit is an optional dependency, may want to comment this out for the release version. test: requires: - nose - openmmtools imports: - openmoltools #commands: # - nosetests openmoltools -v -a '!slow' about: home: https://github.com/choderalab/openmoltools license: GNU Lesser General Public License v2 or later (LGPLv2+)
package: name: openmoltools version: 0.7.1 source: git_url: https://github.com/choderalab/openmoltools.git git_tag: v0.7.1 build: number: 3 skip: - [win32 or (win and py2k)] # TODO no openmm py35 win - [win and py35] requirements: build: - python - setuptools - pandas - six - mdtraj - numpy - numpydoc - scipy - pandas - openmm >=7.0.1 - ambermini - pytables - parmed # - rdkit # rdkit is an optional dependency, may want to comment this out for the release version. run: - python - setuptools - pandas - six - mdtraj - numpy - numpydoc - scipy - openmm >=7.0.1 - ambermini - pytables - parmed - libgfortran 1.* # [linux and np == 19] # - rdkit # rdkit is an optional dependency, may want to comment this out for the release version. test: requires: - nose - openmmtools imports: - openmoltools #commands: # - nosetests openmoltools -v -a '!slow' about: home: https://github.com/choderalab/openmoltools license: GNU Lesser General Public License v2 or later (LGPLv2+)
Fix openmoltools 0.7.1 openmm dependency
[openmoltools] Fix openmoltools 0.7.1 openmm dependency
YAML
mit
swails/conda-recipes,cwehmeyer/conda-recipes,peastman/conda-recipes,swails/conda-recipes,swails/conda-recipes,cwehmeyer/conda-recipes,jchodera/conda-recipes,jchodera/conda-recipes,cwehmeyer/conda-recipes,marscher/omnia-conda-recipes,omnia-md/conda-recipes,jchodera/conda-recipes,omnia-md/conda-recipes,cwehmeyer/conda-recipes,jchodera/conda-recipes,omnia-md/conda-recipes,peastman/conda-recipes,marscher/omnia-conda-recipes,marscher/omnia-conda-recipes,peastman/conda-recipes,swails/conda-recipes,marscher/omnia-conda-recipes
f994883a22219598847e2b95378a13107f86a016
configs/ha/tc785.yaml
configs/ha/tc785.yaml
--- # Test Case TC785: Reboot controller node - method: lab.scenarios.tempest_test test: tempest.thirdparty.cisco.cvd.UCSMTest.test_create_delete_networks etime: 300 git: https://github.com/cisco-openstack/tempest.git branch: proposed tempest_config_dir: /home/stack - method: lab.scenarios.tempest_test test: tempest.thirdparty.cisco.cvd.UCSMTest.test_create_delete_networks etime: 294 ramp_up_time: 6 git: https://github.com/cisco-openstack/tempest.git branch: proposed tempest_config_dir: /home/stack - method: lab.scenarios.tempest_test test: tempest.thirdparty.cisco.cvd.UCSMTest.test_create_delete_networks etime: 288 ramp_up_time: 12 git: https://github.com/cisco-openstack/tempest.git branch: proposed tempest_config_dir: /home/stack - method: lab.disruptors.reboot_node node_name: controller-0 delay: 100 - method: lab.monitors.ip_port duration: 500 period: 2 name_or_ip: controller-0 port: 9696 - method: lab.monitors.service_endpoint service: neutron duration: 390 period: 0.25
--- # Test Case TC785: Reboot controller node - method: lab.scenarios.tempest_test test: tempest.thirdparty.cisco.cvd.UCSMTest.test_create_delete_networks etime: 300 git: https://github.com/cisco-openstack/tempest.git branch: proposed tempest_config_dir: /home/stack - method: lab.scenarios.tempest_test test: tempest.thirdparty.cisco.cvd.UCSMTest.test_create_delete_networks etime: 294 ramp_up_time: 6 git: https://github.com/cisco-openstack/tempest.git branch: proposed tempest_config_dir: /home/stack - method: lab.scenarios.tempest_test test: tempest.thirdparty.cisco.cvd.UCSMTest.test_create_delete_networks etime: 288 ramp_up_time: 12 git: https://github.com/cisco-openstack/tempest.git branch: proposed tempest_config_dir: /home/stack - method: lab.disruptors.reboot_node node_name: control-0 delay: 10 - method: lab.monitors.ip_port duration: 200 period: 2 name_or_ip: control-0 port: 22
Update g8 conf according to defaults
Update g8 conf according to defaults Change-Id: I9b5ae62d9346e7da14f962933491982b4e266f72
YAML
apache-2.0
CiscoSystems/os-sqe,CiscoSystems/os-sqe,CiscoSystems/os-sqe
350034f79677b37b075e912856ab6317ce2b7119
packages/as/ascii.yaml
packages/as/ascii.yaml
homepage: https://github.com/typeclasses/ascii changelog-type: '' hash: 3369dd4e4d04431a885bad96b99ac40f63e368122127164d77d4f130027dd0a1 test-bench-deps: {} maintainer: Chris Martin, Julie Moronuki synopsis: Type-safe, bytestring-based ASCII values. changelog: '' basic-deps: bytestring: ! '>=0.9 && <0.11' case-insensitive: ! '>=0.2 && <1.3' base: ! '>=4.11 && <5' text: ! '>=0.11 && <1.3' blaze-builder: ! '>=0.2.1.4 && <0.5' hashable: ! '>=1.0 && <1.3' all-versions: - '0.0.0' - '0.0.1' - '0.0.1.1' - '0.0.2' - '0.0.2.1' - '0.0.2.2' - '0.0.3' - '0.0.4' - '0.0.4.1' - '0.0.5' author: Michael Snoyman latest: '0.0.5' description-type: haddock description: Type-safe, bytestring-based ASCII values. license-name: BSD3
homepage: https://github.com/typeclasses/ascii changelog-type: '' hash: 4be5c0d0c2d4f65af36f6cabda146c7ec563b85410e36b9c9d098611ed31d44f test-bench-deps: {} maintainer: Chris Martin, Julie Moronuki synopsis: Type-safe, bytestring-based ASCII values. changelog: '' basic-deps: bytestring: ! '>=0.9 && <0.11' case-insensitive: ! '>=0.2 && <1.3' base: ! '>=4 && <5' text: ! '>=0.11 && <1.3' semigroups: -any blaze-builder: ! '>=0.2.1.4 && <0.5' hashable: ! '>=1.0 && <1.3' all-versions: - '0.0.0' - '0.0.1' - '0.0.1.1' - '0.0.2' - '0.0.2.1' - '0.0.2.2' - '0.0.3' - '0.0.4' - '0.0.4.1' - '0.0.5' - '0.0.5.1' author: Michael Snoyman latest: '0.0.5.1' description-type: haddock description: Type-safe, bytestring-based ASCII values. license-name: BSD3
Update from Hackage at 2018-08-31T00:29:24Z
Update from Hackage at 2018-08-31T00:29:24Z
YAML
mit
commercialhaskell/all-cabal-metadata
0ee5ef378b759a708089a6f5afc21eddd63230b3
packages/nu/nuxeo.yaml
packages/nu/nuxeo.yaml
homepage: https://github.com/apeyroux/nuxeo#readme changelog-type: '' hash: cb31080437f811eb5b49477d93e794e88e91cfc5782bab3f7d5ac40a81872637 test-bench-deps: {} maintainer: [email protected] synopsis: '' changelog: '' basic-deps: bytestring: -any base: ! '>=4.5 && <4.7' time: -any text: -any conduit: -any conduit-extra: -any attoparsec: -any optparse-applicative: -any nuxeo: -any all-versions: - '0.2.0.0' - '0.2.0.1' - '0.2.0.2' - '0.2.0.3' - '0.3.0.0' author: Alexandre Peyroux latest: '0.3.0.0' description-type: haddock description: Nuxeo tools license-name: BSD3
homepage: https://github.com/apeyroux/nuxeo#readme changelog-type: '' hash: 3bba50316d49438d173cb30adb87fc91bb7fa60b0b72760b98bac5d84f693c48 test-bench-deps: {} maintainer: [email protected] synopsis: '' changelog: '' basic-deps: bytestring: -any base: ! '>=4.5 && <4.12' time: -any text: -any conduit: -any conduit-extra: -any attoparsec: -any optparse-applicative: -any nuxeo: -any all-versions: - '0.2.0.0' - '0.2.0.1' - '0.2.0.2' - '0.2.0.3' - '0.3.0.0' - '0.3.0.1' author: Alexandre Peyroux latest: '0.3.0.1' description-type: haddock description: Nuxeo tools license-name: BSD3
Update from Hackage at 2018-10-30T14:43:42Z
Update from Hackage at 2018-10-30T14:43:42Z
YAML
mit
commercialhaskell/all-cabal-metadata
dcd224fe39d92f688a01a9f982166f230d783915
hpstr.yaml
hpstr.yaml
enabled: true color: blue dropdown: enabled: false streams: scheme: theme: type: ReadOnlyStream paths: - user/themes/hpstr
enabled: true color: blue dropdown: enabled: false
Remove unneeded streams from Theme YAML
Remove unneeded streams from Theme YAML
YAML
mit
getgrav/grav-theme-hpstr,getgrav/grav-theme-hpstr,getgrav/grav-theme-hpstr
7ed86391b39138e32143265288ee9fb8d4401a75
src/watson/chatexclusions.yml
src/watson/chatexclusions.yml
# A list of all chat category tags that will be excluded from chat (not printed) # by default. A category can be turned off using the /tag command, e.g.: # /tag lb.coord off exclusions: - lb.coord - lb.coordreplaced - wg.build - lb.header.timecheck - lb.header.noresults
# A list of all chat category tags that will be excluded from chat (not printed) # by default. A category can be turned off using the /tag command, e.g.: # /tag lb.coord off exclusions: - lb.coord - lb.coordreplaced - lb.header.timecheck - lb.header.noresults
Remove the WorldGuard 'Can you build?' message from the default set of chat exclusions.
Remove the WorldGuard 'Can you build?' message from the default set of chat exclusions.
YAML
mit
tompreuss/watson,totemo/watson
61283389c3bd2ab6013a8f9c744c5de280300582
ansible/roles/db_dev/tasks/main.yml
ansible/roles/db_dev/tasks/main.yml
--- - name: populate database command: /home/vagrant/venv/bin/python /home/vagrant/src/db/manage.py dev become: yes become_user: radar - name: create the radar test database postgresql_db: name=radar_test become: yes become_user: postgres - name: grant radar privileges on radar_test postgresql_user: db=radar_test name=radar become: yes become_user: postgres - name: add the uuid-ossp extension to radar_test postgresql_ext: name=uuid-ossp db=radar_test become: yes become_user: postgres
--- - name: populate database command: /home/vagrant/venv/bin/python /home/vagrant/src/db/manage.py dev become: yes become_user: radar - name: create the radar test database postgresql_db: name=radar_test become: yes become_user: postgres - name: grant radar privileges on radar_test postgresql_user: db=radar_test name=radar become: yes become_user: postgres - name: add the uuid-ossp extension to radar_test postgresql_ext: name=uuid-ossp db=radar_test become: yes become_user: postgres - name: create the vagrant postgresql user postgresql_user: name=vagrant password={{ db_password }} become: yes become_user: postgres
Create a vagrant postgresql role
Create a vagrant postgresql role
YAML
agpl-3.0
renalreg/radar,renalreg/radar,renalreg/radar,renalreg/radar
78afdd8d79c0709c313d7a51409a1ebb38835999
data/building-hours/1-1-cage.yaml
data/building-hours/1-1-cage.yaml
name: The Cage image: cage category: Food schedule: - title: Kitchen notes: The kitchen stops cooking at 8 p.m. hours: - {days: [Mo, Tu, We, Th, Fr], from: '7:30am', to: '8:00pm'} - {days: [Sa, Su], from: '9:00am', to: '8:00pm'} breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: - title: Kitchen hours: - {days: [Mo, Tu, We, Th], from: '7:30am', to: '3:00pm'} - {days: [Fr], from: '7:30am', to: '1:00pm'}
name: The Cage image: cage category: Food schedule: - title: Kitchen notes: The kitchen stops cooking at 8 p.m. hours: - {days: [Mo, Tu, We, Th, Fr], from: '7:30am', to: '8:00pm'} - {days: [Sa, Su], from: '9:00am', to: '8:00pm'} - title: Late Night hours: - {days: [Mo, Tu, We, Th], from: '8:00pm', to: '10:00pm'} - {days: [Su], from: '8:00pm', to: '10:00pm'} breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: - title: Kitchen hours: - {days: [Mo, Tu, We, Th], from: '7:30am', to: '3:00pm'} - {days: [Fr], from: '7:30am', to: '1:00pm'}
Add late night hours back to cage hours
Add late night hours back to cage hours
YAML
mit
carls-app/carls,carls-app/carls,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,carls-app/carls,StoDevX/AAO-React-Native,carls-app/carls,carls-app/carls,carls-app/carls,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,carls-app/carls,StoDevX/AAO-React-Native
4e072f9b1eec8db0649bd1253a1f96fa5318ba0b
config/interface/input_elements/costs_flexibility_storage.yml
config/interface/input_elements/costs_flexibility_storage.yml
--- - key: investment_costs_households_flexibility_p2p_electricity step_value: 1.0 unit: "%" related_node: households_flexibility_p2p_electricity position: 1 slide_key: costs_flexibility_storage - key: investment_costs_energy_flexibility_hv_opac_electricity step_value: 1.0 unit: "%" position: 3 slide_key: costs_flexibility_storage - key: investment_costs_energy_flexibility_mv_batteries_electricity step_value: 1.0 unit: "%" position: 2 slide_key: costs_flexibility_storage
--- - key: investment_costs_households_flexibility_p2p_electricity step_value: 1.0 unit: "%" related_node: households_flexibility_p2p_electricity position: 1 slide_key: costs_flexibility_storage - key: investment_costs_energy_flexibility_hv_opac_electricity step_value: 1.0 unit: "%" position: 3 slide_key: costs_flexibility_storage - key: investment_costs_energy_flexibility_mv_batteries_electricity step_value: 1.0 unit: "%" position: 2 slide_key: costs_flexibility_storage - key: capacity_costs_energy_flexibility_flow_batteries_electricity step_value: 1.0 unit: "%" position: 100 slide_key: costs_flexibility_storage - key: volume_costs_energy_flexibility_flow_batteries_electricity step_value: 1.0 unit: "%" position: 105 slide_key: costs_flexibility_storage
Add costs sliders for flow batteries
Add costs sliders for flow batteries
YAML
mit
quintel/etmodel,quintel/etmodel,quintel/etmodel,quintel/etmodel
8de01e2ab0043ca17cede908bc98f5bc1277e42f
_config/routes.yml
_config/routes.yml
--- Name: modelascontrollerroutes Before: '*' After: '#rootroutes' --- Director: rules: '': 'RootURLController' 'StaticExporter//$Action/$ID/$OtherID': 'StaticExporter' 'RebuildStaticCacheTask//$Action/$ID/$OtherID': 'RebuildStaticCacheTask' 'RemoveOrphanedPagesTask//$Action/$ID/$OtherID': 'RemoveOrphanedPagesTask' 'SiteTreeMaintenanceTask//$Action/$ID/$OtherID': 'SiteTreeMaintenanceTask' 'SiteTreeMaintenanceTask//$Action/$ID/$OtherID': 'SiteTreeMaintenanceTask' '$URLSegment//$Action/$ID/$OtherID': 'ModelAsController' --- Name: legacycmsroutes After: '#adminroutes' --- Director: rules: 'admin/cms': '->admin/pages'
--- Name: modelascontrollerroutes Before: '*' After: '#rootroutes' --- Director: rules: '': 'RootURLController' 'StaticExporter//$Action/$ID/$OtherID': 'StaticExporter' 'RemoveOrphanedPagesTask//$Action/$ID/$OtherID': 'RemoveOrphanedPagesTask' 'SiteTreeMaintenanceTask//$Action/$ID/$OtherID': 'SiteTreeMaintenanceTask' '$URLSegment//$Action/$ID/$OtherID': 'ModelAsController' --- Name: legacycmsroutes After: '#adminroutes' --- Director: rules: 'admin/cms': '->admin/pages'
Remove non-cms task Remove duplicate route
Remove non-cms task Remove duplicate route
YAML
bsd-3-clause
jonom/silverstripe-cms,jonom/silverstripe-cms,silverstripe/silverstripe-cms,silverstripe/silverstripe-cms
d49a2fa77b24a2fb134a4b66910adc7837e43423
metadata/org.tengel.timescale.yml
metadata/org.tengel.timescale.yml
Categories: - Science & Education License: GPL-3.0-or-later SourceCode: https://github.com/tengel/GeologicalTimescale AutoName: Geological Timescale RepoType: git Repo: https://github.com/tengel/GeologicalTimescale.git Builds: - versionName: 0.4.1 versionCode: 6 commit: fdroid-0.4.1 subdir: app gradle: - yes AutoUpdateMode: Version fdroid-%v UpdateCheckMode: Tags fdroid-\d+\.\d+\.\d+ CurrentVersion: 0.4.1 CurrentVersionCode: 6
Categories: - Science & Education License: GPL-3.0-or-later SourceCode: https://github.com/tengel/GeologicalTimescale AutoName: Geological Timescale RepoType: git Repo: https://github.com/tengel/GeologicalTimescale.git Builds: - versionName: 0.4.1 versionCode: 6 commit: fdroid-0.4.1 subdir: app gradle: - yes - versionName: 0.5.0 versionCode: 7 commit: fdroid-0.5.0 subdir: app gradle: - yes AutoUpdateMode: Version fdroid-%v UpdateCheckMode: Tags fdroid-\d+\.\d+\.\d+ CurrentVersion: 0.5.0 CurrentVersionCode: 7
Update Geological Timescale to 0.5.0 (7)
Update Geological Timescale to 0.5.0 (7)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
920372e3e28842baf06dd3e0f18531e72071d444
example.gopherbot/conf/gopherbot.yaml
example.gopherbot/conf/gopherbot.yaml
# The administrator of this robot, can be retrieved in plugins with GetBotAttribute("admin") #AdminContact: "Joe Devops, <[email protected]>" # If a plugin doesn't specify otherwise it will be active in these channels; default all channels DefaultChannels: [ "general", "random" ] # Users the bot should never listen to #IgnoreUsers: [ "otherbot", "slackbot" ] # Note: Bot users in Slack can't join channels #JoinChannels: [ "random", "general" ] # List of plugins to activate #ExternalPlugins: #- Name: hosts # Path: plugins/hosts.sh #- Name: rubydemo # Path: plugins/rubydemo # ... etc. # List of users that can issue admin commands like reload, quit AdminUsers: [ "bofh" ] # One-character alias the bot can be called by Alias: ";" # Protocol configuration - required Protocol: slack ProtocolConfig: SlackToken: "<your_token_here>" # Slack maximum message size is 4000 bytes; larger messages will be split # up into at most MaxMessageSplit separate messages, and then truncated MaxMessageSplit: 2 # Default port for http/json used by plugin libraries #LocalPort: "8880" # The default log level, one of error, warn, info, debug, trace; debug and # trace will include logging from the slack library as well. #LogLevel: info
# The administrator of this robot, can be retrieved in plugins with GetBotAttribute("admin") #AdminContact: "Joe Devops, <[email protected]>" # If a plugin doesn't specify otherwise it will be active in these channels; default all channels DefaultChannels: [ "general", "random" ] # Users the bot should never listen to #IgnoreUsers: [ "otherbot", "slackbot" ] # Note: Bot users in Slack can't join channels #JoinChannels: [ "random", "general" ] # List of plugins to activate #ExternalPlugins: #- Name: hosts # Path: plugins/hosts.sh #- Name: rubydemo # Path: plugins/rubydemo # ... etc. # List of users that can issue admin commands like reload, quit AdminUsers: [ "bofh" ] # One-character alias the bot can be called by, one of: *+|^$?\[]{}&!;:=-%#@~<>/ # Note: Some won't work with Slack: "&" (maybe others, not all tested) Alias: ";" # Protocol configuration - required Protocol: slack ProtocolConfig: SlackToken: "<your_token_here>" # Slack maximum message size is 4000 bytes; larger messages will be split # up into at most MaxMessageSplit separate messages, and then truncated MaxMessageSplit: 2 # Default port for http/json used by plugin libraries #LocalPort: "8880" # The default log level, one of error, warn, info, debug, trace; debug and # trace will include logging from the slack library as well. #LogLevel: info
Add list of allowable aliases to sample config
Add list of allowable aliases to sample config
YAML
mit
parsley42/gopherbot,parsley42/gopherbot,parsley42/gopherbot,uva-its/gopherbot,uva-its/gopherbot,uva-its/gopherbot,uva-its/gopherbot,parsley42/gopherbot
f1bddaf7437b47a9bbc897f218affadfa54c167b
tasks/freeipa.yml
tasks/freeipa.yml
- set_fact: key_file=/etc/pki/tls/private/{{ website_domain }}.key cert_file=/etc/pki/tls/certs/{{ website_domain }}.crt - fail: "A certificate can only be requested for the current server with the freeipa method" when: website_domain != ansible_fqdn - command: creates={{ key_file }} ipa-getcert request -f {{ cert_file }} -k {{ key_file }} -D {{ ansible_fqdn }} -K host/{{ ansible_fqdn }} - include: common_ssl.yml
- set_fact: key_file=/etc/pki/tls/private/{{ website_domain }}.key cert_file=/etc/pki/tls/certs/{{ website_domain }}.crt - fail: msg="A certificate can only be requested for the current server with the freeipa method" when: website_domain != ansible_fqdn - command: creates={{ key_file }} ipa-getcert request -f {{ cert_file }} -k {{ key_file }} -D {{ ansible_fqdn }} -K host/{{ ansible_fqdn }} - include: common_ssl.yml
Fix the fail module call
Fix the fail module call
YAML
mit
OSAS/ansible-role-httpd
065cbfe9157b821945c89f9507e17ec30df4af08
roles/neutron-common/defaults/main.yml
roles/neutron-common/defaults/main.yml
--- neutron: rev: b059dc0606568a5982aea4c2861ac21cf380792d api_workers: 3 dhcp_dns_servers: - 8.8.8.8 - 8.8.4.4
--- neutron: rev: b5c4152ac9958e api_workers: 3 dhcp_dns_servers: - 8.8.8.8 - 8.8.4.4
Revert "neutron: Update to stable/havana"
Revert "neutron: Update to stable/havana" This reverts commit d7a3f2ad9ab687aea276af95bc75477a97700ddd.
YAML
mit
twaldrop/ursula,panxia6679/ursula,EricCrosson/ursula,ddaskal/ursula,andrewrothstein/ursula,wupeiran/ursula,jwaibel/ursula,masteinhauser/ursula,aldevigi/ursula,pbannister/ursula,fancyhe/ursula,knandya/ursula,paulczar/ursula,narengan/ursula,edtubillara/ursula,ddaskal/ursula,panxia6679/ursula,MaheshIBM/ursula,paulczar/ursula,blueboxgroup/ursula,dlundquist/ursula,wupeiran/ursula,davidcusatis/ursula,greghaynes/ursula,twaldrop/ursula,nirajdp76/ursula,channus/ursula,aldevigi/ursula,pbannister/ursula,edtubillara/ursula,knandya/ursula,andrewrothstein/ursula,pgraziano/ursula,zrs233/ursula,MaheshIBM/ursula,fancyhe/ursula,zrs233/ursula,rongzhus/ursula,j2sol/ursula,rongzhus/ursula,ryshah/ursula,zrs233/ursula,jwaibel/ursula,nirajdp76/ursula,nirajdp76/ursula,lihkin213/ursula,dlundquist/ursula,ddaskal/ursula,twaldrop/ursula,sivakom/ursula,twaldrop/ursula,kennjason/ursula,rongzhus/ursula,zrs233/ursula,lihkin213/ursula,edtubillara/ursula,EricCrosson/ursula,ryshah/ursula,ryshah/ursula,davidcusatis/ursula,masteinhauser/ursula,knandya/ursula,jwaibel/ursula,allomov/ursula,aldevigi/ursula,EricCrosson/ursula,masteinhauser/ursula,knandya/ursula,persistent-ursula/ursula,mjbrewer/ursula,blueboxgroup/ursula,channus/ursula,kennjason/ursula,paulczar/ursula,msambol/ursula,channus/ursula,edtubillara/ursula,rongzhus/ursula,kennjason/ursula,wupeiran/ursula,channus/ursula,greghaynes/ursula,greghaynes/ursula,wupeiran/ursula,MaheshIBM/ursula,j2sol/ursula,blueboxgroup/ursula,narengan/ursula,j2sol/ursula,narengan/ursula,persistent-ursula/ursula,pgraziano/ursula,dlundquist/ursula,mjbrewer/ursula,persistent-ursula/ursula,panxia6679/ursula,masteinhauser/ursula,msambol/ursula,blueboxgroup/ursula,persistent-ursula/ursula,andrewrothstein/ursula,nirajdp76/ursula,lihkin213/ursula,sivakom/ursula,j2sol/ursula,allomov/ursula,lihkin213/ursula,panxia6679/ursula,mjbrewer/ursula,ryshah/ursula,fancyhe/ursula,pgraziano/ursula,allomov/ursula,sivakom/ursula,fancyhe/ursula,ddaskal/ursula,pbannister/ursula,davidcusatis/ursula,msambol/ursula,narengan/ursula,pgraziano/ursula
5a5eeee4770dce13f01706d74702f7980afe04e1
cluster/manifests/kube-janitor/deployment.yaml
cluster/manifests/kube-janitor/deployment.yaml
{{ if ne .Environment "production" }} apiVersion: apps/v1 kind: Deployment metadata: name: kube-janitor namespace: kube-system labels: application: kube-janitor version: v0.2.2 spec: replicas: 1 selector: matchLabels: application: kube-janitor template: metadata: labels: application: kube-janitor version: v0.2.2 spec: dnsConfig: options: - name: ndots value: "1" serviceAccountName: system containers: - name: janitor # see https://github.com/hjacobs/kube-janitor/releases image: registry.opensource.zalan.do/teapot/kube-janitor:0.2.2 args: # run every minute - --interval=60 # do not touch system/infra namespaces - --exclude-namespaces=kube-system,visibility - --rules-file=/config/rules.yaml resources: limits: cpu: 5m memory: 150Mi requests: # this is a background app ==> low priority, low CPU requests cpu: 5m memory: 150Mi securityContext: readOnlyRootFilesystem: true runAsNonRoot: true runAsUser: 1000 volumeMounts: - name: config-volume mountPath: /config volumes: - name: config-volume configMap: name: kube-janitor {{ end }}
{{ if ne .Environment "production" }} apiVersion: apps/v1 kind: Deployment metadata: name: kube-janitor namespace: kube-system labels: application: kube-janitor version: v0.2.2 spec: replicas: 1 selector: matchLabels: application: kube-janitor template: metadata: labels: application: kube-janitor version: v0.2.2 spec: dnsConfig: options: - name: ndots value: "1" priorityClassName: system-cluster-critical serviceAccountName: system containers: - name: janitor # see https://github.com/hjacobs/kube-janitor/releases image: registry.opensource.zalan.do/teapot/kube-janitor:0.2.2 args: # run every minute - --interval=60 # do not touch system/infra namespaces - --exclude-namespaces=kube-system,visibility - --rules-file=/config/rules.yaml resources: limits: cpu: 5m memory: 150Mi requests: # this is a background app ==> low priority, low CPU requests cpu: 5m memory: 150Mi securityContext: readOnlyRootFilesystem: true runAsNonRoot: true runAsUser: 1000 volumeMounts: - name: config-volume mountPath: /config volumes: - name: config-volume configMap: name: kube-janitor {{ end }}
Add a missing priority class
Add a missing priority class Signed-off-by: Alexey Ermakov <[email protected]> Signed-off-by: njuettner <[email protected]>
YAML
mit
zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws