doc_id
stringlengths
36
36
metadata
dict
input
stringlengths
28
4.3k
output
stringlengths
11
5.45k
18786e2a-250a-44ed-90b2-825cec8a4ec3
{ "language": "YAML" }
```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 %> --...
```yaml # 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 %> <%= omi...
23557307-22eb-4090-b72d-fe4dbaaab474
{ "language": "YAML" }
```yaml 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: <%= Ra...
```yaml 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: ...
8306ec4f-7394-4162-861f-6f5b7218a4d7
{ "language": "YAML" }
```yaml --- - 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 ...
```yaml --- - 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 ...
e1257374-de16-4e03-8dc1-4fb89c21b5d7
{ "language": "YAML" }
```yaml --- 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: - "..." ``` Install the packages with `sudo`
```yaml --- 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: - "..." ```
97c62fad-8135-4c77-8054-9cbb61ce339a
{ "language": "YAML" }
```yaml --- 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-u...
```yaml --- 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-u...
276b7738-4083-4b5a-970b-26d88513717a
{ "language": "YAML" }
```yaml 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.bas...
```yaml 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/ch...
f9fd1847-fd33-4deb-bbcc-5dd1c7a6d02b
{ "language": "YAML" }
```yaml 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: ...
```yaml 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: ...
ab1e2ca2-0189-47e7-9ae7-ad897edb0df0
{ "language": "YAML" }
```yaml 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 dest...
```yaml 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 dest...
0750e617-0e33-4194-abde-55c7435c5fb0
{ "language": "YAML" }
```yaml 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-...
```yaml 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...
8cfc0ee3-a95f-427b-8388-0647e84f65b7
{ "language": "YAML" }
```yaml 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/s...
```yaml 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/s...
b94cc6be-01dd-496b-9492-57a28e7ddb83
{ "language": "YAML" }
```yaml 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 ...
```yaml 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 ...
27858f3c-0b33-44f4-8d10-99c9af01424e
{ "language": "YAML" }
```yaml 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' ...
```yaml 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' ...
a6231c0e-f3de-44f2-bb83-911bbf1caf93
{ "language": "YAML" }
```yaml 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: ...
```yaml 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: ...
b02d3eef-8607-4239-8130-544108e3e7d7
{ "language": "YAML" }
```yaml 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: ...
```yaml 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: ...
c7d031f5-707a-433d-b01f-ddd4791c3197
{ "language": "YAML" }
```yaml 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: ...
```yaml 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: ...
28ebd284-8bf1-491a-a371-c94b6f42b7c3
{ "language": "YAML" }
```yaml --- 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 ``` Update github action...
```yaml --- 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.ru...
bb7ca5f5-5019-4ad7-bc6d-8d3c006796be
{ "language": "YAML" }
```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: Fa...
```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: Fa...
f5c5a4be-d285-4d5b-af10-902283defd5e
{ "language": "YAML" }
```yaml --- 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: '' us...
```yaml --- 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_...
477d8ac9-33b2-4e31-b4a1-2d4dd1756b8a
{ "language": "YAML" }
```yaml # Add feature toggles with the format: # <feature_name>: off|dev|release show_licensing_overview_success_rate: dev ``` Enable success rate on licensing overview.
```yaml # Add feature toggles with the format: # <feature_name>: off|dev|release show_licensing_overview_success_rate: release ```
41655f75-1436-429a-afa9-daba0c271f18
{ "language": "YAML" }
```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_...
```yaml 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_d...
39c950b4-4801-4510-8d1b-9f7df48da165
{ "language": "YAML" }
```yaml 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/s...
```yaml 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/s...
69ca0877-5387-41e7-a78a-13032efb8188
{ "language": "YAML" }
```yaml --- 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: htt...
```yaml --- 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: htt...
511b5c70-1ada-4388-acdf-e70d82e38b5f
{ "language": "YAML" }
```yaml --- 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 publ...
```yaml --- 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 publ...
0224120a-0ef4-4467-bd9c-2b24ffe1e7e1
{ "language": "YAML" }
```yaml 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: 3BSbGRbJa...
```yaml 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: 3BSbGRbJa...
030ab6e3-13ad-4cd8-aea3-e7f284d6db04
{ "language": "YAML" }
```yaml 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 ...
```yaml 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 bu...
c6126668-e60f-482a-b02c-12acd84796a3
{ "language": "YAML" }
```yaml 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: ...
```yaml 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:...
3446de8d-c03e-4385-99c4-62da2d24559b
{ "language": "YAML" }
```yaml 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-lat...
```yaml 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-lat...
c09fb954-cfba-4b0c-a3a3-82e6bee4d828
{ "language": "YAML" }
```yaml 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-vers...
```yaml 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: ...
9f1be2f7-6a24-4e72-9625-042a2bfe8049
{ "language": "YAML" }
```yaml 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...
```yaml 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...
150a76ee-a1a3-4eba-8293-80a59853fe2f
{ "language": "YAML" }
```yaml 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 &&...
```yaml 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 &...
63553a98-e746-4778-a7e4-e5fbb92d9a32
{ "language": "YAML" }
```yaml 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 instal...
```yaml 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 insta...
d055ba66-ee3a-4906-a32a-68332c8e9546
{ "language": "YAML" }
```yaml 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: | ...
```yaml 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: | ...
c22f9b95-f010-40aa-a94b-5703df8e9c00
{ "language": "YAML" }
```yaml --- # 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"...
```yaml --- # 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"...
c4d1d0ff-a644-4bf3-be28-de43672e46cc
{ "language": "YAML" }
```yaml 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_ema...
```yaml 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.sea...
16db0eb6-60a1-435b-b6b4-4aa92f500ef1
{ "language": "YAML" }
```yaml --- 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: ...
```yaml --- 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: ...
b0dc8eed-b7da-4418-ad81-d72d0a546a25
{ "language": "YAML" }
```yaml --- 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 ``` Update from Forestry.io - Updated ...
```yaml --- 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 ...
95515b2b-7092-4d01-ac18-1b0344019d83
{ "language": "YAML" }
```yaml # 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_userna...
```yaml # 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 f...
54f64532-fd3f-4fc5-8bda-f8f807fb4f28
{ "language": "YAML" }
```yaml name: _anypytools-docs channels: - conda-forge - defaults dependencies: - sphinx<4 - cloud_sptheme - nbsphinx - IPython - numpy - scipy - tqdm - h5py - pytest - myst-parser - ipywidgets ``` Build docs on python 3.9
```yaml 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 ```
b8f5bbe5-bf64-457a-b4d6-fdcfe7fe59d3
{ "language": "YAML" }
```yaml 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 ``` Use small files for local...
```yaml 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...
8cfbca99-f56e-4fcd-9e26-aa2228d1f437
{ "language": "YAML" }
```yaml 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
```yaml issue-labels-include: - Breaking change - Feature - Bug - Improvement - Documentation issue-labels-exclude: - Build issue-labels-alias: - name: Documentation header: Documentation plural: Documentation```
2657001a-253b-470c-b242-43f7cc39a54e
{ "language": "YAML" }
```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.elemental...
```yaml 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-...
d736b769-3c3e-4200-b750-5d5a7f9d5c75
{ "language": "YAML" }
```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 specif...
```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 specif...
df9e6b30-2be5-4c2f-a5e3-cac0ad7889e7
{ "language": "YAML" }
```yaml 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: persi...
```yaml 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:...
4cdbc74d-f0b2-4503-909e-a5efd0c24ce2
{ "language": "YAML" }
```yaml engines: eslint: enabled: true config: .eslintrc duplication: enabled: false config: languages: - javascript fixme: enabled: true ratings: paths: - "**.js" exclude_paths: - data/* - assets/*``` Disable some bs Code Climate checks
```yaml 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: e...
200412c2-e76a-48da-a9c4-86952454c789
{ "language": "YAML" }
```yaml 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 ser...
```yaml 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 ser...
66dfcdd5-fed3-4c12-be5a-2691f7ec5cdf
{ "language": "YAML" }
```yaml 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...
```yaml 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...
04225028-6d61-4278-917e-c7df14ada819
{ "language": "YAML" }
```yaml 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 ``` Check how much more time is needed for newer iojs.
```yaml 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 ```
0a4011e8-6bcb-4131-974e-6d36b955b285
{ "language": "YAML" }
```yaml 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: overri...
```yaml 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 te...
f03e51a2-fdcb-4a97-a93c-35e0388b597e
{ "language": "YAML" }
```yaml machine: python: version: 3.4.1 test: override: - python3.4 manage_development.py test --settings=gamecraft.settings ``` Add heroku deployment to master
```yaml 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 ```
42b8ce4c-4733-4158-8595-9d81c593ac27
{ "language": "YAML" }
```yaml machine: node: version: "6.8.0" timezone: Asia/Tokyo dependencies: override: - yarn install test: override: - npm run test ``` Make to run typecheking/linting in CI
```yaml machine: node: version: "6.8.0" timezone: Asia/Tokyo dependencies: override: - yarn install test: override: - npm run test - npm run flow - npm run lint ```
f1f38724-ad4f-4073-824a-07446a5aa78d
{ "language": "YAML" }
```yaml machine: node: version: 4.0.0 test: pre: - nvm install lts && nvm use lts && npm test - nvm use node && npm test - snyk test``` Use LTS differently inside pre-test on Circle
```yaml machine: node: version: 4.0.0 test: pre: - nvm use --lts && npm test - nvm use node && npm test - snyk test```
5a36deef-53c0-4661-954c-e1350326041e
{ "language": "YAML" }
```yaml 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...
```yaml 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 -...
f757d079-c642-4dcf-b1ca-e6f9ffe61a4d
{ "language": "YAML" }
```yaml --- # 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 - ...
```yaml --- # 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 - ...
402804fc-44f1-499a-b7e3-efa3b605e126
{ "language": "YAML" }
```yaml spring: application: name: Configurator management: port: 8000 ``` Change context path of Actuator
```yaml spring: application: name: Configurator management: port: 8000 context-path: /admin/actuator ```
fbc5d778-29ec-41fb-bb12-f9c691055dd4
{ "language": "YAML" }
```yaml --- 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:...
```yaml --- 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:" buil...
c4712f3a-c2fd-4ff9-a398-a4f352614c17
{ "language": "YAML" }
```yaml --- 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_pa...
```yaml --- 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...
b42364e9-2207-4929-913b-6db61ad7fcc6
{ "language": "YAML" }
```yaml --- 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:...
```yaml --- 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: ...
7ad2fe79-61b1-423a-861c-d7c6f7570779
{ "language": "YAML" }
```yaml 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/al...
```yaml 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/ip...
543a795e-f15a-4796-8c13-5bb1ab772d3c
{ "language": "YAML" }
```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...
```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...
ba287a52-4b65-43f6-8320-24249143c73e
{ "language": "YAML" }
```yaml 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...
```yaml 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 o...
732084ee-70a9-47f5-a884-fb872da90c39
{ "language": "YAML" }
```yaml 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: ...
```yaml 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: ...
fde75a85-e4a8-4b18-8c8e-faf296f21d52
{ "language": "YAML" }
```yaml --- 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/...
```yaml --- 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 && wge...
67928791-e263-434f-83b6-d74accac725e
{ "language": "YAML" }
```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::opens...
```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::opens...
91f92fb2-3a08-4323-835b-480f017b969c
{ "language": "YAML" }
```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 ...
```yaml 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 ...
1e8e885a-3b65-456a-b3ad-245eaf76af6f
{ "language": "YAML" }
```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:...
```yaml 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:...
96893c08-66a8-48d7-ba63-6d4434b6e628
{ "language": "YAML" }
```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: ...
```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 ref: ...
353ea58c-5c50-4dca-a286-b9e7ff6a11f9
{ "language": "YAML" }
```yaml --- 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.1...
```yaml --- 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.1...
d6cba9f8-dace-42f3-9d37-fe718f0ada52
{ "language": "YAML" }
```yaml user_pip_packages: - ipython - black python_versions: - 3.7.2 - 2.7.15 global_python_version: "3.7.2 2.7.15" ``` Install only Python 3.10.4 using pyenv
```yaml user_pip_packages: - ipython - black python_versions: - 3.10.4 global_python_version: "3.10.4" ```
4e143eab-f8c6-40cc-8dc1-0b921ae335a1
{ "language": "YAML" }
```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: ...
```yaml {% 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...
ae214da0-d4e4-4ef5-aaf7-fed5d399994e
{ "language": "YAML" }
```yaml --- 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: - 20...
```yaml --- 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: - 093...
fbf89ed1-2876-414e-90a6-b6b83d18911a
{ "language": "YAML" }
```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 ...
```yaml 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: ...
f8138502-14a4-4eb6-96c1-7d6f8e3827fc
{ "language": "YAML" }
```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: [ baser...
```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: [ baser...
1df0d7de-3a65-4ca1-982f-fb2a6f7c4cb4
{ "language": "YAML" }
```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 ``` Update pebble to latest in e2e tests
```yaml 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 ```
485b7f24-3032-4f99-9289-13d6627be4d5
{ "language": "YAML" }
```yaml --- 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/n...
```yaml --- 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/nul...
3430f893-a3e3-4710-8e00-84f864706d49
{ "language": "YAML" }
```yaml 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...
```yaml 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...
1ab8c20f-d964-4156-b924-61270211444f
{ "language": "YAML" }
```yaml image: neikos/waysome_fedora 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
```yaml 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 ```
b4c7bb4a-a023-41d8-9380-d5a36d9c493b
{ "language": "YAML" }
```yaml - project: templates: - check-requirements - openstack-python3-zed-jobs - release-notes-jobs-python3 ``` Add Python3 antelope unit tests
```yaml - project: templates: - check-requirements - openstack-python3-antelope-jobs - release-notes-jobs-python3 ```
838407eb-24b8-455f-a6a3-828a3c7ef546
{ "language": "YAML" }
```yaml 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: | ...
```yaml 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: | ...
da21da70-bb1c-4c1a-9560-26ac63f3979f
{ "language": "YAML" }
```yaml # 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....
```yaml # 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....
95ce2826-6f75-4ef0-a0d6-84addfa85b3d
{ "language": "YAML" }
```yaml 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...
```yaml 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 ...
7eccfca8-a7ed-4b16-be8c-b105419e0594
{ "language": "YAML" }
```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-ve...
```yaml 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-ve...
ef3c0da9-ff28-43a3-a4f0-9530736786ca
{ "language": "YAML" }
```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: -an...
```yaml 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: -an...
32098903-719c-41ef-b036-43e31e282531
{ "language": "YAML" }
```yaml 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_USERN...
```yaml 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_USERN...
5273421d-340c-41da-8e83-202e1a3a5d71
{ "language": "YAML" }
```yaml 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. - r...
```yaml 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 -r...
54596a83-fc73-43aa-94d3-73cd5bb9f95f
{ "language": "YAML" }
```yaml # 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:...
```yaml # 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...
08d07fb5-3949-4851-8438-ea2b178d1e9a
{ "language": "YAML" }
```yaml machine: python: version: 3.5.2 dependencies: override: - pip3 install --upgrade pip setuptools test: override: - python3 setup.py test ``` Install deps in dependencies section & cache deps
```yaml 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 ```
1402fb6e-cc1a-4625-9411-5b38098581ff
{ "language": "YAML" }
```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 - bot...
```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 - bot...
234ad4fa-fad1-4c82-b21f-26fc2ae594c5
{ "language": "YAML" }
```yaml machine: java: version: openjdk8 environment: TERM: dumb dependencies: cache_directories: - "~/.m2" - "~/.gradle" test: override: - ./gradlew build ``` Use Travis setup in CircleCI
```yaml 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...
f12a3297-8159-40fd-9a2d-cb8c566a027f
{ "language": "YAML" }
```yaml 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)``` Use forever package to run node in t...
```yaml 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)```
8824a978-3d2e-4719-b553-11859ad7a3e1
{ "language": "YAML" }
```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``` Fix support multiple widgets on the dashboard
```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```
42ff56d1-c65d-410b-8749-650180525910
{ "language": "YAML" }
```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...
```yaml 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...
a5777da4-17f1-475c-bd25-c19145145236
{ "language": "YAML" }
```yaml 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:...
```yaml 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: persi...
9ea4309d-6cee-445a-b332-059a9aaea8ac
{ "language": "YAML" }
```yaml 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\.carg...
```yaml 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\.carg...
9b9d1dc1-84d0-4e83-888f-9bfc3764609a
{ "language": "YAML" }
```yaml 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 ...
```yaml 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 ...
59f519e1-3ff5-45dc-8a9f-3efa7fa66776
{ "language": "YAML" }
```yaml 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....
```yaml 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....
0d9afe99-a2b4-4894-89cc-572900133fd3
{ "language": "YAML" }
```yaml 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 .NE...
```yaml 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 .NE...
4654ad9d-3d59-44c3-a817-54c2c7f02fd6
{ "language": "YAML" }
```yaml 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 }}...
```yaml 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 }}...
d21d2808-5470-4313-aca4-41471e98b343
{ "language": "YAML" }
```yaml 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/s...
```yaml 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-...
80d49b5c-2eab-443b-9fb6-01a6274f9c06
{ "language": "YAML" }
```yaml 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: 'o...
```yaml 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: 'o...
7b9d0dc5-dc94-44ed-9ecd-c6d9a654bdf6
{ "language": "YAML" }
```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 ...
```yaml 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: POSTGR...