commit
stringlengths
40
40
old_file
stringlengths
4
264
new_file
stringlengths
4
264
old_contents
stringlengths
0
4.24k
new_contents
stringlengths
1
5.44k
subject
stringlengths
14
778
message
stringlengths
15
9.92k
lang
stringclasses
277 values
license
stringclasses
13 values
repos
stringlengths
5
127k
ec0f5b9a8bd9d96b46fc304d662cdeff3de2400d
test/config/cucumber.yaml
test/config/cucumber.yaml
# https://github.com/cucumber/cucumber/wiki/cucumber.yml <% omit_wip = "--tags ~@wip" %> <% omit_migration = "--tags ~@migration" %> default: <%= omit_migration %> <%= omit_wip %> features html_report: <%= omit_migration %> <%= omit_wip %> --format html --out report/index.html wip: <%= omit_migration %> --tags @wi...
# https://github.com/cucumber/cucumber/wiki/cucumber.yml <% omit_ignore = "--tags ~@ignore" %> <% omit_wip = "--tags ~@wip" %> <% omit_migration = "--tags ~@migration" %> default: <%= omit_ignore %> <%= omit_migration %> <%= omit_wip %> features html_report: <%= omit_ignore %> <%= omit_migration %> <%= omit_wip %>...
Add support for cuke - @ignore-tag.
Add support for cuke - @ignore-tag. Scenarios marked @ignore should never be run. Please make a note in the feature file why you @ignore.
YAML
mit
digibib/ls.ext,digibib/ls.ext,digibib/ls.ext,digibib/ls.ext
57807924b4e4ec20b27a63f28b1277e373873c43
config/storage.yml
config/storage.yml
amazon: service: S3 access_key_id: <%= ENV['S3_REWARDS_ACCESS_KEY_ID'] %> secret_access_key: <%= ENV['S3_REWARDS_SECRET_ACCESS_KEY'] %> region: us-east-2 bucket: <%= ENV['S3_REWARDS_BUCKET_NAME'] %> local: service: Disk root: <%= Rails.root.join("storage") %> test: service: Disk root: <%= Rails.root...
amazon: service: S3 access_key_id: <%= ENV['S3_REWARDS_ACCESS_KEY_ID'] %> secret_access_key: <%= ENV['S3_REWARDS_SECRET_ACCESS_KEY'] %> region: <%= ENV['S3_REWARDS_BUCKET_REGION'] %> bucket: <%= ENV['S3_REWARDS_BUCKET_NAME'] %> local: service: Disk root: <%= Rails.root.join("storage") %> test: service...
Use S3 region based on env as opposed to hardcode
Use S3 region based on env as opposed to hardcode Closes #1251
YAML
mpl-2.0
brave/publishers,brave/publishers,brave/publishers
ca645245e886a4ec58357bcc566e084cbc457c1b
playbook.yml
playbook.yml
--- - connection: local hosts: localhost sudo: true remote_user: douglas vars_files: - vault.yml vars: project: openvpn roles: - role: stevenharradine.pseudo-forge - role: stevenharradine.static-ip static_ip_address: "192.168.1.{% if environment_tier=='development' %}90{% elif environm...
--- - connection: local hosts: localhost sudo: true remote_user: douglas vars_files: - vault.yml vars: project: openvpn roles: - role: stevenharradine.pseudo-forge - role: stevenharradine.static-ip static_ip_address: "192.168.2.{% if environment_tier=='development' %}90{% elif environm...
Update ips to not conflict with android hotspot
Update ips to not conflict with android hotspot
YAML
isc
stevenharradine/playbook-openvpn
3afdedd2de5ee42c450c3662e355c374e2e092e1
.bazelci/presubmit.yml
.bazelci/presubmit.yml
--- tasks: debian10: shell_commands: - apt-get update && apt-get install llvm-11-dev libclang-11-dev libncurses-dev - pip3 install absl-py clang build_targets: - "..."
--- tasks: debian10: shell_commands: - "sudo apt -y update && sudo apt -y install llvm-11-dev libclang-11-dev libncurses-dev" - pip3 install absl-py clang build_targets: - "..."
Install the packages with `sudo`
BazelCI: Install the packages with `sudo` PiperOrigin-RevId: 438800858 Change-Id: Ib7584313ff51869e3e62d5c54c2f04e2969bae50
YAML
apache-2.0
google/sandboxed-api,google/sandboxed-api,google/sandboxed-api,google/sandboxed-api
341f58e6d9a4928c50a645540ba33aee6402af8b
manifest-pcf.yml
manifest-pcf.yml
--- instances: 1 memory: 1024M applications: - name: fortune-service host: fortunes path: fortune-teller-fortune-service/target/fortune-teller-fortune-service-0.0.1-SNAPSHOT.jar services: - fortunes-db - config-server - service-registry - name: fortune-ui host: fortunes-ui path: fortune-teller-ui/target...
--- instances: 1 memory: 1024M applications: - name: fortune-service host: fortunes path: fortune-teller-fortune-service/target/fortune-teller-fortune-service-0.0.1-SNAPSHOT.jar services: - fortunes-db - config-server - service-registry - name: fortune-ui host: fortunes-ui path: fortune-teller-ui/target...
Add comment about updating CF_TARGET
Add comment about updating CF_TARGET
YAML
apache-2.0
spring-cloud-services-samples/fortune-teller,spring-cloud-services-samples/fortune-teller,spring-cloud-services-samples/fortune-teller,spring-cloud-services-samples/fortune-teller,spring-cloud-services-samples/fortune-teller
0c548ec618b6eac9ccf1d261ec79c6f9ebb43fb3
.github/workflows/ci.yml
.github/workflows/ci.yml
name: Publish package to GitHub Packages on: push: pull_request: jobs: ci: runs-on: windows-latest permissions: contents: read packages: write env: JDK_JAVA_OPTIONS: "--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.i...
name: Publish package to GitHub Packages on: push: pull_request: jobs: test: runs-on: windows-latest env: JDK_JAVA_OPTIONS: "--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED" steps: - uses: actions/checkout@v...
Split test and publish jobs
Split test and publish jobs
YAML
apache-2.0
Codeforces/codeforces-commons,Codeforces/codeforces-commons
e4fc80567ca4b101ca2a896334bc2ea685fad8b3
.github/workflows/ci.yml
.github/workflows/ci.yml
name: Continuous Integration on: push: branches: - master pull_request: jobs: unit_tests: name: Unit Tests runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Install Rust uses: actions-rs/toolchain@v1 with: t...
name: Continuous Integration on: push: branches: - master pull_request: jobs: unit_tests: name: Unit Tests runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Install Rust uses: actions-rs/toolchain@v1 with: t...
Add CI test for enum-map feature
Add CI test for enum-map feature
YAML
mit
greyblake/whatlang-rs,greyblake/whatlang-rs,greyblake/whatlang-rs
9f648134448f405f5edb3f31aa24ca253274591e
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: push: branches: - master pull_request: jobs: test: runs-on: macOS-latest strategy: matrix: env: - sdk: iphonesimulator12.2 destination: platform=iOS Simulator,name=iPhone XS,OS=12.2 - sdk: appletvsimulator12.2 destination:...
name: CI on: push: branches: - master pull_request: jobs: test: runs-on: macOS-latest strategy: matrix: env: - sdk: iphonesimulator12.2 destination: platform=iOS Simulator,name=iPhone XS,OS=12.2 - sdk: appletvsimulator12.2 destination:...
Add -X flag to codecov command
Add -X flag to codecov command
YAML
mit
devxoul/SwiftyImage,devxoul/SwiftyImage
b528efb3ede34cfdfec677ab2b58a97c4680b015
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: [push, pull_request] jobs: tests: runs-on: ubuntu-latest strategy: matrix: include: - { ruby: 2.5 } - { ruby: 2.6 } - { ruby: 2.7 } - { ruby: 3.0 } - { ruby: jruby, allow-failure: true } - { ruby: jruby-head, allow-failure:...
name: CI on: [push, pull_request] jobs: tests: runs-on: ubuntu-latest continue-on-error: ${{ fromJSON(matrix.experimental) }} name: ${{ matrix.ruby }} strategy: matrix: experimental: [ false ] include: - { ruby: 2.5 } - { ruby: 2.6 } - { ruby: 2.7 } ...
Use experimental: true to allow failures
CI: Use experimental: true to allow failures Example taken from https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idcontinue-on-error
YAML
mit
eileencodes/sprockets,rails/sprockets
655db6839d12451f38bef69f44c6b8d134abb728
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: push: branches: - '*' pull_request: schedule: - cron: 0 14 * * 0 jobs: ci: name: PHP v${{ matrix.php }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: php: ['7.2', '7.3', '7.4'] steps: - name: Set up PHP uses: shivammathur/setup-php...
name: CI on: push: branches: - '*' pull_request: schedule: - cron: 0 14 * * 0 jobs: ci: name: PHP v${{ matrix.php }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: php: ['7.3', '7.4', '8.0'] steps: - name: Set up PHP uses: shivammathur/setup-php...
Add PHP v8 to workflow configuration.
Add PHP v8 to workflow configuration.
YAML
mit
recoilphp/dev
9aa9cc0bd07871c6dec0ef02b25d91e2e8e92ed3
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: ruby: [ '2.6', '2.7', '3.0', '3.1' ] steps: - name: Check out code uses: actions/checkout@v2 - name: Set up ruby uses: ruby/setup-ruby@v1 with:...
name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: ruby: [ '2.6', '2.7', '3.0', '3.1' ] steps: - name: Check out code uses: actions/checkout@v2 - name: Set up ruby uses: ruby/setup-ruby@v1 with:...
Remove bundler version from CI.
build: Remove bundler version from CI. 2.7 isn’t happy for some reason - perhaps this is why?
YAML
mit
flying-sphinx/flying-sphinx
39575a04ad006b534ffa4d36aa7aac9a516bdc98
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: push: {} pull_request: types: [opened, synchronize] jobs: build: if: github.event_name == 'push' || github.event.pull_request.head.repo.owner.login != 'dylanahsmith' runs-on: ubuntu-latest strategy: matrix: entry: - name: 'Minimum supported' rub...
name: CI on: push: {} pull_request: types: [opened, synchronize] jobs: build: if: github.event_name == 'push' || github.event.pull_request.head.repo.owner.login != 'dylanahsmith' runs-on: ubuntu-latest strategy: matrix: entry: - name: 'Minimum supported' rub...
Update Rails head branch name in CI workflow
Update Rails head branch name in CI workflow
YAML
mit
dylanahsmith/ar_transaction_changes
91f0afd29d08a802b3dcca3fbfa47e4817ec0b10
.github/workflows/ci.yml
.github/workflows/ci.yml
name: Tests on: [push, pull_request] jobs: run: name: PHP ${{ matrix.php }} runs-on: ubuntu-latest strategy: matrix: php: ['7.3', '7.4'] steps: - name: Checkout uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-vers...
name: Tests on: [push, pull_request] jobs: run: name: PHP ${{ matrix.php }} runs-on: ubuntu-latest strategy: matrix: php: ['7.3', '7.4'] steps: - name: Checkout uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-vers...
Set username and password env vars for E2E tests
Set username and password env vars for E2E tests
YAML
mit
lildude/phpZenfolio
5b05a416ac04568cbdfad1dd5076598786d27596
.github/workflows/ci.yml
.github/workflows/ci.yml
name: ci on: push: branches: - master pull_request: jobs: cabal: runs-on: ${{ matrix.os }} strategy: matrix: ghc: ["8.6.5", "8.8.4", "8.10.4", "8.10.7", "9.2"] cabal: ["3.6.2.0"] os: [ubuntu-latest, macOS-latest] name: build and test (cabal) steps: - ...
name: ci on: push: branches: - master pull_request: jobs: cabal: runs-on: ${{ matrix.os }} strategy: matrix: ghc: ["8.6.5", "8.8.4", "8.10.7", "9.0.2", "9.2"] cabal: ["3.6.2.0"] os: [ubuntu-latest, macOS-latest] name: build and test (cabal) steps: - u...
Enable tests on 9.0.2, make it latest (stable)
Enable tests on 9.0.2, make it latest (stable)
YAML
bsd-3-clause
GetShopTV/swagger2
61bad005dc6051a44a61e1106c5f0fb2d1dffcf4
.github/workflows/ci.yml
.github/workflows/ci.yml
name: NPM Test on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] node-version: [10.x, 12.x] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1.2.0 with: node-ver...
name: NPM Test on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] node-version: [12.x, 14.x] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1.2.0 with: node-ver...
Change supported node version to 12 and 14
Change supported node version to 12 and 14
YAML
mit
yeoman/yeoman-test
7bfc4d32269bde98826fed6bd8f09ad1ef8c981b
.github/workflows/ci.yml
.github/workflows/ci.yml
--- name: Run tests on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: 2.7 bundler-cache: true - name: rspec run: bundle exec rake
--- name: Run tests on: [push, pull_request] jobs: build: strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] ruby: [2.5, 2.6, 2.7] steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} ...
Update github actions to run multiple rubies
Update github actions to run multiple rubies
YAML
mit
muffinista/chatterbot
a4019eb9cc9074bd69472bf4de78ec5a6c60a461
defaults.yaml
defaults.yaml
'NSGlobalDomain': # General > Use dark menu bar and Dock 'AppleInterfaceStyle': 'Dark' # Keyboard > Shortcuts > Full Keyboard Access: All controls 'AppleKeyboardUIMode': 3 # Keyboard > Keyboard > Delay Until Repeat: Short 'InitialKeyRepeat': 25 # Keyboard > Keyboard > Key Repeat: Fast '...
'NSGlobalDomain': # General > Use dark menu bar and Dock 'AppleInterfaceStyle': 'Dark' # Keyboard > Shortcuts > Full Keyboard Access: All controls 'AppleKeyboardUIMode': 3 # Keyboard > Keyboard > Delay Until Repeat: Short 'InitialKeyRepeat': 25 # Keyboard > Keyboard > Key Repeat: Fast '...
Add default to reopen windows when apps are relaunched
Add default to reopen windows when apps are relaunched
YAML
mit
alykhank/dotfiles,alykhank/dotfiles
e1786c74ebd989d9793cb08589c91c24fd200b3d
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: '' sections: - type: directory path: content/post label: Articles create: all match: "**/*" templates: - post - type: document path: data/authors.yml label: Authors upload_dir: bgmf public_path: '' front_matter_path: '' use_front_...
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: '' sections: - type: directory path: content/post label: Articles create: all match: "**/*" templates: - post - type: document path: data/authors.yml label: Authors upload_dir: '' public_path: '' front_matter_path: '' use_front_ma...
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io
667626262b2a99647c1953cfa3b921d04fbf1c50
config/environments/feature_toggles.yml
config/environments/feature_toggles.yml
# Add feature toggles with the format: # <feature_name>: off|dev|release show_licensing_overview_success_rate: dev
# Add feature toggles with the format: # <feature_name>: off|dev|release show_licensing_overview_success_rate: release
Enable success rate on licensing overview.
Enable success rate on licensing overview.
YAML
mit
gds-attic/limelight,gds-attic/limelight,gds-attic/limelight
028862f5955bef0e48ba0766a9dff037b4b0d52d
pubspec.yaml
pubspec.yaml
name: http_parser version: 0.0.2+4 author: "Dart Team <misc@dartlang.org>" homepage: http://www.dartlang.org description: > A platform-independent package for parsing and serializing HTTP formats. dependencies: crypto: ">=0.9.0 <0.10.0" collection: ">=0.9.1 <0.10.0" string_scanner: ">=0.0.0 <0.2.0" dev_dependen...
name: http_parser version: 0.0.2+5 author: "Dart Team <misc@dartlang.org>" homepage: http://www.dartlang.org description: > A platform-independent package for parsing and serializing HTTP formats. dependencies: crypto: ">=0.9.0 <0.10.0" collection: ">=0.9.1 <2.0.0" string_scanner: ">=0.0.0 <0.2.0" dev_dependenc...
Update dart:collection to version 1.0.0
Update dart:collection to version 1.0.0 R=sgjesse@google.com Review URL: https://codereview.chromium.org//463333004 git-svn-id: da6bca2648e04c17f8345558aaf5a164717834e9@39484 260f80e4-7a28-3924-810f-c04153c831b5
YAML
bsd-3-clause
dart-lang/http_parser
e9086957a25b53132bb5e94a2a86cbef3ad2be1c
metadata/com.github.gotify.yml
metadata/com.github.gotify.yml
Categories: - Internet License: MIT SourceCode: https://github.com/gotify/android IssueTracker: https://github.com/gotify/android/issues AutoName: Gotify Description: |- Gotify is a service for sending and receiving push notifications. This app subscribes to [https://github.com/gotify/server gotify/server] a...
Categories: - Internet License: MIT SourceCode: https://github.com/gotify/android IssueTracker: https://github.com/gotify/android/issues AutoName: Gotify Description: |- Gotify is a service for sending and receiving push notifications. This app subscribes to [https://github.com/gotify/server gotify/server] a...
Update Gotify to 2.0.5 (8)
Update Gotify to 2.0.5 (8)
YAML
agpl-3.0
f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata
82f2645c9c2691c4332c93a21963fa9ec2e6f41b
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: redac webhook_url: '' sections: - type: directory path: content/post label: Articles create: all match: "**/*" templates: - post - type: document path: config.yaml label: Configuration upload_dir: '' public_path: '' front_matter_path: https://res...
--- new_page_extension: md auto_deploy: false admin_path: redac webhook_url: '' sections: - type: directory path: content/post label: Articles create: all match: "**/*" templates: - post - type: document path: config.yaml label: Configuration upload_dir: '' public_path: '' front_matter_path: https://res...
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io
ff38000418b5422492e7bd63f19c478cd5c0a710
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: true admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all - type: directory path: _deep-speeding-blog label: Deep speeding blog create: all match: "**/*" upload_dir: uploads public_path:...
--- new_page_extension: md auto_deploy: true admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all - type: directory path: _deep-speeling-blog label: Deep speeling blog create: all match: "**/*" upload_dir: uploads public_path:...
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
mdcramer/Deep-Speeling-Blog,mdcramer/Deep-Speeling-Blog,mdcramer/Deep-Speeling-Blog
95a9e5357300832d3bd1ecd46ee8aa16b56807d6
metadata/de.tadris.fitness.yml
metadata/de.tadris.fitness.yml
Categories: - Sports & Health License: GPL-3.0-or-later WebSite: https://codeberg.org/jannis/FitoTrack SourceCode: https://codeberg.org/jannis/FitoTrack IssueTracker: https://codeberg.org/jannis/FitoTrack/issues Changelog: https://codeberg.org/jannis/FitoTrack/src/branch/master/CHANGELOG.md Bitcoin: 3BSbGRbJaiSxVg3D6...
Categories: - Sports & Health License: GPL-3.0-or-later WebSite: https://codeberg.org/jannis/FitoTrack SourceCode: https://codeberg.org/jannis/FitoTrack IssueTracker: https://codeberg.org/jannis/FitoTrack/issues Changelog: https://codeberg.org/jannis/FitoTrack/src/branch/master/CHANGELOG.md Bitcoin: 3BSbGRbJaiSxVg3D6...
Update FitoTrack to 4.1 (410)
Update FitoTrack to 4.1 (410)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
dc499760711e4953fc953c8f58570a652bd564fb
.github/workflows/failure-cases.yml
.github/workflows/failure-cases.yml
name: Execute failure cases on: workflow_dispatch: env: GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}- jobs: wrapper-missing: runs-on: ubuntu-latest steps: - name: Checkout sources uses: actions/checkout@v2 - name: Test wrapper ...
name: Execute failure cases on: workflow_dispatch: env: GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}- jobs: failing-build: runs-on: ubuntu-latest steps: - name: Checkout sources uses: actions/checkout@v2 - name: Test build fail...
Add manual test to demonstrate failing build
Add manual test to demonstrate failing build
YAML
mit
eskatos/gradle-command-action,eskatos/gradle-command-action,eskatos/gradle-command-action
afcecd47592435bc36ef6c3b91ad06d852ba4488
.github/workflows/test_with_tox.yml
.github/workflows/test_with_tox.yml
name: Python package on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: python: [2.7, 3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - name: Setup Python ${{ matrix.python }} uses: actions/setup-python@v2 with: pytho...
name: Test DBUtils using tox on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: python: [2.7, 3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - name: Setup Python ${{ matrix.python }} uses: actions/setup-python@v2 with: ...
Change name of GitHub workflow
Change name of GitHub workflow
YAML
mit
Cito/DBUtils,Cito/DBUtils
00e284a72125c22dcc1508ac157d32a389a461de
.github/workflows/docs.yml
.github/workflows/docs.yml
name: docs on: pull_request: branches: - master push: branches: - master jobs: test-ubuntu: name: "docs on ${{ matrix.python-version }} on ${{ matrix.os }}" runs-on: "${{ matrix.os }}" strategy: matrix: python-version: [3.6, 3.7, 3.8] os: [ubuntu-latest] ...
name: docs on: pull_request: branches: - master push: branches: - master jobs: test-ubuntu: name: "docs on ${{ matrix.python-version }} on ${{ matrix.os }}" runs-on: "${{ matrix.os }}" strategy: matrix: python-version: [3.6, 3.7, 3.8] os: [ubuntu-latest] ...
Break down doc tests into sections.
Break down doc tests into sections. We can now see clearly that the slowest part of the docs testing is running our doctests. PiperOrigin-RevId: 377301313
YAML
apache-2.0
deepmind/dm-haiku,deepmind/dm-haiku
6360120a8ac1f8e660a102ca169a2eebb72daf29
.github/workflows/main.yml
.github/workflows/main.yml
name: Build on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: strategy: matrix: php: ['5.6', '7.3', '7.4'] runs-on: ubuntu-latest steps: - name: Set up PHP environment uses: shivammathur/setup-php@v2 with: php-version: '${...
name: Build on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: strategy: matrix: php: ['5.6', '7.3', '7.4', '8.0', '8.1'] runs-on: ubuntu-latest steps: - name: Set up PHP environment uses: shivammathur/setup-php@v2 with: ph...
Add 8 and 8.1 to CI branches
Add 8 and 8.1 to CI branches
YAML
cc0-1.0
gRegorLove/php-mf2,gRegorLove/php-mf2
eb1dd7e473ae25044d5642457424eca82b214aee
.github/workflows/main.yml
.github/workflows/main.yml
name: CI on: push: branches: [ feature/github-actions-for-windows-compilers ] pull_request: branches: [ master ] jobs: build-windows-vs2019: name: Windows VS2019 Debug runs-on: [windows-latest] steps: - name: Checkout uses: actions/checkout@v2 with: submodules: recurs...
name: CI on: push: branches: [ feature/github-actions-for-windows-compilers ] pull_request: branches: [ master ] jobs: build-windows-vs2019: name: Windows VS2019 Debug runs-on: [windows-latest] steps: - name: Checkout uses: actions/checkout@v2 with: submodules: recurs...
Add VS2019 configuration to Github CI
Add VS2019 configuration to Github CI
YAML
mit
ETLCPP/etl,ETLCPP/etl,ETLCPP/etl,ETLCPP/etl
52a3bf9fd5127ce22c3c6b4b9951d062d8407880
.github/workflows/main.yml
.github/workflows/main.yml
name: Build on: push: branches: - master jobs: build: runs-on: ubuntu-16.04 steps: - uses: actions/checkout@v1 - name: Installing dependencies run: | sudo apt update && sudo apt install make -y git clone https://github.com/estesp/manifest-tool && cd mani...
name: Build on: push: branches: - master jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Installing dependencies run: | sudo apt update && sudo apt install make -y git clone https://github.com/estesp/manifest-tool && cd man...
Update actions to use latest ubuntu (deprecated older)
Update actions to use latest ubuntu (deprecated older)
YAML
mit
femtopixel/docker-google-closure-compiler-api,femtopixel/docker-google-closure-compiler-api
800d83bf04b7036cde35605966ed824777da9b46
.github/workflows/ruby.yml
.github/workflows/ruby.yml
name: Ruby on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Build and test with Rake run: | gem install bundler bundle install --jobs...
name: Ruby on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Build and test with RSpec run: | gem install bundler bundle install --job...
Fix GitHub workflow step name
Fix GitHub workflow step name
YAML
mit
tomstuart/monads
ee606fe17c3f1d35ccacaa7ab8146e3720948c98
.github/workflows/test.yml
.github/workflows/test.yml
name: Node CI on: - push - pull_request jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Use Node.js 12.x uses: actions/setup-node@v1 with: node-version: 12.x - name: npm install, build, and test run: | npm ci ...
name: Node CI on: - push - pull_request jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Use Node.js 12.x uses: actions/setup-node@v1 with: node-version: 12.x - name: Yarn install, build, and test run: | yarn in...
Use Yarn in GitHub Actions
Use Yarn in GitHub Actions
YAML
mit
jbhannah/jbhannah.net,jbhannah/jbhannah.net
d5ba5c9a6ca60372deeb80d10c8ffe2ab997a26c
roles/onos-load-apps/defaults/main.yml
roles/onos-load-apps/defaults/main.yml
--- # onos-load-apps/defaults/main.yml onos_cord_vm_hostname: "onos-cord-1" onos_web_user: "onos" onos_web_pass: "rocks" cord_apps: - name: cord-config onos_name: org.opencord.config - name: vtn onos_name: org.opencord.vtn cord_apps_repo_url: "https://oss.sonatype.org/content/repositories/public" cord_ap...
--- # onos-load-apps/defaults/main.yml onos_cord_vm_hostname: "onos-cord-1" onos_web_user: "onos" onos_web_pass: "rocks" cord_apps: - name: cord-config onos_name: org.opencord.config - name: vtn onos_name: org.opencord.vtn cord_apps_repo_url: "https://oss.sonatype.org/content/repositories/public" cord_ap...
Use 1.1-SNAPSHOT version for CORD apps
Use 1.1-SNAPSHOT version for CORD apps Change-Id: I737b9d1d83af8ab9840224710a5768b66023e80b
YAML
apache-2.0
opencord/platform-install,opencord/platform-install
e1561d68510aa921e0bfb0365c451e248e1cf9d5
Scripts/script-ExtractDomainFromUrlFormat.yml
Scripts/script-ExtractDomainFromUrlFormat.yml
commonfields: id: ExtractDomainFromUrlAndEmail version: -1 name: ExtractDomainFromUrlAndEmail script: |- from tld import get_tld from validate_email import validate_email import re inp = demisto.args()['input'] is_url = None domain_from_mail = None is_email = validate_email(inp) if is_email: ...
commonfields: id: ExtractDomainFromUrlAndEmail version: -1 name: ExtractDomainFromUrlAndEmail script: |- from tld import get_tld from validate_email import validate_email import re def extract_domain(the_input): is_email = validate_email(the_input) if is_email: domain = re.search('@[\...
Update ExtractDomainFromUrlAndEmail script to accept array input
Update ExtractDomainFromUrlAndEmail script to accept array input
YAML
mit
VirusTotal/content,VirusTotal/content,demisto/content,VirusTotal/content,demisto/content,demisto/content,VirusTotal/content,demisto/content
9c609a773dbc0fddb822ff13abb8e1b8eb3b0d83
.forestry/front_matter/templates/billet.yml
.forestry/front_matter/templates/billet.yml
--- label: Billet hide_body: false display_field: title fields: - type: text name: title label: Title config: required: true - type: datetime name: date label: Date config: date_format: DD/MM/YYYY required: true default: now - type: list name: tags label: Tags - type: file name: image ...
--- label: Billet hide_body: false display_field: title fields: - type: text name: title label: Title config: required: true - type: datetime name: date label: Date config: date_format: DD/MM/YYYY required: true default: now - type: list name: tags label: Tags - type: file name: image ...
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
Narno/arnaudligny.fr,Narno/arnaudligny.fr,Narno/arnaudligny.fr
4ea5979efc411936b06db3468c940d9e01665e39
.forestry/front_matter/templates/billet.yml
.forestry/front_matter/templates/billet.yml
--- label: Billet hide_body: false fields: - type: text name: title label: title - type: datetime name: date label: date - type: list name: tags label: tags - type: file name: image label: image - type: text name: typora-root-url label: typora-root-url
--- label: Billet hide_body: false fields: - type: text name: title label: Title config: required: true - type: datetime name: date label: Date config: date_format: DD/MM/YYYY required: true default: now - type: list name: tags label: Tags - type: file name: image label: Image - type: ...
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
Narno/arnaudligny.fr,Narno/arnaudligny.fr,Narno/arnaudligny.fr
bbb108f040f1af4c29756f9bcc45c83964ffc778
www/_config.yml
www/_config.yml
# Site settings title: fun design header-img: img/home-bg.jpg email: alex@myltsev.name description: "Write your site description here. It will be used as your sites meta description as well!" baseurl: "" url: "http://myltsev.name" twitter_username: Alex_Myltsev github_username: alexander-myltsev facebook_username: alex...
# Site settings title: y-code header-img: img/home-bg.jpg email: alex@myltsev.name description: "Blog about things I am mostly interested in code: functional programming, parsing grammars, compilers, etc." baseurl: "" url: "http://myltsev.name" twitter_username: Alex_Myltsev github_username: alexander-myltsev facebook_...
Update blog title and description
Update blog title and description
YAML
apache-2.0
alexander-myltsev/alexander-myltsev-blog,alexander-myltsev/alexander-myltsev-blog,alexander-myltsev/alexander-myltsev-blog,alexander-myltsev/alexander-myltsev-blog
5cdf157600ee68ef08ebf7c6c080b27a67d417ec
docs/environment.yml
docs/environment.yml
name: _anypytools-docs channels: - conda-forge - defaults dependencies: - sphinx<4 - cloud_sptheme - nbsphinx - IPython - numpy - scipy - tqdm - h5py - pytest - myst-parser - ipywidgets
name: _anypytools-docs channels: - conda-forge - defaults dependencies: - python=3.9 - sphinx<4 - cloud_sptheme - nbsphinx - IPython - numpy - scipy - tqdm - h5py - pytest - myst-parser - ipywidgets
Build docs on python 3.9
Build docs on python 3.9
YAML
mit
AnyBody-Research-Group/AnyPyTools
c650ae3757c6dba6dd9156c31a11996f249a35d3
docker-compose.yml
docker-compose.yml
mongo: image: mongo:2.6 redis: image: redis:2.8 www: build: . ports: - "8080" links: - mongo - redis volumes: - .:/usr/src/app environment: - APP_PORT=8080 - NODE_ENV=development - NPM_CONFIG_LOGLEVEL=info command: npm run-script watch
mongo: image: mongo:2.6 command: mongod --smallfiles redis: image: redis:2.8 www: build: . ports: - "8080" links: - mongo - redis volumes: - .:/usr/src/app environment: - APP_PORT=8080 - NODE_ENV=development - NPM_CONFIG_LOGLEVEL=info command: npm run-script watch
Use small files for local MongoDB instance
Use small files for local MongoDB instance
YAML
mit
Turbasen/Turbasen,Turistforeningen/Turbasen
f8f9da03333ca91734a7c45eb1875eb98011461e
GitReleaseManager.yaml
GitReleaseManager.yaml
issue-labels-include: - Breaking change - Feature - Bug - Improvement - Documentation issue-labels-exclude: - Build issue-labels-alias: - name: Documentation header: Documentation plural: Documentation
issue-labels-include: - Breaking change - Feature - Bug - Improvement - Documentation issue-labels-exclude: - Build issue-labels-alias: - name: Documentation header: Documentation plural: Documentation
Fix Git Release Manager configuration
Fix Git Release Manager configuration
YAML
mit
Philo/cake-npm,Philo/cake-npm
1883817481f655a1b8fed54c4bd0b3c20acd7a29
build.yaml
build.yaml
repositories: remote: - http://repo1.maven.org/maven2 artifacts: jsinterop_base: com.google.jsinterop:base:jar:1.0.0-RC1 elemental2_core: com.google.elemental2:elemental2-core:jar:1.0.0-RC1 elemental2_dom: com.google.elemental2:elemental2-dom:jar:1.0.0-RC1 elemental2_promise: com.google.elemental2:elemen...
repositories: remote: - http://repo1.maven.org/maven2 artifacts: jsinterop_base: com.google.jsinterop:base:jar:1.0.0-RC1 elemental2_core: org.realityforge.com.google.elemental2:elemental2-core:jar:1.0.0-b14-2f97dbe elemental2_dom: org.realityforge.com.google.elemental2:elemental2-dom:jar:1.0.0-b14-2f97dbe ...
Update the com.google.elemental2 dependency coordinates.
Update the com.google.elemental2 dependency coordinates.
YAML
apache-2.0
realityforge/gwt-webpoller,realityforge/gwt-webpoller
2a4922a314f05bb4ccb5f3c11de96c888919a3d8
src/app_charts/ros-master/robot/ros-master.yaml
src/app_charts/ros-master/robot/ros-master.yaml
# This defines a service in the robot cluster, available at: # ros-master-<robot name>.app-ros-master.svc.cluster.local # The user can configure what it points to by setting `values.ros_master_host` # in the AppRollout, allowing a single-point-of-configuration for the ROS # master. Note that this can't specify the po...
# This defines a service in the robot cluster, available at: # ros-master-<robot name>.app-ros-master.svc.cluster.local # The user can configure what it points to by setting `values.ros_master_host` # in the AppRollout, allowing a single-point-of-configuration for the ROS # master. Note that this can't specify the po...
Use headless service for ROS master on robot
Use headless service for ROS master on robot I36b764d70 introduced the ros-master app, which aims to provide a DNS name for the ROS master that works for both simulated and non-simulated robots. However, this used an ExternalName service, which is inadequate for non-simulated robots, as it can't use an IPv4 address fo...
YAML
apache-2.0
googlecloudrobotics/core,googlecloudrobotics/core,googlecloudrobotics/core
c6ddc5a37a2e63dfca74481732bce40f5fe63f61
.github/workflows/update-assets-manifest.yml
.github/workflows/update-assets-manifest.yml
name: Update assets-manifest on: pull_request_target: branches: - "dependabot/npm_and_yarn/**" workflow_dispatch: jobs: build: name: Update assets-manifest runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 with: persist-crede...
name: Update assets-manifest on: push: branches: - "dependabot/npm_and_yarn/**" workflow_dispatch: jobs: build: name: Update assets-manifest runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 with: persist-credentials: false ...
Revert "Try to fix update assets manifest"
Revert "Try to fix update assets manifest" This reverts commit 4f39318c66d4dbebe240d334ab0b0424ec6823d3.
YAML
apache-2.0
synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung
2e4c5f53c55846be07048a39d82caf321dc54e01
.codeclimate.yml
.codeclimate.yml
engines: eslint: enabled: true config: .eslintrc duplication: enabled: false config: languages: - javascript fixme: enabled: true ratings: paths: - "**.js" exclude_paths: - data/* - assets/*
engines: eslint: enabled: true config: .eslintrc duplication: enabled: false config: languages: - javascript fixme: enabled: true checks: return-statements: enabled: false method-complexity: enabled: false method-lines: enabled: false file-lines: enabled: ...
Disable some bs Code Climate checks
Disable some bs Code Climate checks
YAML
unknown
owo-dev-team/owo-whats-this,ClarityMoe/Clara,awau/owo-whats-this,awau/Clara,sr229/owo-whats-this
3e12239b768be57ea450f3326b77d290b229f698
circle.yml
circle.yml
machine: environment: PATH: ${HOME}/extras/bin:${HOME}/extras/otp/18.3/bin:${PATH} dependencies: cache_directories: - ~/extras - ~/.dialyzer_core* - ~/.rebar - .rebar - .cache - ~/.cache pre: - sudo service mongodb stop - sudo service rabbitmq-server stop - sudo service cou...
machine: environment: PATH: ${HOME}/extras/bin:${HOME}/extras/otp/19.0/bin:${PATH} dependencies: cache_directories: - ~/extras - ~/.dialyzer_core* - ~/.rebar - .rebar - .cache - ~/.cache pre: - sudo service mongodb stop - sudo service rabbitmq-server stop - sudo service cou...
Upgrade Erlang for Circle CI to 19
Upgrade Erlang for Circle CI to 19
YAML
apache-2.0
GoelDeepak/minuteman,GoelDeepak/minuteman
3961c040b544a063834faf9da18a29b8ddb8b578
circle.yml
circle.yml
dependencies: override: - cabal update - cabal sandbox init - cabal install --upgrade-dependencies --constraint="template-haskell installed" --dependencies-only --enable-tests --reorder-goals --max-backjumps=-1 - cabal configure --enable-tests --flags=static machine: ghc: version: 7.10.1 deploym...
dependencies: override: - cabal update - cabal sandbox init - cabal install --upgrade-dependencies --constraint="template-haskell installed" --dependencies-only --enable-tests --reorder-goals --max-backjumps=-1 - cabal configure --enable-tests --flags=static machine: ghc: version: 7.10.2 deploym...
Upgrade GHC version in the hope of fixing CircleCI build
Upgrade GHC version in the hope of fixing CircleCI build
YAML
unlicense
philipmw/yesod-website
344cba565d1a49d1c0e642d55d1749cbee81f2cf
circle.yml
circle.yml
test: override: - npm test deployment: development: branch: dev heroku: appname: dev-clearjs production: branch: master heroku: appname: clearjs machine: node: version: iojs-v1.3.0
test: override: - npm test deployment: development: branch: dev heroku: appname: dev-clearjs production: branch: master heroku: appname: clearjs machine: node: version: iojs-v2.4.0
Check how much more time is needed for newer iojs.
Check how much more time is needed for newer iojs.
YAML
mit
clearjs/clearjs.com
969483e40c7f497a654a4572611cc66bffb70e40
circle.yml
circle.yml
dependencies: override: - printf '%s\n' color=false progress=false >.npmrc - rm -rf node_modules - case $CIRCLE_NODE_INDEX in 0) make setup ;; 1) nvm exec 4 make setup ;; 2) nvm install 6 && nvm exec 6 make setup ;; esac: parallel: true machine: node: version: 0.12.7 test: override: ...
dependencies: override: - printf '%s\n' color=false progress=false >.npmrc - rm -rf node_modules - case $CIRCLE_NODE_INDEX in 0) make setup ;; 1) nvm install 6 && nvm exec 6 make setup ;; 2) nvm install 7 && nvm exec 7 make setup ;; esac: parallel: true machine: node: version: 4 test: ov...
Replace Node 0.12 With Node 7 And Remove Node 0.10
Replace Node 0.12 With Node 7 And Remove Node 0.10
YAML
mit
plaid/sanctuary-int,plaid/sanctuary-int
b73c244bca3df3a36ceae59276318624f139a520
circle.yml
circle.yml
machine: python: version: 3.4.1 test: override: - python3.4 manage_development.py test --settings=gamecraft.settings
machine: python: version: 3.4.1 test: override: - python3.4 manage_development.py test --settings=gamecraft.settings deployment: staging: branch: master heroku: appname: gamecraft-it-eu
Add heroku deployment to master
Add heroku deployment to master
YAML
mit
micktwomey/gamecraft-mk-iii,micktwomey/gamecraft-mk-iii,micktwomey/gamecraft-mk-iii,micktwomey/gamecraft-mk-iii
0bd102566b46d742b54ba5fc63db83250122cf82
circle.yml
circle.yml
machine: node: version: "6.8.0" timezone: Asia/Tokyo dependencies: override: - yarn install test: override: - npm run test
machine: node: version: "6.8.0" timezone: Asia/Tokyo dependencies: override: - yarn install test: override: - npm run test - npm run flow - npm run lint
Make to run typecheking/linting in CI
Make to run typecheking/linting in CI
YAML
apache-2.0
kjirou/developers-defense,kjirou/developers-defense
9430ba8bd114aa033584b53092fc04e278ae2d60
circle.yml
circle.yml
machine: node: version: 4.0.0 test: pre: - nvm install lts && nvm use lts && npm test - nvm use node && npm test - snyk test
machine: node: version: 4.0.0 test: pre: - nvm use --lts && npm test - nvm use node && npm test - snyk test
Use LTS differently inside pre-test on Circle
Use LTS differently inside pre-test on Circle
YAML
mit
RafalWilinski/express-status-monitor,RafalWilinski/express-status-monitor
22fe816914cefe33a9d27f5424ba562726513992
circle.yml
circle.yml
machine: services: - docker environment: CGO_ENABLED: "0" GOOS: "linux" GOARCH: "amd64" GOPATH: "$HOME/go" GS_WD: "$HOME/go/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" dependencies: override: - sudo add-apt-repository ppa:masterm...
machine: environment: CGO_ENABLED: "0" GOOS: "linux" GOARCH: "amd64" GOPATH: "$HOME/go" GS_WD: "$HOME/go/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" dependencies: override: - sudo add-apt-repository ppa:masterminds/glide -y - sudo ap...
Remove docker service since we’re not using it
Remove docker service since we’re not using it
YAML
apache-2.0
giantswarm/k8scloudconfig,giantswarm/k8scloudconfig
cb5e3cfb3af72892dfc917311e59d495f6cdfd04
build/ansible/roles/ansible_master/tasks/main.yml
build/ansible/roles/ansible_master/tasks/main.yml
--- # These tasks set up an EC2 instance to be the ansible master - name: add the ansible ppa apt_repository: repo='ppa:ansible/ansible' - name: install packages apt: name={{ item }} state=latest with_items: - ansible - python-pip - git - name: install boto pip: name=boto state=latest - name: wr...
--- # These tasks set up an EC2 instance to be the ansible master - name: add the ansible ppa apt_repository: repo='ppa:ansible/ansible' - name: install packages apt: name={{ item }} state=latest with_items: - ansible - python-pip - git - name: install boto pip: name=boto state=latest - name: in...
Make sure boto3 is installed as well
Make sure boto3 is installed as well
YAML
mit
rsterbin/liturgicalendar,rsterbin/liturgicalendar,rsterbin/liturgicalendar
a022a8c14b9d80a4b912ddf318f59673adc7a930
src/main/resources/application.yml
src/main/resources/application.yml
spring: application: name: Configurator management: port: 8000
spring: application: name: Configurator management: port: 8000 context-path: /admin/actuator
Change context path of Actuator
Change context path of Actuator
YAML
apache-2.0
sandjelkovic/configurator,sandjelkovic/configurator,sandjelkovic/configurator
d60375bee62c41b285924c4d94917f19deb672aa
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: previ...
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: pre...
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
akshaykhale1992/akshaykhale1992.github.io,akshaykhale1992/akshaykhale1992.github.io,akshaykhale1992/akshaykhale1992.github.io,akshaykhale1992/akshaykhale1992.github.io
527a407b12c481394049295a6022e2d194598b67
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: true admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all - type: directory path: _deep-speeling-blog label: Deep Speeling create: all match: "**/*" upload_dir: uploads public_path: "/up...
--- new_page_extension: md auto_deploy: true admin_path: '' webhook_url: sections: - type: directory path: _deep-speeling-blog label: Deep Speeling Blog create: all match: "**/*" - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all - type: directory path: _deep-...
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
mdcramer/Deep-Speeling-Blog,mdcramer/Deep-Speeling-Blog,mdcramer/Deep-Speeling-Blog
d361d52f927953ddd14cf2a2a728ca1d31c27315
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: previ...
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all upload_dir: images public_path: "/images" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview...
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io
1d19b54c54589807cec17767bf011cf186084168
docker/config/alpharpc_config.yml
docker/config/alpharpc_config.yml
parameters: logger_client_handler_file: php://stdout logger_client_handler_level: 0 logger_worker_handler_file: php://stdout logger_worker_handler_level: 0 client_handler: tcp://0.0.0.0:61002 worker_handler: tcp://0.0.0.0:61003 client_handler_worker_handler: ipc:///home/alpharpc/alpharpc/ipc/alpharpc_c...
parameters: logger_client_handler_file: php://stdout logger_client_handler_level: 200 logger_worker_handler_file: php://stdout logger_worker_handler_level: 200 client_handler: tcp://0.0.0.0:61002 worker_handler: tcp://0.0.0.0:61003 client_handler_worker_handler: ipc:///home/alpharpc/alpharpc/ipc/alphar...
Increase the loglevel in Docker
Increase the loglevel in Docker To reduce the amount of repetitive loglines.
YAML
bsd-3-clause
alphacomm/alpharpc,alphacomm/alpharpc
69e0a6b48856f40958813663ff91eec736215c87
macos.conf.yaml
macos.conf.yaml
- shell: - mkdir -p ~/.gradle ~/Library/Caches/gradle/{caches,wrapper} && ln -fhs ~/Library/Caches/gradle/{caches,wrapper} ~/.gradle/ - mkdir -p ~/.groovy ~/Library/Caches/groovy/grapes && ln -fhs ~/Library/Caches/groovy/grapes ~/.groovy/ - mkdir -p ~/.ivy2 ~/Library/Caches/ivy2/cache && ln -fhs ~/Library/Caches/...
- shell: - mkdir -p ~/.gradle ~/Library/Caches/gradle/{caches,wrapper} && ln -fhs ~/Library/Caches/gradle/{caches,wrapper} ~/.gradle/ - mkdir -p ~/.groovy ~/Library/Caches/groovy/grapes && ln -fhs ~/Library/Caches/groovy/grapes ~/.groovy/ - mkdir -p ~/.ivy2 ~/Library/Caches/ivy2/cache && ln -fhs ~/Library/Caches/...
Create sbt cache dir before link
Create sbt cache dir before link
YAML
mit
celkins/dotfiles,celkins/dotfiles
e7f981738eade868811539631b0377b6c8b4c2b4
generators/server/templates/_travis.yml
generators/server/templates/_travis.yml
language: node_js node_js: - "0.12" sudo: false before_install: npm install -g gulp install: npm install before_script: gulp build notifications: webhooks: on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: ...
language: node_js node_js: - "4.4.3" sudo: false before_install: npm install -g gulp install: npm install before_script: gulp build notifications: webhooks: on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start:...
Update Node.js version of generated .travis.yml
Update Node.js version of generated .travis.yml .travis.yml file is currently being generated with Node.js version 0.12, which is outdated and does not build correctly. Current LTS version is 4.4.3
YAML
apache-2.0
sohibegit/generator-jhipster,ctamisier/generator-jhipster,atomfrede/generator-jhipster,dalbelap/generator-jhipster,ruddell/generator-jhipster,danielpetisme/generator-jhipster,dynamicguy/generator-jhipster,deepu105/generator-jhipster,sendilkumarn/generator-jhipster,jhipster/generator-jhipster,dimeros/generator-jhipster,...
8e9a3cc4ee2c57fea1d84f13f162ef03b76fdcf7
app/config/config_dev.yml
app/config/config_dev.yml
imports: - { resource: config.yml } framework: router: { resource: '%kernel.root_dir%/config/routing_dev.yml' } profiler: { only_exceptions: false } swiftmailer: disable_delivery: true web_profiler: toolbar: true intercept_redirects: false monolog: handlers: main: t...
imports: - { resource: config.yml } framework: router: { resource: '%kernel.root_dir%/config/routing_dev.yml' } profiler: { only_exceptions: false } swiftmailer: disable_delivery: true web_profiler: toolbar: true intercept_redirects: false monolog: handlers: main: t...
Exclude events from dev log
Exclude events from dev log
YAML
mit
alcohol/packagist,Soullivaneuh/packagist,interactive-investor-ltd/packagist,composer/packagist,alcohol/packagist,rhl-jfm/packagist,gencer/packagist,interactive-investor-ltd/packagist,roundcube/plugins.roundcube.net,composer/packagist,interactive-investor-ltd/packagist,interactive-investor-ltd/packagist,Soullivaneuh/pac...
00618b1e85e466666e8cf1ed0b7d80fd0ebbad1b
tasks/run-unit-tests-for-jruby.yml
tasks/run-unit-tests-for-jruby.yml
--- platform: linux image_resource: type: docker-image source: repository: cloudfoundry/cflinuxfs2 inputs: - name: build-tar run: path: bash args: ["-c", "apt-get update && apt-get install -y openjdk-7-jdk maven ant && tar xzf build-tar/binary-builder-source.tgz -C /tmp && cd /tmp/x86_64-l...
--- platform: linux image_resource: type: docker-image source: repository: cloudfoundry/cflinuxfs2 inputs: - name: build-tar run: path: bash args: ["-c", "apt-get update && apt-get install -y openjdk-7-jdk ant && tar xzf build-tar/binary-builder-source.tgz -C /tmp && cd /tmp && wget https:...
Install correct version of maven
Install correct version of maven - apt-get was installing the wrong version of maven, so the tests weren't running. Now they should run and pass. [#113122547]
YAML
apache-2.0
cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,orange-cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,orange-cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,orange-cloudfoundry/buildpacks-ci
06be0255f3affaa36a8663d25c6bebe017c3d307
hieradata/common/roles/novactrl.yaml
hieradata/common/roles/novactrl.yaml
--- include: default: - profile::openstack::novactrl - profile::logging::rsyslog::client - profile::openstack::openrc - profile::openstack::resource::host_aggregate profile::openstack::compute::api::manage_firewall: true profile::openstack::novactrl::enable_api: true profile::openstack::no...
--- include: default: - profile::openstack::novactrl - profile::logging::rsyslog::client - profile::openstack::openrc - profile::openstack::resource::host_aggregate profile::openstack::compute::api::manage_firewall: true profile::openstack::novactrl::enable_api: true profile::openstack::no...
Use newton for rdo packages
Use newton for rdo packages
YAML
apache-2.0
norcams/himlar,mikaeld66/himlar,raykrist/himlar,norcams/himlar,TorLdre/himlar,raykrist/himlar,mikaeld66/himlar,raykrist/himlar,TorLdre/himlar,norcams/himlar,mikaeld66/himlar,raykrist/himlar,TorLdre/himlar,tanzr/himlar,mikaeld66/himlar,tanzr/himlar,TorLdre/himlar,raykrist/himlar,tanzr/himlar,tanzr/himlar,mikaeld66/himla...
9ae98d683e2ad9e5d416a2354941eab0dbc62aa0
packages/hf/hformat.yaml
packages/hf/hformat.yaml
homepage: http://github.com/mvoidex/hformat changelog-type: '' hash: 9a45592f7b89739b84322a5a5883db49fbfed8256f4bac134f8af86f6cb36558 test-bench-deps: base-unicode-symbols: ! '>=0.2' base: ! '>=4.8 && <5' hspec: -any text: ! '>=1.2.1' hformat: -any maintainer: voidex@live.com synopsis: Simple Haskell formatti...
homepage: http://github.com/mvoidex/hformat changelog-type: '' hash: d44e81abdf151b213ff8e3e2abfe45a758563ed4958c8b87a5b2761efa5aaf6e test-bench-deps: base-unicode-symbols: ! '>=0.2' base: ! '>=4.8 && <5' hspec: -any text: ! '>=1.2.1' hformat: -any maintainer: voidex@live.com synopsis: Simple Haskell formatti...
Update from Hackage at 2017-04-23T21:44:23Z
Update from Hackage at 2017-04-23T21:44:23Z
YAML
mit
commercialhaskell/all-cabal-metadata
56488a78f3f7be57bf9c82f517fd3109e4b2409b
packages/mo/mockery.yaml
packages/mo/mockery.yaml
homepage: '' changelog-type: '' hash: dee71deb929622f892069a1d1b11cb05425d1773ec18f2efdc81f5773d78c3ba test-bench-deps: bytestring: -any logging-facade: -any base: ==4.* hspec: ==2.* filepath: -any mockery: -any temporary: -any directory: -any maintainer: Simon Hengel <sol@typeful.net> synopsis: Support...
homepage: '' changelog-type: '' hash: e4cf319964b5af0b70f1ad3033d5833a638c8be68b2a0be13a15c4c00d0f28af test-bench-deps: bytestring: -any logging-facade: -any base: ==4.* hspec: ==2.* filepath: -any mockery: -any temporary: -any directory: -any maintainer: Simon Hengel <sol@typeful.net> synopsis: Support...
Update from Hackage at 2015-08-08T03:18:40+0000
Update from Hackage at 2015-08-08T03:18:40+0000
YAML
mit
commercialhaskell/all-cabal-metadata
09f484f3c54a23999d8edd3604941e5897f14437
glide.yaml
glide.yaml
# Glide YAML configuration file # Set this to your fully qualified package name, e.g. # github.com/Masterminds/foo. This should be the # top level package. package: github.com/redsift/go-beanspike # Declare your project's dependencies. import: - package: github.com/aerospike/aerospike-client-go repo: https://...
# Glide YAML configuration file # Set this to your fully qualified package name, e.g. # github.com/Masterminds/foo. This should be the # top level package. package: github.com/redsift/go-beanspike # Declare your project's dependencies. import: - package: github.com/aerospike/aerospike-client-go ref: v1.18.0 ...
Revert "need to debug aerospike-go-client"
Revert "need to debug aerospike-go-client" This reverts commit 258752c49db40c90c3d10204db04eb4759d6e24a.
YAML
bsd-3-clause
Redsift/go-beanspike
2ba036a7131ab8cf57217d62de2bd3f2c9d329f6
manifest.yml
manifest.yml
--- language: staticfile exclude_files: - .git/ - .gitignore - .gitmodules - .rspec - cf_spec/ - log/ - test/ - buildpack-packager/ - staticfile_buildpack-*v*.zip url_to_dependency_map: - match: nginx.tgz name: nginx version: 1.9.13 dependencies: - name: nginx version: 1.9.13 ur...
--- language: staticfile exclude_files: - .git/ - .gitignore - .gitmodules - .rspec - cf_spec/ - log/ - test/ - buildpack-packager/ - staticfile_buildpack-*v*.zip url_to_dependency_map: - match: nginx.tgz name: nginx version: 1.9.14 dependencies: - name: nginx version: 1.9.14 ur...
Add nginx 1.9.14, remove nginx 1.9.13
Add nginx 1.9.14, remove nginx 1.9.13 [#116842725] Signed-off-by: David Jahn <ea2208fe99a56ed20c9ae20b0a1446b61f13a269@gmail.com>
YAML
mit
sks/staticfile-buildpack,SaberZaabouti/myBuildpack,jockhip12/mybuildpack,jockhip12/mybuildpack,SaberZaabouti/myBuildpack,dhaywael/static-buildpack,SaberZaabouti/myBuildpack,cloudfoundry/staticfile-buildpack,dhaywael/static-buildpack,SaberZaabouti/myBuildpack,cloudfoundry/staticfile-buildpack,dhaywael/static-buildpack,s...
9578bcb8d06a691eb600c29b9ce50a7b9f24a52d
roles/python-dev/vars/main.yml
roles/python-dev/vars/main.yml
user_pip_packages: - ipython - black python_versions: - 3.7.2 - 2.7.15 global_python_version: "3.7.2 2.7.15"
user_pip_packages: - ipython - black python_versions: - 3.10.4 global_python_version: "3.10.4"
Install only Python 3.10.4 using pyenv
Install only Python 3.10.4 using pyenv
YAML
mit
renanivo/playbooks
2f507b70c08ce17d98d0b6a15363f12f5b03ee3d
recipes/gitdb2/meta.yaml
recipes/gitdb2/meta.yaml
{% set version = "2.0.2" %} {% set sha256 = "f2e36d7561e91f30a6a44858756dc020d8f1e81ca6e4185979d5c6c24c648070" %} package: name: gitdb version: {{ version }} source: fn: gitdb-{{ version }}.tar.gz url: https://pypi.io/packages/source/g/gitdb2/gitdb2-{{ version }}.tar.gz sha256: {{ sha256 }} build: number...
{% set version = "2.0.2" %} {% set sha256 = "f2e36d7561e91f30a6a44858756dc020d8f1e81ca6e4185979d5c6c24c648070" %} package: name: gitdb2 version: {{ version }} source: fn: gitdb2-{{ version }}.tar.gz url: https://pypi.io/packages/source/g/gitdb2/gitdb2-{{ version }}.tar.gz sha256: {{ sha256 }} build: numb...
Fix package name to gitdb2
Fix package name to gitdb2
YAML
bsd-3-clause
glemaitre/staged-recipes,patricksnape/staged-recipes,rmcgibbo/staged-recipes,conda-forge/staged-recipes,guillochon/staged-recipes,NOAA-ORR-ERD/staged-recipes,chohner/staged-recipes,grlee77/staged-recipes,rvalieris/staged-recipes,glemaitre/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,sodre/staged-r...
a94b8f961205c8cd092efa3a534253c915564b16
config/prisons/EVI-everthorpe.yml
config/prisons/EVI-everthorpe.yml
--- name: Everthorpe nomis_id: EVI address: - 1a Beck Road - HU15 1RB email: socialvisits.everthorpe@hmps.gsi.gov.uk enabled: true estate: Everthorpe phone: 01430 426505 slots: fri: - 1415-1615 mon: - 1415-1615 sat: - 1400-1600 sun: - 0930-1130 - 1400-1600 thu: - 1415-1615 unbookable: - 2014-12-25...
--- name: Everthorpe nomis_id: EVI address: - 1a Beck Road - HU15 1RB email: socialvisits.everthorpe@hmps.gsi.gov.uk enabled: true estate: Everthorpe phone: 01430 426505 slot_anomalies: 2015-12-23: - 0930-1130 - 1400-1600 slots: fri: - 1415-1615 mon: - 1415-1615 sat: - 1400-1600 sun: - 0930-1130 ...
Update Everthorpe (Humber) Christmas visit slots
Update Everthorpe (Humber) Christmas visit slots Unbookable: Christmas Day Additional visits: - 23rd December 0930-1130 and 1400-1600
YAML
mit
ministryofjustice/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits
6cc2a5d8bcbed43eeb1acc4e0f21cd32830b7df8
models/brand/fields.yaml
models/brand/fields.yaml
fields: name: label: Name span: left type: text required: true logo: label: Logo span: right type: fileupload mode: image imageWidth: 160 imageHeight: 160 is_published: label: Published? span: left type: ...
fields: name: label: Name span: left type: text required: true logo: label: Logo span: right type: fileupload mode: image imageWidth: 160 imageHeight: 160 thumbOptions: mode: auto is_published: label:...
Add thumbOptions to set auto mode
Add thumbOptions to set auto mode
YAML
mit
octommerce/octommerce,octommerce/octommerce,octommerce/octommerce
4d779eb976731d5c60fff6bbac21ed5b02f99eef
.github/workflows/deployBaserates.yaml
.github/workflows/deployBaserates.yaml
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Deploy Baserates on: push: branches: [ baserates ] j...
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Deploy Baserates on: push: branches: [ baserates, de...
Deploy to baserates from devel
Deploy to baserates from devel
YAML
mit
Discordius/Lesswrong2,Discordius/Lesswrong2,Discordius/Lesswrong2,Discordius/Lesswrong2
dbe01c2068d636631c6be622a48e83a413387c20
contrib/charts/pebble/values.yaml
contrib/charts/pebble/values.yaml
replicaCount: 1 image: repository: quay.io/munnerz/pebble tag: "20180323" pullPolicy: IfNotPresent service: type: ClusterIP resources: {} # limits: # cpu: 100m # memory: 128Mi # requests: # cpu: 100m # memory: 128Mi
replicaCount: 1 image: repository: quay.io/munnerz/pebble tag: "20180725" pullPolicy: IfNotPresent service: type: ClusterIP resources: {} # limits: # cpu: 100m # memory: 128Mi # requests: # cpu: 100m # memory: 128Mi
Update pebble to latest in e2e tests
Update pebble to latest in e2e tests
YAML
apache-2.0
jetstack/cert-manager,jetstack-experimental/cert-manager,cert-manager/cert-manager,jetstack/cert-manager,jetstack-experimental/cert-manager,jetstack-experimental/cert-manager,cert-manager/cert-manager,cert-manager/cert-manager,jetstack/cert-manager
7def89422ddcd94e245cb29543bacb96aa4e65f8
.drone.yml
.drone.yml
--- image: bradrydzewski/python:2.7 services: - mongodb:3.0.1 script: - sudo apt-get update > /dev/null - "sudo DEBIAN_FRONTEND='noninteractive' apt-get install -y libsasl2-dev libssl-dev rsyslog > /dev/null" - sudo /usr/sbin/rsyslogd > /dev/null - python -m pip install --upgrade setuptools > /dev/null - ...
--- image: bradrydzewski/python:2.7 services: - mongodb:2.6 script: - sudo apt-get update > /dev/null - "sudo DEBIAN_FRONTEND='noninteractive' apt-get install -y libsasl2-dev libssl-dev rsyslog > /dev/null" - sudo /usr/sbin/rsyslogd > /dev/null - python -m pip install --upgrade setuptools > /dev/null - pi...
Change mongo version back as the version is not the issue causing the failed build
Change mongo version back as the version is not the issue causing the failed build
YAML
apache-2.0
oldarmyc/anchor,oldarmyc/anchor,oldarmyc/anchor
a042cd163af8164dd56164175900afef8787c51c
.drone.yml
.drone.yml
kind: pipeline name: default steps: - name: restore-cache image: drillster/drone-volume-cache pull: true when: event: [push, pull_request, tag, deployment] volumes: - name: cache path: /cache settings: restore: true mount: - ./node_modules - name: setup ...
kind: pipeline name: default steps: - name: restore-cache image: drillster/drone-volume-cache pull: true when: event: [push, pull_request, tag, deployment] volumes: - name: cache path: /cache settings: restore: true mount: - ./node_modules - name: setup ...
Make Drone use yarn instead of NPM
Make Drone use yarn instead of NPM
YAML
mit
dotKom/glowing-fortnight,dotKom/glowing-fortnight
d7c54fa19fddfd531a2f7436097dddf12188ebdf
.drone.yml
.drone.yml
image: neikos/waysome_fedora script: - git pull --no-commit origin $DRONE_BRANCH - cmake -DHARD_MODE=ON . - make - ctest -VV
image: neikos/waysome_fedora script: - git config user.email "drone@localdomain" - git config user.name "drone build script" - git pull --no-commit origin $DRONE_BRANCH - cmake -DHARD_MODE=ON . - make - ctest -VV
Set user name and email, so git merge doesn't throw an error
Set user name and email, so git merge doesn't throw an error
YAML
lgpl-2.1
waysome/waysome,waysome/waysome
4cca24dffeb641d9452a749bfc96d8601fa0063f
.zuul.yaml
.zuul.yaml
- project: templates: - check-requirements - openstack-python3-zed-jobs - release-notes-jobs-python3
- project: templates: - check-requirements - openstack-python3-antelope-jobs - release-notes-jobs-python3
Add Python3 antelope unit tests
Add Python3 antelope unit tests This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for antelope. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: I99bb28c13d4db6bfb328698336578...
YAML
apache-2.0
openstack/blazar-nova,openstack/blazar-nova
41d2386b88c5aa6fa5cdacda58a67c42210dc383
.github/workflows/issue-planned.yml
.github/workflows/issue-planned.yml
name: Mark issue as planned on: issues: types: [ milestoned ] jobs: apply-label: runs-on: ubuntu-20.04 steps: - uses: actions/github-script@v4 name: Add label 'status planned' to issue when milestoned with: github-token: ${{github.token}} script: | ...
name: Mark issue as planned on: issues: types: [ milestoned ] jobs: apply-label: runs-on: ubuntu-20.04 steps: - uses: actions/github-script@v4 name: Add label 'status planned' to issue when milestoned with: github-token: ${{github.token}} script: | ...
Add planned label and remove new label on milestoned
Add planned label and remove new label on milestoned
YAML
apache-2.0
synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung
00b4b231463b1548251139d755c57365af412e56
.github/workflows/publish_conda.yml
.github/workflows/publish_conda.yml
# https://docs.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions # # Contributors to the evolution of this form: # # sunqm # fishjojo # mjw99 # yangcal # maxscheurer # name: Build and Publish Conda Package on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} ...
# https://docs.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions # # Contributors to the evolution of this form: # # sunqm # fishjojo # mjw99 # yangcal # maxscheurer # name: Build and Publish Conda Package on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} ...
Build the non python libs
Build the non python libs
YAML
apache-2.0
sunqm/pyscf,sunqm/pyscf,sunqm/pyscf,sunqm/pyscf
54f39bbc9ad281046f9ecf4f631b41e01faab453
.github/workflows/run-all-tests.yml
.github/workflows/run-all-tests.yml
name: run-all-tests on: push: branches: - main jobs: run-tests: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2.4.2 - name: Setup CMake uses: jwlawson/actions-setup-cmake@v1.12 with: cmake-version: '3.23.x' - name: Build ...
name: run-all-tests on: [push] jobs: run-tests: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2.4.2 - name: Setup CMake uses: jwlawson/actions-setup-cmake@v1.12 with: cmake-version: '3.23.x' - name: Build CMake project run: |...
Tweak GA workflow to run all tests.
Tweak GA workflow to run all tests.
YAML
mit
kartikkumar/cppbase
5325400a207bccd00cd011b27736d7847a042d17
packages/ac/acquire.yaml
packages/ac/acquire.yaml
homepage: https://github.com/metrix-ai/acquire changelog-type: '' hash: 641ad54e88b7d8d223dce5937757bc1d571d11d71e024656355d6c27d756d711 test-bench-deps: {} maintainer: Metrix.AI Ninjas <ninjas@metrix.ai> synopsis: Abstraction over management of resources changelog: '' basic-deps: base: ! '>=4.7 && <5' all-versions: ...
homepage: https://github.com/metrix-ai/acquire changelog-type: '' hash: ff6071c6caeecafbe2b4e68dd6bb18c6ce5497f9add70335d4efdedb006c15c6 test-bench-deps: {} maintainer: Metrix.AI Ninjas <ninjas@metrix.ai> synopsis: Abstraction over management of resources changelog: '' basic-deps: base: ! '>=4.9 && <5' all-versions: ...
Update from Hackage at 2018-09-30T21:55:32Z
Update from Hackage at 2018-09-30T21:55:32Z
YAML
mit
commercialhaskell/all-cabal-metadata
7ba5a823b11cc792a2606ec3628575742630ad72
packages/gi/git-all.yaml
packages/gi/git-all.yaml
homepage: https://github.com/jwiegley/git-all changelog-type: '' hash: a4feaad3a04526147526cd667da05b4a4d2d144090fcf41f8f7eef08c44bb8c5 test-bench-deps: {} maintainer: John Wiegley <johnw@newartisans.com> synopsis: Determine which Git repositories need actions to be taken changelog: '' basic-deps: shelly: -any unix...
homepage: https://github.com/jwiegley/git-all changelog-type: '' hash: ce398276ef1446340ddb558f012e617a41113ab6bf2c2643b54dfa93e3e9f454 test-bench-deps: {} maintainer: John Wiegley <johnw@newartisans.com> synopsis: Determine which Git repositories need actions to be taken changelog: '' basic-deps: shelly: -any unix...
Update from Hackage at 2018-06-01T17:55:49Z
Update from Hackage at 2018-06-01T17:55:49Z
YAML
mit
commercialhaskell/all-cabal-metadata
c2e33c2ae41d976a4da860f7d1127b449bda44b0
circle.yml
circle.yml
machine: environment: PATH: "/usr/local/go/bin:/usr/local/go_workspace/bin:~/.go_workspace/bin:${PATH}" dependencies: override: - mkdir -p ~/.go_project/src/github.com/${CIRCLE_PROJECT_USERNAME} - ln -s ${HOME}/${CIRCLE_PROJECT_REPONAME} ${HOME}/.go_project/src/github.com/${CIRCLE_PROJECT_USERNAME}/${C...
machine: environment: PATH: "/usr/local/go/bin:/usr/local/go_workspace/bin:~/.go_workspace/bin:${PATH}" dependencies: override: - mkdir -p ~/.go_project/src/github.com/${CIRCLE_PROJECT_USERNAME} - ln -s ${HOME}/${CIRCLE_PROJECT_REPONAME} ${HOME}/.go_project/src/github.com/${CIRCLE_PROJECT_USERNAME}/${C...
Fix file var in for loop
Fix file var in for loop
YAML
apache-2.0
galexrt/srcds_exporter
9db3e8681c2d41fb65e8b675ef853b6dd161ff41
circle.yml
circle.yml
machine: python: version: 2.7.9 node: version: 4.3.1 dependencies: pre: - pip install robotframework==3.0 - pip install robotframework-requests==0.4.4 - pip install robotframework-selenium2library==1.7.4 # Clean out node-modules to prevent issues with circle-ci's caching. - rm -rf no...
machine: python: version: 2.7.9 node: version: 4 dependencies: pre: - pip install robotframework==3.0 - pip install robotframework-requests==0.4.4 - pip install robotframework-selenium2library==1.7.4 # Clean out node-modules to prevent issues with circle-ci's caching. - rm -rf node_m...
Use latest version of Node LTS
Use latest version of Node LTS
YAML
mit
tammytle/spiegel,JamesHageman/rangle-elm-starter,rangle/react-redux-starter,tammytle/spiegel,rangle/react-redux-starter,JamesHageman/redux-datagrid,rangle/react-redux-starter,JamesHageman/redux-datagrid,JamesHageman/rangle-elm-starter,JamesHageman/rangle-elm-starter,rangle/react-redux-starter,JamesHageman/rangle-elm-st...
013f433eb7aaccc5182735419544375d54b1bf58
circle.yml
circle.yml
# https://circleci.com/docs/configuration#machine machine: php: # https://circleci.com/docs/environment#php version: 7.0.7 environment: TERMINUS_SITE: ci-example-drops-8 TERMINUS_ENV: ci-$CIRCLE_BUILD_NUM MULTIDEV_DELETE_PATTERN: ^ci- PATH: $PATH:~/.composer/vendor/bin dependencies: cache...
# https://circleci.com/docs/configuration#machine machine: php: # https://circleci.com/docs/environment#php version: 7.0.7 environment: TERMINUS_SITE: ci-drops-8 TERMINUS_ENV: cr-$CIRCLE_BUILD_NUM MULTIDEV_DELETE_PATTERN: ^cr- PATH: $PATH:~/.composer/vendor/bin dependencies: cache_directo...
Use the same ci-drops-8 site to test this project.
Use the same ci-drops-8 site to test this project.
YAML
mit
ISO-tech/sw-d8,stevector/example-wordpress-composer,ISO-tech/sw-d8,ksu-aaf/fd-pod,ISO-tech/sw-d8,stevector/example-wordpress-composer,ksu-aaf/fd-pod,ISO-tech/sw-d8
0e078e7f1456f16a41d962d48e49742142dfad76
circle.yml
circle.yml
machine: python: version: 3.5.2 dependencies: override: - pip3 install --upgrade pip setuptools test: override: - python3 setup.py test
machine: python: version: 3.5.2 dependencies: override: - pip3 install --upgrade pip setuptools - python3 setup.py test --addopts --collect-only cache_directories: - .eggs test: override: - python3 setup.py test
Install deps in dependencies section & cache deps
Install deps in dependencies section & cache deps
YAML
mit
ismail-s/Matasano-Crypto-Solutions
55aa330248f8fec6cbfdbdd251ca8f79442d72e4
bcbio-nextgen/meta.yaml
bcbio-nextgen/meta.yaml
package: name: bcbio-nextgen version: '0.9.6a' build: number: 100 source: git_url: https://github.com/chapmanb/bcbio-nextgen.git git_tag: master requirements: build: - python - setuptools run: - python - arrow - azure-sdk-for-python - bioblend - biopython - boto - ...
package: name: bcbio-nextgen version: '0.9.6a' build: number: 100 source: git_url: https://github.com/chapmanb/bcbio-nextgen.git git_tag: master requirements: build: - python - setuptools run: - python - arrow - azure-sdk-for-python - bioblend - biopython - boto - ...
Add libgfortran to bcbio-nextgen requirements
Add libgfortran to bcbio-nextgen requirements Fix "libgfortran.so.1: cannot open shared object file" issue
YAML
mit
alexandrucoman/bcbio-dev-conda,alexandrucoman/bcbio-dev-conda
8dbc253d8fdc5ec45901bb490f46e1b3e0ff8306
circle.yml
circle.yml
machine: java: version: openjdk8 environment: TERM: dumb dependencies: cache_directories: - "~/.m2" - "~/.gradle" test: override: - ./gradlew build
machine: java: version: openjdk8 environment: TERM: dumb dependencies: pre: - rm -f ~/.gradle/caches/modules-2/modules-2.lock - rm -rf ~/.gradle/caches/*/{file-changes,fileHashes,plugin-resolution,scripts,scripts-remapped,gradle-script-kotlin}/ cache_directories: - "~/.gradle/caches/" -...
Use Travis setup in CircleCI
Use Travis setup in CircleCI
YAML
mit
DemonWav/IntelliJBukkitSupport,DemonWav/MinecraftDev,DemonWav/MinecraftDevIntelliJ,minecraft-dev/MinecraftDev,DemonWav/MinecraftDevIntelliJ,minecraft-dev/MinecraftDev,DemonWav/MinecraftDev,minecraft-dev/MinecraftDev,DemonWav/MinecraftDevIntelliJ,DemonWav/MinecraftDev
496ddf7f46e38e43dff9b3275a218b63d652dcf5
circle.yml
circle.yml
dependencies: pre: - npm install -g cypress-cli test: override: - npm test - npm start -- --silent background: true - cypress ci # requires CYPRESS_CI_KEY (https://docs.cypress.io/docs/continuous-integration#section-acquire-a-cypress-secret-key)
dependencies: pre: - npm install -g cypress-cli - npm install -g forever test: override: - npm test - forever start server.js - cypress ci # requires CYPRESS_CI_KEY (https://docs.cypress.io/docs/continuous-integration#section-acquire-a-cypress-secret-key)
Use forever package to run node in the background for cypress
Use forever package to run node in the background for cypress
YAML
mit
ilmoraunio/mamk-demo-automation-testing,ilmoraunio/mamk-demo-automation-testing
ceacc55eee5fb069265f4113e32ed83e49bd11c4
updates/version.yaml
updates/version.yaml
1.0.1: First version of ClearCacheWidget 1.0.2: Translate for brazilian portuguese 1.0.3: Fix support multiple widgets on the dashboard
1.0.1: First version of ClearCacheWidget 1.0.2: Translate for brazilian portuguese 1.0.3: Fix support multiple widgets on the dashboard
Fix support multiple widgets on the dashboard
Fix support multiple widgets on the dashboard
YAML
mit
romanov-acc/octobercms_clearcachewidget,romanov-acc/octobercms_clearcachewidget
0fe786263d67cc355a12d50d0a70263637cd49e7
packages/ca/cardano-coin-selection.yaml
packages/ca/cardano-coin-selection.yaml
homepage: https://github.com/input-output-hk/cardano-coin-selection#readme changelog-type: markdown hash: 3d965d9b01ef6f61b31e34ccf18aedb44611b9e3a56a4e094e3027e15c7e7ac5 test-bench-deps: quiet: -any cardano-coin-selection: -any fmt: -any bytestring: -any base: '>=4.7 && <5' hspec: -any text: -any memor...
homepage: https://github.com/input-output-hk/cardano-coin-selection#readme changelog-type: markdown hash: 810e0984b5bd369aa3ef235a37cc10ed3fde959645a7dce940ca5a8cb00eb5b1 test-bench-deps: quiet: -any cardano-coin-selection: -any fmt: -any bytestring: -any base: '>=4.7 && <5' hspec: -any text: -any memor...
Update from Hackage at 2020-05-06T09:28:52Z
Update from Hackage at 2020-05-06T09:28:52Z
YAML
mit
commercialhaskell/all-cabal-metadata
2897656c69d1706fd1e4b7044eed50106044e44c
.github/workflows/update-assets-manifest.yml
.github/workflows/update-assets-manifest.yml
name: Update assets-manifest on: push: branches: - "dependabot/npm_and_yarn/**" workflow_dispatch: jobs: build: name: Update assets-manifest runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 with: persist-credentials: false ...
name: Update assets-manifest on: pull_request_target: branches: - "dependabot/npm_and_yarn/**" workflow_dispatch: jobs: build: name: Update assets-manifest runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 with: persist-crede...
Change to pull_request_target without own pat
Change to pull_request_target without own pat
YAML
apache-2.0
synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung
b259d7c5f3be0e618e3748cd783bdc4c2a68b5e6
.appveyor.yml
.appveyor.yml
environment: matrix: - TARGET: x86_64-pc-windows-msvc - TARGET: i686-pc-windows-msvc - TARGET: x86_64-pc-windows-gnu - TARGET: i686-pc-windows-gnu install: - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-host %TARGET% - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin ...
environment: matrix: - TARGET: x86_64-pc-windows-msvc - TARGET: i686-pc-windows-msvc - TARGET: x86_64-pc-windows-gnu - TARGET: i686-pc-windows-gnu install: - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-host %TARGET% - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin ...
Stop Appveyor from building PRs twice
Stop Appveyor from building PRs twice
YAML
apache-2.0
seanmonstar/reqwest
695a820473eaa0370e4e076c29a9e7df60ff3f9e
.github/workflows/bazel-build.yml
.github/workflows/bazel-build.yml
name: "Test Bazel Build" on: push: branches: [ master ] pull_request: branches: [ master ] schedule: - cron: "0 0 * * *" jobs: build: runs-on: ubuntu-latest env: BAZEL: bazelisk-linux-amd64 steps: - uses: actions/checkout@v2 with: submodules: recursive ...
name: "Test Bazel Build" on: push: branches: [ master ] pull_request: branches: [ master ] schedule: - cron: "0 0 * * *" jobs: build: runs-on: ubuntu-latest env: BAZEL: bazelisk-linux-amd64 steps: - uses: actions/checkout@v2 with: submodules: recursive ...
Discard existing Bazel cache for Github build
Discard existing Bazel cache for Github build There seems to be a Bazel issue which can be resolved by expunging the cache: bazelbuild/bazel#9213
YAML
apache-2.0
p4lang/PI,p4lang/PI,p4lang/PI,p4lang/PI
ba788d3b7a88b7ec605e279e249c392c27339dd2
.github/workflows/close_stale.yml
.github/workflows/close_stale.yml
name: "Close stale issues" on: schedule: - cron: "0 0 * * *" jobs: stale: runs-on: ubuntu-latest steps: - uses: actions/stale@v3.0.18 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove ...
name: "Close stale issues" on: schedule: - cron: "0 0 * * *" jobs: stale: runs-on: ubuntu-latest steps: - uses: actions/stale@v3.0.19 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove ...
Update actions/stale action to v3.0.19
Update actions/stale action to v3.0.19
YAML
apache-2.0
dropwizard/dropwizard,phambryan/dropwizard,dropwizard/dropwizard,dropwizard/dropwizard,phambryan/dropwizard,phambryan/dropwizard
526764c74e23755878f05e49775e9b6384a37bc7
.github/workflows/dotnet-core.yml
.github/workflows/dotnet-core.yml
name: .NET Core Builds on: push: branches: [ dev ] pull_request: branches: [ dev ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup .NET 5.0 uses: actions/setup-dotnet@v1 with: dotnet-version: 5.0.202 - name: Setup .NET Core 3...
name: .NET Core Builds on: push: branches: [ dev ] pull_request: branches: [ dev ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup .NET 5.0 uses: actions/setup-dotnet@v1 with: dotnet-version: 5.0.202 - name: Setup .NET Core 3...
Fix typo in github build action
Fix typo in github build action
YAML
apache-2.0
AltaModaTech/netcore-extensions
360876871852a33f8d74da02854d56bf970d7f55
.github/workflows/pmg-testing.yml
.github/workflows/pmg-testing.yml
name: Pymatgen testing on: [push] jobs: build: strategy: max-parallel: 6 matrix: os: [ubuntu-latest, macOS-latest] python-version: [3.6, 3.7] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} u...
name: Pymatgen testing on: [push] jobs: build: strategy: max-parallel: 6 matrix: os: [ubuntu-latest, macOS-latest] python-version: [3.6, 3.7] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} u...
Fix to use single quotes for string literal
Fix to use single quotes for string literal
YAML
mit
mbkumar/pymatgen,gVallverdu/pymatgen,tschaume/pymatgen,mbkumar/pymatgen,davidwaroquiers/pymatgen,gVallverdu/pymatgen,richardtran415/pymatgen,gVallverdu/pymatgen,vorwerkc/pymatgen,gmatteo/pymatgen,vorwerkc/pymatgen,richardtran415/pymatgen,mbkumar/pymatgen,vorwerkc/pymatgen,fraricci/pymatgen,davidwaroquiers/pymatgen,tsch...
f4b85534e1e28c99633c5b1a57f6e1ccd6b39886
.github/workflows/python-test.yml
.github/workflows/python-test.yml
name: Test python package on: [push] jobs: build-linux: runs-on: ubuntu-latest strategy: max-parallel: 1 matrix: python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-pyt...
name: Test python package on: [push] jobs: build-linux: runs-on: ubuntu-latest strategy: max-parallel: 1 matrix: python-version: [3.4, 3.5, 3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v...
Remove 2.7 from python-version matrix
Remove 2.7 from python-version matrix
YAML
mit
mick88/samp-client
636a78d0fd7944014e1898c7370cb8f3ac489024
.fixtures.yml
.fixtures.yml
fixtures: repositories: "stdlib": "git://github.com/puppetlabs/puppetlabs-stdlib.git" "inifile": "git://github.com/puppetlabs/puppetlabs-inifile" "keystone": "git://github.com/stackforge/puppet-keystone.git" "mysql": repo: "git://github.com/puppetlabs/puppetlabs-mysql.git" ref: 'origin/0....
fixtures: repositories: "stdlib": "git://github.com/puppetlabs/puppetlabs-stdlib.git" "inifile": "git://github.com/puppetlabs/puppetlabs-inifile" "keystone": "git://github.com/stackforge/puppet-keystone.git" "mysql": repo: "git://github.com/puppetlabs/puppetlabs-mysql.git" ref: 'origin/0....
Update remote url for puppet-vswitch
Update remote url for puppet-vswitch Change-Id: Ieffc717df0c796dbd90ab5c8bc38426ed0d9bc17
YAML
apache-2.0
aldavud/puppet-neutron,hkumarmk/puppet-neutron,openstack/puppet-neutron,IPnett/puppet-neutron,JioCloud/puppet-neutron,NeCTAR-RC/puppet-neutron,fuel-infra/puppet-neutron,larsks/puppet-neutron,varunarya10/puppet-neutron,redhat-cip/puppet-neutron,aldavud/puppet-neutron,DarkHorseComics/puppet-neutron,larsks/puppet-neutron,...
1713547cfd7d0691f63ca5c1c8bf156da17de1b3
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: CI on: push: pull_request: schedule: - cron: '0 0 * * *' jobs: ci: runs-on: ubuntu-latest strategy: matrix: ruby-version: - '2.6' - '2.7' services: postgres: image: manageiq/postgresql:10 env: POSTGRESQL_USER: root POS...
name: CI on: push: pull_request: workflow_dispatch: schedule: - cron: '0 0 * * *' jobs: ci: runs-on: ubuntu-latest strategy: matrix: ruby-version: - '2.6' - '2.7' services: postgres: image: manageiq/postgresql:10 env: POSTGRESQL_USE...
Add manual option for CI github workflow
Add manual option for CI github workflow
YAML
apache-2.0
ManageIQ/manageiq-providers-amazon,ManageIQ/manageiq-providers-amazon