commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
d15a72f586db5e086beeb7ebcb84e34bf34b54a5
data/transition-sites/ukvi.yml
data/transition-sites/ukvi.yml
--- site: ukvi whitehall_slug: uk-visas-and-immigration host: www.ukba.homeoffice.gov.uk tna_timestamp: 20140110181512 homepage: https://www.gov.uk/government/organisations/uk-visas-and-immigration aliases: - bia.homeoffice.gov.uk - biapreview.homeoffice.gov.uk - ind.homeoffice.gov.uk - origin.ukba.homeoffice.gov.uk # Currently used for us to serve proxied content. Will move eventually. - ukba.homeoffice.gov.uk - www.bia.homeoffice.gov.uk - www.biapreview.homeoffice.gov.uk - www.ind.homeoffice.gov.uk # area: used for different news index pages # item: used for different contact pages # version: used for different outcomes of an asylum application # view: used to distinguish between a cover page (HTML) and the PDF itself options: --query-string area:item:version:view css: home-office
--- site: ukvi whitehall_slug: uk-visas-and-immigration host: www.ukba.homeoffice.gov.uk tna_timestamp: 20140110181512 homepage: https://www.gov.uk/government/organisations/uk-visas-and-immigration aliases: - bia.homeoffice.gov.uk - biapreview.homeoffice.gov.uk - contact-ukba.homeoffice.gov.uk - ind.homeoffice.gov.uk - origin.ukba.homeoffice.gov.uk # Currently used for us to serve proxied content. Will move eventually. - report-ukba.homeoffice.gov.uk - ukba.homeoffice.gov.uk - www.bia.homeoffice.gov.uk - www.biapreview.homeoffice.gov.uk - www.ind.homeoffice.gov.uk # area: used for different news index pages # item: used for different contact pages # version: used for different outcomes of an asylum application # view: used to distinguish between a cover page (HTML) and the PDF itself options: --query-string area:item:version:view css: home-office
Revert "Remove two redundant aliases for UKVI"
Revert "Remove two redundant aliases for UKVI" After this configuration change was merged and deployed, the Host entries coresponding to the contact-ukba.homeoffice.gov.uk were deleted. This broke the Transition_load_all_data job, as there were host_paths that referenced the deleted host. This database change has now been reversed, and the deleted records restored (details here [1]). It seems sensible to make the coresponding change in the configuration, with the expectation that this won't change the database, as coresponding host entries already exist for these aliases. 1: https://github.com/alphagov/govuk-org-notes/blob/master/Debugging%20the%20Transition_load_all_data%20Jenkins%20job%20failures.org This reverts commit 9ce925400e42c6003bad2140847184c83764826f.
YAML
mit
alphagov/transition-config,alphagov/transition-config
167c8bc43587d11c4fc3d8b3a990a3f0938cf31e
.github/workflows/codeql-analysis.yml
.github/workflows/codeql-analysis.yml
name: "Code scanning - action" on: push: branches: [master] pull_request: branches: [master] schedule: - cron: '0 19 * * 2' jobs: CodeQL-Build: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2.3.4 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. fetch-depth: 2 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v1 # Override language selection by uncommenting this and choosing your languages # with: # languages: go, javascript, csharp, python, cpp, java # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild uses: github/codeql-action/autobuild@v1 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines # and modify them (or add more) to build your code if your project # uses a compiled language #- run: | # make bootstrap # make release - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1
name: "Code scanning - action" on: push: branches: [master] pull_request: branches: [master] schedule: - cron: '0 19 * * 2' jobs: analzye: uses: bryanforbes/python-workflows/.github/workflows/reusable-codeql-analysis.yml@master
Use reusable CodeQL analysis workflow
Use reusable CodeQL analysis workflow
YAML
bsd-3-clause
bryanforbes/Erasmus
0792411853f1add1bffa971afe3d0618b44b9c37
.github/workflows/pytest-core-mpi.yml
.github/workflows/pytest-core-mpi.yml
# Runner information: # Standard F4s_v2 (4 vcpus, 8 GiB memory) # Intel Xeon® Platinum 8168 (SkyLake) name: CI-mpi on: # Trigger the workflow on push or pull request, # but only for the master branch push: branches: - master pull_request: branches: - master jobs: build: name: pytest-mpi runs-on: [self-hosted, mpi] env: DEVITO_LANGUAGE: "openmp" DEVITO_ARCH: "gcc-7" DEVITO_BACKEND: "core" CC: "gcc-7" CXX: "g++-7" steps: - name: Checkout devito uses: actions/checkout@v1 - name: Install dependencies run: | pip3 install --upgrade pip pip3 install -e .[extras] - name: Test with pytest run: | pytest --cov --cov-config=.coveragerc --cov-report=xml -m parallel tests/ - name: Upload coverage to Codecov uses: codecov/codecov-action@v1.0.6 with: token: ${{ secrets.CODECOV_TOKEN }} name: pytest-mpi
name: CI-mpi on: # Trigger the workflow on push or pull request, # but only for the master branch push: branches: - master pull_request: branches: - master jobs: build: name: pytest-mpi runs-on: ubuntu-20.04 env: DEVITO_LANGUAGE: "openmp" DEVITO_ARCH: "gcc-9" DEVITO_BACKEND: "core" CC: "gcc-9" CXX: "g++-9" steps: - name: Checkout devito uses: actions/checkout@v2 - name: Install dependencies run: | sudo apt install mpich -y pip3 install --upgrade pip pip3 install -r requirements-mpi.txt pip3 install -e .[extras] - name: Test with pytest run: | python3 -m pytest --cov --cov-config=.coveragerc --cov-report=xml -m parallel tests/ - name: Upload coverage to Codecov uses: codecov/codecov-action@v1.0.15 with: token: ${{ secrets.CODECOV_TOKEN }} name: pytest-mpi
Move mpi tests back to github runners for the time-being.
ci: Move mpi tests back to github runners for the time-being.
YAML
mit
opesci/devito,opesci/devito
ebfea9b39e18efcd8695a0713d800930d8f2c6f4
tasks/firmware_installer.yml
tasks/firmware_installer.yml
--- - name: Clearing previous log entries file: path: "/var/cpq/Component.log" state: absent ignore_errors: true - name: Installing firmware "{{ item }}" yum: name={{ item | splitext | first }} state=latest - name: extract path for hpsetup command shell: "rpm -ql {{ item }}|grep /hpsetup" register: FirmwarePackage changed_when: False check_mode: no - name: set_fact for firmware_installer path from "{{ item }}" RPM set_fact: firmware_installer="{{ FirmwarePackage.stdout | splitext | first }}" - name: Installing firmware from "{{ item }}" in silent mode command: "{{ firmware_installer }} -s " ignore_errors: true - name: Testing if log file exists stat: path='/var/cpq/Component.log' register: optional_file - name: Gather optional installer log for "{{ item }}" command: "/bin/cat {{ optional_file.stat.path }}" register: details when: optional_file.stat.exists - name: Print optional installer log for "{{ item }}" debug: msg: "{{ details.stdout_lines }}" when: details.rc == 0 - name: Firmware RPM cleanup package: name={{ item }} state=absent
--- - name: Clearing previous log entries file: path: "/var/cpq/Component.log" state: absent ignore_errors: true - name: Installing firmware "{{ item }}" yum: name={{ item | splitext | first }} state=latest - name: extract path for hpsetup command shell: "rpm -ql {{ item }}|grep /hpsetup" register: FirmwarePackage changed_when: False check_mode: no - name: set_fact for firmware_installer path from "{{ item }}" RPM set_fact: firmware_installer="{{ FirmwarePackage.stdout | splitext | first }}" - name: Installing firmware from "{{ item }}" in silent mode command: "{{ firmware_installer }} -s " ignore_errors: true - name: Testing if log file exists stat: path='/var/cpq/Component.log' register: optional_file - name: Gather optional installer log for "{{ item }}" command: "/bin/cat {{ optional_file.stat.path }}" register: details when: optional_file.stat.exists - name: Print optional installer log for "{{ item }}" debug: msg: "{{ details.stdout_lines }}" when: details.rc == 0 - name: Firmware RPM cleanup package: name={{ item }} state=absent
Indent the "msg" to the debug task
Indent the "msg" to the debug task Fixes this error: [WARNING]: Ignoring invalid attribute: msg
YAML
mit
CSC-IT-Center-for-Science/ansible-role-hp-firmware-upgrade
5bde2c86c47de13810aa20f1bc61bed1fc7e46e3
romana-install/roles/romana/install-agent/tasks/romana_from_github.yml
romana-install/roles/romana/install-agent/tasks/romana_from_github.yml
- name: Copy files built on master command: rsync -az "{{ romana_master_ip }}:/var/tmp/gopath/bin/{{ item }}" "/var/tmp/{{ item }}" with_items: - agent - name: Copy policy-agent from master command: rsync -az "{{ romana_master_ip }}:/var/tmp/gopath/src/github.com/romana/core/pkg/util/policy/agent/agent.py" "/var/tmp/agent.py" - name: Install files become: true become_user: root command: install -o root -g root -m 0755 "/var/tmp/{{ item }}" "{{ romana_bin_dir }}/{{ item }}" with_items: - agent - romana - agent.py - name: Install Agent Proxy Add Policy become: true become_user: root template: src="config/agent_proxy_add_policy.sh" dest="{{ romana_bin_dir }}/" mode=0777 with_items: - agent - name: Install Agent Proxy Delete Policy become: true become_user: root template: src="config/agent_proxy_delete_policy.sh" dest="{{ romana_bin_dir }}/" mode=0777 with_items: - agent - name: Install romana command line config file template: src="config/romana.yaml" dest="/home/{{ ansible_ssh_user }}/.romana.yaml" mode=0644
- name: Copy files built on master command: rsync -az "{{ romana_master_ip }}:/var/tmp/gopath/bin/{{ item }}" "/var/tmp/{{ item }}" with_items: - agent - romana - name: Copy policy-agent from master command: rsync -az "{{ romana_master_ip }}:/var/tmp/gopath/src/github.com/romana/core/pkg/util/policy/agent/agent.py" "/var/tmp/agent.py" - name: Install files become: true become_user: root command: install -o root -g root -m 0755 "/var/tmp/{{ item }}" "{{ romana_bin_dir }}/{{ item }}" with_items: - agent - romana - agent.py - name: Install Agent Proxy Add Policy become: true become_user: root template: src="config/agent_proxy_add_policy.sh" dest="{{ romana_bin_dir }}/" mode=0777 with_items: - agent - name: Install Agent Proxy Delete Policy become: true become_user: root template: src="config/agent_proxy_delete_policy.sh" dest="{{ romana_bin_dir }}/" mode=0777 with_items: - agent - name: Install romana command line config file template: src="config/romana.yaml" dest="/home/{{ ansible_ssh_user }}/.romana.yaml" mode=0644
Support for romana cli tool on agents (2)
Support for romana cli tool on agents (2)
YAML
apache-2.0
mortensteenrasmussen/romana,romana/romana,romana/romana,mortensteenrasmussen/romana,mortensteenrasmussen/romana
fa3fa12785cf6851b97ca7a01884f11d83f70d07
romana-install/roles/romana/install-agent/tasks/romana_from_github.yml
romana-install/roles/romana/install-agent/tasks/romana_from_github.yml
- name: Copy files built on master command: rsync -az "{{ romana_master_ip }}:/var/tmp/gopath/bin/{{ item }}" "/var/tmp/{{ item }}" with_items: - agent - romana - name: Install files become: true become_user: root command: install -o root -g root -m 0755 "/var/tmp/{{ item }}" "{{ romana_bin_dir }}/{{ item }}" with_items: - agent - romana - agent.py
- name: Copy files built on master command: rsync -az "{{ romana_master_ip }}:/var/tmp/gopath/bin/{{ item }}" "/var/tmp/{{ item }}" with_items: - agent - romana - name: Install files become: true become_user: root command: install -o root -g root -m 0755 "/var/tmp/{{ item }}" "{{ romana_bin_dir }}/{{ item }}" with_items: - agent - romana
Remove reference to agent.py here.
Remove reference to agent.py here.
YAML
apache-2.0
romana/romana,mortensteenrasmussen/romana,mortensteenrasmussen/romana,mortensteenrasmussen/romana,romana/romana
5d7a8f11fb2ad6ce6e1302dd62c2836aa602bac3
.gitlab-ci.yml
.gitlab-ci.yml
stages: - build linux: stage: build script: - apt-get update - apt-get install --no-install-recommends xz-utils curl git ca-certificates -y - git submodule update --recursive --init - curl -L https://github.com/AnarchyTools/atbuild/releases/download/0.10.0/atbuild-0.10.0-linux.tar.xz | tar xJ - cp atbuild-*/atbuild /usr/local/bin/ - atbuild check - atbuild atpm - mkdir atpm-${CI_BUILD_REF} - cp bin/atpm atpm-${CI_BUILD_REF} - tar cJf atpm-${CI_BUILD_REF}-linux.tar.xz atpm-${CI_BUILD_REF} tags: - autoscale-linux image: drewcrawford/swift:latest artifacts: paths: - atpm-${CI_BUILD_REF}-linux.tar.xz osx: stage: build script: - git submodule update --recursive --init - atbuild check - atbuild atpm - mkdir atpm-${CI_BUILD_REF} - cp bin/atpm atpm-${CI_BUILD_REF} - tar cJf atpm-${CI_BUILD_REF}-osx.tar.xz atpm-${CI_BUILD_REF} tags: - openswift - atbuild artifacts: paths: - atpm-${CI_BUILD_REF}-osx.tar.xz
stages: - build linux: stage: build script: - apt-get update - apt-get install --no-install-recommends xz-utils curl git ca-certificates -y - git submodule update --recursive --init - curl -L https://github.com/AnarchyTools/atbuild/releases/download/0.10.0/atbuild-0.10.0-linux.tar.xz | tar xJ - cp atbuild-*/atbuild /usr/local/bin/ - atbuild check - atbuild atpm --use-overlay static - mkdir atpm-${CI_BUILD_REF} - cp bin/atpm atpm-${CI_BUILD_REF} - tar cJf atpm-${CI_BUILD_REF}-linux.tar.xz atpm-${CI_BUILD_REF} tags: - autoscale-linux image: drewcrawford/swift:latest artifacts: paths: - atpm-${CI_BUILD_REF}-linux.tar.xz osx: stage: build script: - git submodule update --recursive --init - atbuild check - atbuild atpm --use-overlay static - mkdir atpm-${CI_BUILD_REF} - cp bin/atpm atpm-${CI_BUILD_REF} - tar cJf atpm-${CI_BUILD_REF}-osx.tar.xz atpm-${CI_BUILD_REF} tags: - openswift - atbuild artifacts: paths: - atpm-${CI_BUILD_REF}-osx.tar.xz
Use static overlay for CI
Use static overlay for CI
YAML
apache-2.0
AnarchyTools/atpm,AnarchyTools/atpm
cf8373dde0a303093575e9af3ffd57a6b89a40c5
.gitlab-ci.yml
.gitlab-ci.yml
image: haskell:8.2 services: - postgres:9.4 variables: POSTGRES_DB: betty_test POSTGRES_USER: betty POSTGRES_PASSWORD: betty cache: untracked: true paths: - $(pwd)/.stack/ before_script: - export STACK_ROOT=$(pwd)/.stack - apt-get update -qq && apt-get install -qq -y m4 libpq-dev make - cp secrets.m4.example secrets.m4 - make files - stack upgrade - stack install hspec-discover - stack install --only-dependencies -j 4 test: script: - export PGHOST=postgres - export PGUSER=$POSTGRES_USER - export PGPASS=$POSTGRES_PASSWORD - export PGDATABASE=$POSTGRES_DB - stack test --coverage after_script: - stack hpc report betty
image: haskell:8.2 services: - postgres:9.4 variables: POSTGRES_DB: betty_test POSTGRES_USER: betty POSTGRES_PASSWORD: betty cache: untracked: true paths: - $(pwd)/.stack/ before_script: - export STACK_ROOT=$(pwd)/.stack - apt-get update -qq && apt-get install -qq -y m4 libpq-dev make xz-utils - cp secrets.m4.example secrets.m4 - make files - stack upgrade - stack install hspec-discover - stack install --only-dependencies -j 4 test: script: - export PGHOST=postgres - export PGUSER=$POSTGRES_USER - export PGPASS=$POSTGRES_PASSWORD - export PGDATABASE=$POSTGRES_DB - stack test --coverage after_script: - stack hpc report betty
Install xz-utils in Gitlab CI.
Install xz-utils in Gitlab CI. Trying to fix this error: $ stack hpc report betty Downloading lts-10.3 build plan ... Downloaded lts-10.3 build plan. Preparing to install GHC to an isolated location. This will not interfere with any system-level installation. Preparing to download ghc-8.2.2 ... ghc-8.2.2: download has begun ghc-8.2.2: 9.61 MiB / 121.89 MiB ( 7.88%) downloaded... [...] Downloaded ghc-8.2.2. The following executables are missing and must be installed: xz ERROR: Job failed: exit code 1
YAML
agpl-3.0
sajith/betty-web
7e07377719d987611adf1381f9bff8d60b065259
.gitlab-ci.yml
.gitlab-ci.yml
before_script: - apt-get update -y test: script: - apt-get install default-jre -y - wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein - chmod a+x lein - export LEIN_ROOT=1 - PATH=$PATH:. - lein deps - lein midje deploy: script: - curl https://cli-assets.heroku.com/install-ubuntu.sh | sh - ./deploy.sh
image: docker:latest services: - docker:dind variables: DOCKER_DRIVER: overlay before_script: - apt-get update -y test: script: - apt-get install default-jre -y - wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein - chmod a+x lein - export LEIN_ROOT=1 - PATH=$PATH:. - lein deps - lein midje build: script: - ./build.sh deploy: script: - curl https://cli-assets.heroku.com/install-ubuntu.sh | sh - ./deploy.sh
Add docker service to CI script
Add docker service to CI script
YAML
epl-1.0
treppo/yorck-ratings-v2
6acc5cb0f69991c0e0d218dd7259b83edee1e787
.gitlab-ci.yml
.gitlab-ci.yml
# This file is a template, and might need editing before it works on your project. # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options # you can delete this line if you're not using Docker image: ubuntu:xenial before_script: - echo "Fetch rent-a-bot repository" - apt-get install git - git clone git@gitlab.com:cpoisson/rent-a-bot.git - cd rent-a-bot after_script: - echo "Script is finished" test1: stage: test script: - echo "Run tests" - python setup.py test
# This file is a template, and might need editing before it works on your project. # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options # you can delete this line if you're not using Docker image: ubuntu:xenial before_script: - echo "Install git and pip" - apt-get update - apt-get install -y git python-pip - echo "Fetch rent-a-bot repository" - git clone git@gitlab.com:cpoisson/rent-a-bot.git - cd rent-a-bot after_script: - echo "Script is finished" test1: stage: test script: - echo "Run tests" - python setup.py test
Add apt-get update and python-pip installation.
Add apt-get update and python-pip installation.
YAML
mit
cpoisson/rent-a-bot,cpoisson/rent-a-bot
2bb7dfeb198554f3660d335ef9c6ce8392ee58ab
.zuul.yaml
.zuul.yaml
- project: templates: - openstack-cover-jobs - openstack-lower-constraints-jobs - openstack-python3-yoga-jobs - release-notes-jobs-python3 - publish-openstack-docs-pti - check-requirements gate: queue: kuryr
- project: templates: - openstack-cover-jobs - openstack-lower-constraints-jobs - openstack-python3-zed-jobs - release-notes-jobs-python3 - publish-openstack-docs-pti - check-requirements gate: queue: kuryr
Add Python3 zed unit tests
Add Python3 zed unit tests This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for zed. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: I15afc8d745e70da8b0b6b5f03c04bd6483d9d2b8
YAML
apache-2.0
openstack/kuryr,openstack/kuryr
a92f956cc2b149d0aafd458b173fe55405a04a1a
.zuul.yaml
.zuul.yaml
- project: templates: - check-requirements - horizon-non-primary-django-jobs - openstack-python3-wallaby-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
- project: templates: - check-requirements - horizon-non-primary-django-jobs - openstack-python3-xena-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
Add Python3 xena unit tests
Add Python3 xena unit tests This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for xena. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: Ibc85c205093665b16c05092b6841c27e73aed7c1
YAML
apache-2.0
stackforge/cloudkitty-dashboard,openstack/cloudkitty-dashboard,stackforge/cloudkitty-dashboard,openstack/cloudkitty-dashboard,openstack/cloudkitty-dashboard,stackforge/cloudkitty-dashboard
a34a95b4e9103071ff7a2a3fb7d18c877cf5c2dc
.zuul.yaml
.zuul.yaml
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-python3-xena-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-python3-yoga-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
Add Python3 yoga unit tests
Add Python3 yoga unit tests This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for yoga. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: I5a18c7d409473150ab6cf01181969a78d359464f
YAML
apache-2.0
openstack/oslo.vmware
4eb665a071bddeff6af408690bf2c8f66118b982
test/database.yml
test/database.yml
sqlite: :adapter: sqlite :database: <%= File.join(File.dirname(__FILE__), 'dirty_associations.sqlite.db') %> sqlite3: :adapter: sqlite3 :database: <%= File.join(File.dirname(__FILE__), 'dirty_associations.sqlite3.db') %>
mysql: :adapter: mysql :database: dirty_associations_plugin_test # these need to be changed to match your db settings # :username: # :password: # :host: localhost sqlite: :adapter: sqlite :database: <%= File.join(File.dirname(__FILE__), 'dirty_associations.sqlite.db') %> sqlite3: :adapter: sqlite3 :database: <%= File.join(File.dirname(__FILE__), 'dirty_associations.sqlite3.db') %>
Add a stub for a mysql adapter to allow for testing for adapter-specific bugs.
Add a stub for a mysql adapter to allow for testing for adapter-specific bugs.
YAML
mit
daphonz/dirty_associations
096e208f82aba61247c082f373799f941c011a32
crowdin_content.yaml
crowdin_content.yaml
# Project settings project_identifier: "cs-unplugged" api_key_env: "CROWDIN_API_KEY" base_path: "" # Preserve directory tree during upload preserve_hierarchy: true files: [ { source: "/csunplugged/topics/content/en/**/*.yaml", translation: "/csunplugged/topics/content/%two_letters_code%/**/%original_file_name%", }, { source: "/csunplugged/topics/content/en/**/*.md", translation: "/csunplugged/topics/content/%two_letters_code%/**/%original_file_name%", } ]
# Project settings project_identifier: "cs-unplugged" api_key_env: "CROWDIN_API_KEY" base_path: "" # Preserve directory tree during upload preserve_hierarchy: true files: [ { source: "/csunplugged/topics/content/en/**/*.yaml", translation: "/csunplugged/topics/content/%two_letters_code%/**/%original_file_name%", languages_mapping: { two_letters_code: { "en-UD": "xx-lr" } } }, { source: "/csunplugged/topics/content/en/**/*.md", translation: "/csunplugged/topics/content/%two_letters_code%/**/%original_file_name%", languages_mapping: { two_letters_code: { "en-UD": "xx-lr" } } }, { source: "/csunplugged/locale/en/LC_MESSAGES/*.po", translation: "/csunplugged/locale/%two_letters_code%/LC_MESSAGES/%original_file_name%", languages_mapping: { two_letters_code: { "en-UD": "xx_LR" } } }, ]
Update crowdin config to include .po files and pseudo-language mapping
Update crowdin config to include .po files and pseudo-language mapping
YAML
mit
uccser/cs-unplugged,uccser/cs-unplugged,uccser/cs-unplugged,uccser/cs-unplugged
d1bb3c10822f8d41116e888e27e0cad8a1ead3aa
.github/stale.yml
.github/stale.yml
# Number of days of inactivity before an issue becomes stale daysUntilStale: 60 # Number of days of inactivity before a stale issue is closed daysUntilClose: 7 # Issues with these labels will never be considered stale exemptLabels: - slow-burner # Label to use when marking an issue as stale staleLabel: stale # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed in a week if no further activity occurs. # Comment to post when closing a stale issue. Set to `false` to disable closeComment: > This issue has been automatically closed because of inactivity. You can support the Cucumber core team on [opencollective](https://opencollective.com/cucumber)
# Number of days of inactivity before an issue becomes stale daysUntilStale: 60 # Number of days of inactivity before a stale issue is closed daysUntilClose: 7 # Issues with these labels will never be considered stale exemptLabels: - Slow Burner # Label to use when marking an issue as stale staleLabel: stale # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed in a week if no further activity occurs. # Comment to post when closing a stale issue. Set to `false` to disable closeComment: > This issue has been automatically closed because of inactivity. You can support the Cucumber core team on [opencollective](https://opencollective.com/cucumber)
Rename slow-burner to Slow Burner
Rename slow-burner to Slow Burner
YAML
mit
paoloambrosio/cucumber-jvm,cucumber/cucumber-jvm,cucumber/cucumber-jvm,DPUkyle/cucumber-jvm,cucumber/cucumber-jvm,DPUkyle/cucumber-jvm,paoloambrosio/cucumber-jvm,cucumber/cucumber-jvm,DPUkyle/cucumber-jvm,DPUkyle/cucumber-jvm,cucumber/cucumber-jvm,DPUkyle/cucumber-jvm,paoloambrosio/cucumber-jvm,DPUkyle/cucumber-jvm,paoloambrosio/cucumber-jvm
1f11cce2fcc87487cd2467a5e69c3de97e568af3
packages/lu/lucid-cdn.yaml
packages/lu/lucid-cdn.yaml
homepage: '' changelog-type: markdown hash: 1e3f4dd18345ad565f371e6ed0ae22b2b8b2ea8494a5dbb11064b8c17f3ce9f0 test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: Curated list of CDN imports for lucid. changelog: | # Changelog for lucid-cdn ## (v0.1.0.0) * Add bootstrap CSS and JS v.4.5.0. * Add bootstrap CSS and JS v5.0.0-alpha1. * Add fontawesome v4.7.0 * Add jquery v3.5.1 * Add mathjax v3.0.5 * Add popper v2.4.4 basic-deps: lucid: -any base: '>=4.7 && <5' all-versions: - 0.1.0.0 author: Daniel Firth latest: 0.1.0.0 description-type: markdown description: | # Lucid CDN Curated collection of CDN scripts and stylesheets with integrity shas for use with [lucid](https://hackage.haskell.org/package/lucid). Please open a PR if you'd like to add or update anything. license-name: BSD-3-Clause
homepage: '' changelog-type: markdown hash: 955dd661c455fcdee191d640fb23b8fad60d7accd2af2f349e3119505945364b test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: Curated list of CDN imports for lucid. changelog: | # Changelog for lucid-cdn ## (v0.1.0.0) * Add bootstrap CSS and JS v.4.5.0. * Add bootstrap CSS and JS v5.0.0-alpha1. * Add fontawesome v4.7.0 * Add jquery v3.5.1 * Add mathjax v3.0.5 * Add popper v2.4.4 basic-deps: lucid: -any base: '>=4.7 && <5' all-versions: - 0.1.0.0 - 0.1.0.1 author: Daniel Firth latest: 0.1.0.1 description-type: markdown description: | # Lucid CDN Curated collection of CDN scripts and stylesheets with integrity shas for use with [lucid](https://hackage.haskell.org/package/lucid). Please open a PR if you'd like to add or update anything. license-name: BSD-3-Clause
Update from Hackage at 2020-07-08T18:21:52Z
Update from Hackage at 2020-07-08T18:21:52Z
YAML
mit
commercialhaskell/all-cabal-metadata
dd6eb92da87382c082bb86109f11947cfeb8c222
packages/te/text-lens.yaml
packages/te/text-lens.yaml
homepage: https://github.com/ChrisPenner/rasa changelog-type: '' hash: 764fbbb5d04e609973d779069c26075afc0330b796102f50450d792acbad6a97 test-bench-deps: text-lens: -any base: -any hspec: -any lens: -any maintainer: christopher.penner@gmail.com synopsis: Lenses for operating over text changelog: '' basic-deps: extra: -any base: ! '>=4.7 && <5' text: -any lens: -any all-versions: - '0.1.0.0' author: Chris Penner latest: '0.1.0.0' description-type: haddock description: Lenses for operating over text license-name: MIT
homepage: https://github.com/ChrisPenner/rasa changelog-type: '' hash: aa49360b3eed02fb144acd4eb691b6c165c9c03e9e09861599fbbc4248287b21 test-bench-deps: text-lens: ! '>=0.1.1 && <0.2' base: ! '>=4.9.0.0 && <4.10' hspec: ! '>=2.2.4 && <2.3' lens: ==4.14.* maintainer: christopher.penner@gmail.com synopsis: Lenses for operating over text changelog: '' basic-deps: extra: ! '>=1.4.10 && <1.5' base: ! '>=4.8 && <5' text: ! '>=1.2.2.1 && <1.3' lens: ==4.14.* all-versions: - '0.1.0.0' - '0.1.1' author: Chris Penner latest: '0.1.1' description-type: haddock description: Lenses for operating over text license-name: BSD3
Update from Hackage at 2017-01-29T18:42:06Z
Update from Hackage at 2017-01-29T18:42:06Z
YAML
mit
commercialhaskell/all-cabal-metadata
53605f590668f56c89c5631a23173d420d902f48
.github/workflows/node.js.yml
.github/workflows/node.js.yml
# 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: Node.js CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [16.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run build --if-present - run: npm test
# 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: Node.js CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [16.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm install - run: npm run build --if-present - run: npm test
Use `npm install` not `npm ci`
Use `npm install` not `npm ci`
YAML
mit
yuanchuan/css-doodle
e30ef6567284274c440559b623598aa03580243f
.swiftlint.yml
.swiftlint.yml
opt_in_rules: - closure_end_indentation - closure_spacing - fatal_error_message - force_unwrapping - implicitly_unwrapped_optional - sorted_imports - operator_usage_whitespace - redundant_nil_coalescing - switch_case_on_newline - attributes - no_extension_access_modifier - implicit_return # rule identifiers to exclude from running disabled_rules: - colon - closure_parameter_position - opening_brace - file_length # paths to ignore during linting excluded: - Pods nesting: type_level: 3 identifier_name: excluded: - to - up trailing_whitespace: ignores_empty_lines: true ignores_comments: true attributes: always_on_same_line: ["@IBAction", "@IBOutlet", "@IBInspectable", "@objc"] always_on_line_above: ["@IBDesignable", "@UIApplicationMain", "@discardableResult"]
opt_in_rules: - closure_end_indentation - closure_spacing - fatal_error_message - force_unwrapping - implicitly_unwrapped_optional - sorted_imports - operator_usage_whitespace - redundant_nil_coalescing - switch_case_on_newline - attributes - no_extension_access_modifier - implicit_return # rule identifiers to exclude from running disabled_rules: - colon - closure_parameter_position - opening_brace - file_length # paths to ignore during linting excluded: - Pods - Example/Pods nesting: type_level: 3 identifier_name: excluded: - to - up trailing_whitespace: ignores_empty_lines: true ignores_comments: true attributes: always_on_same_line: ["@IBAction", "@IBOutlet", "@IBInspectable", "@objc"] always_on_line_above: ["@IBDesignable", "@UIApplicationMain", "@discardableResult"]
Resolve linter issue to ignore pods from the example project.
Resolve linter issue to ignore pods from the example project.
YAML
mit
DevAndArtist/RxContainer,DevAndArtist/RxContainer
b1973bc29e828fda0f01494b61f2a1e51d996bb4
example/pipeline-with-slack.yml
example/pipeline-with-slack.yml
resource_types: - name: rss-resource type: docker-image source: repository: suhlig/concourse-rss-resource tag: latest - name: slack-notification type: docker-image source: repository: cfcommunity/slack-notification-resource tag: latest resources: - name: postgres-release-versions type: rss-resource source: url: https://www.postgresql.org/versions.rss - name: slack-alert type: slack-notification source: url: {{slack-webhook-url}} jobs: - name: monitor-postgres-releases plan: - get: postgres-release-versions trigger: true - put: slack-alert params: channel: '#random' text_file: postgres-release-versions/description text: | New Postgres version available: $TEXT_FILE_CONTENT See $ATC_EXTERNAL_URL/builds/$BUILD_ID for more details.
resource_types: - name: rss-resource type: docker-image source: repository: suhlig/concourse-rss-resource tag: latest - name: slack-notification type: docker-image source: repository: cfcommunity/slack-notification-resource tag: latest resources: - name: postgres-release-versions type: rss-resource source: url: https://www.postgresql.org/versions.rss - name: slack-alert type: slack-notification source: url: {{slack-webhook-url}} jobs: - name: monitor-postgres-releases plan: - get: postgres-release-versions trigger: true - put: slack-alert params: channel: '#random' text_file: postgres-release-versions/link text: | New Postgres version available: $TEXT_FILE_CONTENT See $ATC_EXTERNAL_URL/builds/$BUILD_ID for more details.
Use link in Slack message
Use link in Slack message
YAML
mit
suhlig/concourse-rss-resource,suhlig/concourse-rss-resource
699f511a86ab37071d81db54a51209517427b6e1
hub/Chart.yaml
hub/Chart.yaml
apiVersion: v1 appVersion: '1.0' description: Deployment Chart for JupyterHub name: hub version: 0.0.1-n4733.h30468d32
apiVersion: v1 appVersion: '1.0' description: Deployment Chart for JupyterHub name: hub version: 0.0.1-n5176.h03085f2a
Update hub image for canvas oauth change.
Update hub image for canvas oauth change.
YAML
bsd-3-clause
berkeley-dsep-infra/datahub,ryanlovett/datahub,ryanlovett/datahub,ryanlovett/datahub,berkeley-dsep-infra/datahub,berkeley-dsep-infra/datahub
0059182175476d5726061595c148e4afe3bf4cab
vars/homebrew.yml
vars/homebrew.yml
--- homebrew_install_script: "{{ downloads }}/homebrew_install" homebrew_install_path: /usr/local/bin homebrew_taps: - homebrew/cask-fonts homebrew_packages: - autoconf - awscli - docker - docker-compose - gcc - gettext - git - go - grep - helm - htop - jq - kubectl - kubectx - mysql - node@12 - readline - svn - wget homebrew_cask_appdir: /Applications homebrew_cask_apps: # - emacs # TODO fix emacs with yabai: https://github.com/koekeishiya/yabai/wiki/Tips-and-tricks#tiling-emacs - authy - font-fontawesome - font-source-code-pro - gimp - google-chrome - gpg-suite - iterm2 - messenger - postman - slack - spotify - visual-studio-code - webex-meetings - zoom
--- homebrew_install_script: "{{ downloads }}/homebrew_install" homebrew_install_path: /usr/local/bin homebrew_taps: - homebrew/cask-fonts homebrew_packages: - autoconf - awscli - docker - docker-compose - gcc - gettext - git - go - grep - helm - htop - jq - kubectl - kubectx - mysql - node@12 - readline - session-manager-plugin - svn - wget homebrew_cask_appdir: /Applications homebrew_cask_apps: # - emacs # TODO fix emacs with yabai: https://github.com/koekeishiya/yabai/wiki/Tips-and-tricks#tiling-emacs - authy - firefox - font-fontawesome - font-source-code-pro - gimp - google-chrome - gpg-suite - iterm2 - messenger - postman - slack - spotify - visual-studio-code - webex-meetings - zoom
Add some more brew install
Add some more brew install
YAML
mit
brileb73/dotfiles
02202f1c55654726bfeaedbc0a663ce1fbcf3b91
src/Listabierta/Bundle/MunicipalesBundle/Resources/config/doctrine/Candidate.orm.yml
src/Listabierta/Bundle/MunicipalesBundle/Resources/config/doctrine/Candidate.orm.yml
Listabierta\Bundle\MunicipalesBundle\Entity\Candidate: type: entity table: null repositoryClass: Listabierta\Bundle\MunicipalesBundle\Entity\CandidateRepository id: id: type: integer id: true generator: strategy: AUTO fields: name: type: string length: 255 lastname: type: string length: 255 dni: type: string length: '20' email: type: string length: 255 phone: type: string length: '20' lifecycleCallbacks: { }
Listabierta\Bundle\MunicipalesBundle\Entity\Candidate: type: entity table: null repositoryClass: Listabierta\Bundle\MunicipalesBundle\Entity\CandidateRepository id: id: type: integer id: true generator: strategy: AUTO fields: name: type: string length: 255 lastname: type: string length: 255 dni: type: string length: '20' email: type: string length: 255 phone: type: string length: '20' academic_level: type: integer nullable: TRUE languages: type: array nullable: TRUE lifecycleCallbacks: { }
Add new fields in ORM candidate entity
Add new fields in ORM candidate entity
YAML
agpl-3.0
listabierta/census-ahoraencomun,listabierta/census-ahoraencomun,listabierta/census-ahoraencomun,listabierta/census-ahoraencomun
dc1c5ff4e720e407bbd0125c180246fd072fff40
packages/in/include-env.yaml
packages/in/include-env.yaml
homepage: https://github.com/unfoldml/include-env changelog-type: '' hash: a26019f303a1f41ea80a38bcc634a999fc0a5946653ecbb0c577e17e8e639530 test-bench-deps: {} maintainer: oss@unfoldml.com synopsis: Include the value of an environment variable at compile time changelog: '' basic-deps: base: '>=4.7 && <5' template-haskell: '>=2.14' all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.3.0 - 0.2.0.0 author: Marco Zocca latest: 0.2.0.0 description-type: markdown description: "# include-env\n\nEmbed secrets (e.g. API keys) from environment variables inside production artifacts without checking them into the repository. \n\nThis use case is relevant e.g. in continuous integration (CI) settings.\n\n# Example \n\nIn GitHub each private repository can have a number of secrets, which can be conveniently changed without being exposed as needed; GitHub Actions can pass repository secrets in as environment variables during any step, which is where this library comes in handy.\n" license-name: BSD-3-Clause
homepage: https://github.com/unfoldml/include-env changelog-type: '' hash: 315c060b0c3679958d2023a4408d353a5bd5973f3bd05b096e276cf82420cef4 test-bench-deps: {} maintainer: oss@unfoldml.com synopsis: Include the value of an environment variable at compile time changelog: '' basic-deps: base: '>=4.7 && <5' template-haskell: '>=2.14' all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.3.0 - 0.3.0.0 author: Marco Zocca latest: 0.3.0.0 description-type: markdown description: "# include-env\n\nEmbed secrets (e.g. API keys) from environment variables inside production artifacts without checking them into the repository. \n\nThis use case is relevant e.g. in continuous integration (CI) settings.\n\n# Example \n\nIn GitHub each private repository can have a number of secrets, which can be conveniently changed without being exposed as needed; GitHub Actions can pass repository secrets in as environment variables during any step, which is where this library comes in handy.\n" license-name: BSD-3-Clause
Update from Hackage at 2021-09-11T11:08:56Z
Update from Hackage at 2021-09-11T11:08:56Z
YAML
mit
commercialhaskell/all-cabal-metadata
801351f98b92cf03d292b3e32b972e3db84917a3
packages/pa/parsec-free.yaml
packages/pa/parsec-free.yaml
homepage: https://github.com/jwiegley/parsec-free changelog-type: '' hash: 900acd53ec3d2610c3d8ad8d5cbcb6f61a458bd597c48cc9d0dcbc02ed7d33d5 test-bench-deps: {} maintainer: johnw@newartisans.com synopsis: Parsec API encoded as a deeply-embedded DSL, for debugging and analysis changelog: '' basic-deps: free: -any bytestring: -any base: ! '>=4 && <5' text: ! '>=0.2 && <1.3' parsec: ! '>=3.1.11' containers: -any lens: -any mtl: -any transformers: ! '>=0.4 && <0.6' all-versions: - '3.1.11.1' - '3.1.11.2' - '3.1.11.3' - '3.1.11.4' author: John Wiegley latest: '3.1.11.4' description-type: haddock description: Parsec API encoded as a deeply-embedded DSL, for debugging and analysis license-name: MIT
homepage: https://github.com/jwiegley/parsec-free changelog-type: '' hash: a03c7d2620df0a5ea12a1827c25e4b176656a97851a4c861c1ad971bcfb5ca63 test-bench-deps: {} maintainer: johnw@newartisans.com synopsis: Parsec API encoded as a deeply-embedded DSL, for debugging and analysis changelog: '' basic-deps: free: -any bytestring: -any base: ! '>=4 && <5' text: ! '>=0.2 && <1.3' parsec: ! '>=3.1.11' containers: -any lens: -any mtl: -any transformers: ! '>=0.4 && <0.6' all-versions: - '3.1.11.1' - '3.1.11.2' - '3.1.11.3' - '3.1.11.4' - '3.1.11.5' author: John Wiegley latest: '3.1.11.5' description-type: haddock description: Parsec API encoded as a deeply-embedded DSL, for debugging and analysis license-name: MIT
Update from Hackage at 2016-10-11T05:29:24+00:00
Update from Hackage at 2016-10-11T05:29:24+00:00
YAML
mit
commercialhaskell/all-cabal-metadata
836fc978787d236cf0807df2822c593446f3a8e5
packages/te/terminfo-hs.yaml
packages/te/terminfo-hs.yaml
homepage: '' changelog-type: '' hash: e249dbcdf6dbfeb7f98d71d2186563368fae96b0adc9b3c192f12f897d0b98e6 test-bench-deps: base: -any filepath: -any terminfo-hs: -any errors: -any QuickCheck: -any directory: -any maintainer: bryan.richter@gmail.com synopsis: A pure-Haskell (no FFI) module for accessing terminfo databases changelog: '' basic-deps: bytestring: -any base: <=4.8 filepath: -any containers: -any attoparsec: -any errors: -any directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.2.0' author: Bryan Richter latest: '0.2.0' description-type: haddock description: ! 'This module can acquire terminfo databases and query them for terminal capabilities. For details of terminfo, consult the man pages for term(5) and terminfo(5). This package is dead simple, and doesn''t do anything fancy with the capabilities themselves. It merely provides a means for accessing them.' license-name: BSD3
homepage: '' changelog-type: '' hash: ca6b5ef2ea438cc36425d227c9e43a7ab4cf22d453acd19198d859eda8604a73 test-bench-deps: base: -any filepath: -any terminfo-hs: -any errors: -any QuickCheck: -any directory: -any maintainer: bryan.richter@gmail.com synopsis: A pure-Haskell (no FFI) module for accessing terminfo databases changelog: '' basic-deps: bytestring: -any base: <5 filepath: -any containers: -any attoparsec: -any errors: -any directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.2.0' - '0.2.1' author: Bryan Richter latest: '0.2.1' description-type: haddock description: ! 'This module can acquire terminfo databases and query them for terminal capabilities. For details of terminfo, consult the man pages for term(5) and terminfo(5). This package is dead simple, and doesn''t do anything fancy with the capabilities themselves. It merely provides a means for accessing them.' license-name: BSD3
Update from Hackage at 2015-08-17T19:38:31+0000
Update from Hackage at 2015-08-17T19:38:31+0000
YAML
mit
commercialhaskell/all-cabal-metadata
a20f9ce5c032dbc5ba9b6ce26bb3b9f86d46d5f7
opencv/meta.yaml
opencv/meta.yaml
package: name: opencv version: 2.4.11 source: fn: opencv-2.4.11.zip url: http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.11/opencv-2.4.11.zip/download sha1: d6e3048416d42213c204f89b9dfe39742f9a708c patches: - osx_rpath.patch # [osx] build: number: 0 skip: true # [not py27] requirements: build: - cmake - numpy x.x - python - eigen 3.* - tbb 4.* # [osx] run: - python - numpy x.x - tbb 4.* # [osx] test: imports: - cv2 - cv2.cv about: home: http://opencv.org/ license: BSD 3-clause summary: Computer vision and machine learning software library. extra: recipe-maintainers: - jakirkham - patricksnape
{% set version = "2.4.11" %} {% set filename = "opencv-%s.zip" % version %} package: name: opencv version: {{ version }} source: fn: {{ filename }} url: http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/{{ version }}/{{ filename }}/download sha1: d6e3048416d42213c204f89b9dfe39742f9a708c patches: - osx_rpath.patch # [osx] build: number: 0 skip: true # [not py27] requirements: build: - cmake - numpy x.x - python - eigen 3.* - tbb 4.* # [osx] run: - python - numpy x.x - tbb 4.* # [osx] test: imports: - cv2 - cv2.cv about: home: http://opencv.org/ license: BSD 3-clause summary: Computer vision and machine learning software library. extra: recipe-maintainers: - jakirkham - patricksnape
Use version and filename Jinja templates
Use version and filename Jinja templates
YAML
bsd-3-clause
Juanlu001/staged-recipes,grlee77/staged-recipes,data-exp-lab/staged-recipes,sodre/staged-recipes,igortg/staged-recipes,johanneskoester/staged-recipes,guillochon/staged-recipes,atedstone/staged-recipes,igortg/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,ericdill/staged-recipes,jerowe/staged-recipes,chrisburr/staged-recipes,chohner/staged-recipes,mcs07/staged-recipes,koverholt/staged-recipes,hbredin/staged-recipes,Cashalow/staged-recipes,gqmelo/staged-recipes,rvalieris/staged-recipes,pstjohn/staged-recipes,goanpeca/staged-recipes,rmcgibbo/staged-recipes,arokem/staged-recipes,vamega/staged-recipes,jcb91/staged-recipes,tylere/staged-recipes,larray-project/staged-recipes,stuertz/staged-recipes,barkls/staged-recipes,conda-forge/staged-recipes,sodre/staged-recipes,NOAA-ORR-ERD/staged-recipes,petrushy/staged-recipes,valgur/staged-recipes,jochym/staged-recipes,richardotis/staged-recipes,ocefpaf/staged-recipes,Juanlu001/staged-recipes,ceholden/staged-recipes,jochym/staged-recipes,barkls/staged-recipes,arokem/staged-recipes,cpaulik/staged-recipes,johannesring/staged-recipes,jakirkham/staged-recipes,vamega/staged-recipes,rvalieris/staged-recipes,Cashalow/staged-recipes,Savvysherpa/staged-recipes,jakevdp/staged-recipes,basnijholt/staged-recipes,hadim/staged-recipes,hajapy/staged-recipes,atedstone/staged-recipes,dharhas/staged-recipes,planetarypy/staged-recipes,pstjohn/staged-recipes,ericdill/staged-recipes,ceholden/staged-recipes,hbredin/staged-recipes,benvandyke/staged-recipes,benvandyke/staged-recipes,synapticarbors/staged-recipes,gqmelo/staged-recipes,patricksnape/staged-recipes,chrisburr/staged-recipes,bmabey/staged-recipes,larray-project/staged-recipes,mcernak/staged-recipes,patricksnape/staged-recipes,ocefpaf/staged-recipes,pmlandwehr/staged-recipes,glemaitre/staged-recipes,isuruf/staged-recipes,nicoddemus/staged-recipes,bmabey/staged-recipes,pmlandwehr/staged-recipes,rmcgibbo/staged-recipes,jerowe/staged-recipes,mcernak/staged-recipes,OpenPIV/staged-recipes,caspervdw/staged-recipes,richardotis/staged-recipes,mariusvniekerk/staged-recipes,dfroger/staged-recipes,johannesring/staged-recipes,dharhas/staged-recipes,jakevdp/staged-recipes,planetarypy/staged-recipes,SylvainCorlay/staged-recipes,tylere/staged-recipes,NOAA-ORR-ERD/staged-recipes,glemaitre/staged-recipes,cpaulik/staged-recipes,jjhelmus/staged-recipes,khallock/staged-recipes,SylvainCorlay/staged-recipes,hadim/staged-recipes,kwilcox/staged-recipes,asmeurer/staged-recipes,shadowwalkersb/staged-recipes,rolando-contrib/staged-recipes,dfroger/staged-recipes,mariusvniekerk/staged-recipes,sannykr/staged-recipes,data-exp-lab/staged-recipes,koverholt/staged-recipes,valgur/staged-recipes,caspervdw/staged-recipes,dschreij/staged-recipes,kwilcox/staged-recipes,blowekamp/staged-recipes,sodre/staged-recipes,shadowwalkersb/staged-recipes,basnijholt/staged-recipes,petrushy/staged-recipes,blowekamp/staged-recipes,goanpeca/staged-recipes,ReimarBauer/staged-recipes,guillochon/staged-recipes,OpenPIV/staged-recipes,mcs07/staged-recipes,jjhelmus/staged-recipes,hajapy/staged-recipes,sannykr/staged-recipes,chohner/staged-recipes,grlee77/staged-recipes,ReimarBauer/staged-recipes,dschreij/staged-recipes,birdsarah/staged-recipes,isuruf/staged-recipes,jcb91/staged-recipes,nicoddemus/staged-recipes,asmeurer/staged-recipes,synapticarbors/staged-recipes,birdsarah/staged-recipes,Savvysherpa/staged-recipes,rolando-contrib/staged-recipes,scopatz/staged-recipes,JohnGreeley/staged-recipes,khallock/staged-recipes,JohnGreeley/staged-recipes,stuertz/staged-recipes,scopatz/staged-recipes
48a2a2c396002c1d7c5dce5c5570249e7eb1de84
Magic/src/main/resources/examples/rpg/spells/monk/thousandpunches.yml
Magic/src/main/resources/examples/rpg/spells/monk/thousandpunches.yml
thousandpunches: # This has been added automatically so that anything you remove here does not get inherited back in from the default configs inherit: false actions: cast: # The first punch under Interval will skip its effects, so we do the first one here - class: PlayEffects effects: punch - class: Interval actions: - class: ConeOfEffect actions: - class: Damage - class: Skip until: 0.75 seconds actions: - class: PlayEffects effects: punch - class: Random actions: - class: EntityAnimation animation: swing_main_hand - class: PlayEffects effects: punch_main_hand - class: EntityAnimation animation: swing_off_hand - class: PlayEffects effects: punch_off+hand effects: punch: - sound: entity_player_attack_sweep sound_pitch: rand(0.5,1.5) punch_off_hand: - particle: sweep_attack relative_offset: -1,0,0 punch_main_hand: - particle: sweep_attack relative_offset: 1,0,0 parameters: target: self duration: 5 seconds delay: 0.1 seconds cooldown: 6 seconds range: 2 fov: 45 damage: 0.1 no_damage_ticks: 0 knockback_resistance: 1000
thousandpunches: # This has been added automatically so that anything you remove here does not get inherited back in from the default configs inherit: false actions: cast: # The first punch under Interval will skip its effects, so we do the first one here - class: PlayEffects effects: punch - class: Interval actions: - class: ConeOfEffect actions: - class: Damage - class: Skip until: 0.75 seconds actions: - class: PlayEffects effects: punch - class: Random actions: - class: EntityAnimation animation: swing_main_hand - class: PlayEffects effects: punch_main_hand - class: EntityAnimation animation: swing_off_hand - class: PlayEffects effects: punch_off+hand effects: punch: - sound: entity_player_attack_sweep sound_pitch: rand(0.5,1.5) punch_off_hand: - particle: sweep_attack relative_offset: -1,0,0 punch_main_hand: - particle: sweep_attack relative_offset: 1,0,0 parameters: target: self duration: (constitution / 4) * seconds delay: ((20 - dexterity) * 0.01 + 0.1) * seconds cooldown: ((20 - constitution) / 5 + 4) seconds range: 2 fov: 45 damage: 0.1 * strength / 5 no_damage_ticks: 0 knockback_resistance: 1000
Make 1,000 punches scale with various attributes
Make 1,000 punches scale with various attributes
YAML
mit
elBukkit/MagicPlugin,elBukkit/MagicPlugin,elBukkit/MagicPlugin
50eed153925ac55afd3d2eb59143e55f5d319d7b
kube/web-deployment.yml
kube/web-deployment.yml
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: web spec: replicas: 1 template: metadata: labels: app: hitcounter tier: frontend spec: containers: - name: hitcounter image: kkonstan/hitcounter:v1.0 ports: - containerPort: 80 env: - name: WHO valueFrom: configMapKeyRef: name: hitcounter key: who
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: web spec: replicas: 1 template: metadata: labels: app: hitcounter tier: frontend spec: containers: - name: hitcounter image: kkonstan/hitcounter:v1.1 ports: - containerPort: 80 env: - name: WHO valueFrom: configMapKeyRef: name: hitcounter key: who
Update kubernetes web deployment to use v1.1
Update kubernetes web deployment to use v1.1
YAML
bsd-2-clause
kkonstan/hitcounter
132c592b3f423b9f2b751acb80e120a1d34b7361
packmol/meta.yaml
packmol/meta.yaml
package: name: packmol version: 1.0.0 source: fn: packmol.tar.gz url: http://www.ime.unicamp.br/~martinez/packmol/packmol.tar.gz build: number: 4 requirements: build: - zlib - python - mingwpy [win] - gcc [unix] - libgfortran ==1.0 [linux] run: - zlib - libgcc [unix] - libgfortran ==1.0 [linux] test: commands: - which packmol about: home: http://www.ime.unicamp.br/~martinez/packmol/ license: GPL summary: Packing Optimization for Molecular Dynamics Simulations
package: name: packmol version: 2016.06.09 source: fn: packmol.tar.gz url: http://www.ime.unicamp.br/~martinez/packmol/packmol.tar.gz build: number: 1 requirements: build: - zlib - python - mingwpy [win] - gcc [unix] - libgfortran ==1.0 [linux] run: - zlib - libgcc [unix] - libgfortran ==1.0 [linux] test: commands: - which packmol about: home: http://www.ime.unicamp.br/~martinez/packmol/ license: GPL summary: Packing Optimization for Molecular Dynamics Simulations
Update packmol to 2016-06-09 version
Update packmol to 2016-06-09 version
YAML
mit
jchodera/conda-recipes,swails/conda-recipes,marscher/omnia-conda-recipes,cwehmeyer/conda-recipes,jchodera/conda-recipes,swails/conda-recipes,swails/conda-recipes,cwehmeyer/conda-recipes,omnia-md/conda-recipes,marscher/omnia-conda-recipes,marscher/omnia-conda-recipes,omnia-md/conda-recipes,marscher/omnia-conda-recipes,peastman/conda-recipes,jchodera/conda-recipes,swails/conda-recipes,cwehmeyer/conda-recipes,omnia-md/conda-recipes,jchodera/conda-recipes,cwehmeyer/conda-recipes,peastman/conda-recipes,peastman/conda-recipes
372ace66480dc3ab462bff09fe43c862bea2dd98
ansible/roles/rpmfusion/tasks/setup-Fedora.yml
ansible/roles/rpmfusion/tasks/setup-Fedora.yml
--- - name: install the rpmfusion repo packages yum: name={{ item }} state=present with_items: - https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ fedora_current }}.noarch.rpm - https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ fedora_current }}.noarch.rpm when: ansible_os_family == "RedHat" become: yes
--- - name: install the rpmfusion repo packages dnf: name={{ item }} state=present with_items: - https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ fedora_current }}.noarch.rpm - https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ fedora_current }}.noarch.rpm when: ansible_os_family == "RedHat" become: yes
FIX : rpmfusion - use of dnf instead of yum to install rpmfusion - RedHat bug fixed
[LAI] FIX : rpmfusion - use of dnf instead of yum to install rpmfusion - RedHat bug fixed
YAML
mit
newlight77/ubuntu
394d80d454c2bc0d324794248fc841423248ab44
locales/en.yml
locales/en.yml
en: lita: handlers: snoo: help: snoo_url_key: "reddit URL" snoo_url_value: "Retrieve the original reddit post for URL." snoo_sub_key: "/r/SUBREDDIT [n]" snoo_sub_value: "Return the top (or nth) post in SUBREDDIT."
en: lita: handlers: snoo: help: snoo_url_key: "reddit URL" snoo_url_value: "Retrieve the original reddit post for URL." snoo_sub_key: "/r/SUBREDDIT [N|QUERY]" snoo_sub_value: "Return the top (or Nth) post in SUBREDDIT / Search for QUERY within SUBREDDIT."
Update help text to include subreddit search
locales: Update help text to include subreddit search
YAML
mit
tristaneuan/lita-snoo
10502380a961368eac020385adc1c73bc7f63285
pymbar/meta.yaml
pymbar/meta.yaml
package: name: pymbar version: 3.0.0.beta2 source: url: https://github.com/choderalab/pymbar/archive/3.0.0.beta2.zip fn: 3.0.0.beta2.zip build: number: 0 requirements: build: - python - setuptools - numpy x.x - scipy - six run: - python - numpy x.x - scipy - six test: commands: - nosetests imports: - pymbar - pymbar.bar requires: - nose commands: #- nosetests pymbar -vv --with-doctest --nocapture about: home: http://github.com/choderalab/pymbar license: LGPL summary: Python implementation of the multistate Bennett acceptance ratio (MBAR).
package: name: pymbar version: "3.0.1.beta0" source: git_url: https://github.com/choderalab/pymbar.git git_tag: "3.0.1.beta0" build: number: 0 requirements: build: - python - setuptools - numpy x.x - scipy - six - numexpr run: - python - numpy x.x - scipy - six - numexpr test: commands: - nosetests imports: - pymbar - pymbar.bar requires: - nose commands: #- nosetests pymbar -vv --with-doctest --nocapture about: home: http://github.com/choderalab/pymbar license: LGPL summary: Python implementation of the multistate Bennett acceptance ratio (MBAR).
Update mbar to allow Numpy 1.12 and Python 3.6
Update mbar to allow Numpy 1.12 and Python 3.6
YAML
mit
omnia-md/conda-recipes,omnia-md/conda-recipes,jchodera/conda-recipes,peastman/conda-recipes,jchodera/conda-recipes,omnia-md/conda-recipes,jchodera/conda-recipes,peastman/conda-recipes,jchodera/conda-recipes,peastman/conda-recipes
a8fe561706771734197b960dd8689bce0b4877d5
config/cucumber.yml
config/cucumber.yml
<% rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" std_opts = "--format html --out tmp/features.html --format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --strict --tags ~@wip" %> default: <%= std_opts %> features wip: --tags @wip:3 --wip features rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
<% rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" std_opts = "--format html --out tmp/features.html --format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --tags ~@wip" %> default: <%= std_opts %> features wip: --tags @wip:3 --wip features rerun: <%= rerun_opts %> --format rerun --out rerun.txt --tags ~@wip
Remove --strict from Cucumber config as we have pending steps
Remove --strict from Cucumber config as we have pending steps https://github.com/cucumber/cucumber/wiki/Step-Definitions#pending-steps Was giving an exit status of 1 which was causing the build to fail in Go
YAML
mit
moneyadviceservice/frontend,moneyadviceservice/frontend,moneyadviceservice/frontend,moneyadviceservice/frontend
51331125636f4cdad428242ccce5c10ae963f552
packages/fi/file-modules.yaml
packages/fi/file-modules.yaml
homepage: https://github.com/yamadapc/stack-run-auto changelog-type: '' hash: a6ef34146781c60ce63af0e14be9da4b3f03a1085616e4bca5af07409244177a test-bench-deps: {} maintainer: tacla.yamada@gmail.com synopsis: Takes a Haskell source-code file and outputs its modules. changelog: '' basic-deps: MissingH: -any base: ! '>=4.5 && <5' filepath: -any async: -any haskell-src-exts: ! '>=1.17 && <2' directory: -any all-versions: - '0.1.0.0' - '0.1.1.0' - '0.1.2.0' - '0.1.2.1' author: Pedro Tacla Yamada latest: '0.1.2.1' description-type: haddock description: ! 'Uses @haskell-src-exts@ to parse module imports and follows links . to local modules in order to build a list of module dependencies.' license-name: MIT
homepage: https://github.com/yamadapc/stack-run-auto changelog-type: '' hash: 46bdc1d3db0a526a77deaa33e59599ad528ae583bd095c306e47d9a79fefdccb test-bench-deps: {} maintainer: tacla.yamada@gmail.com synopsis: Takes a Haskell source-code file and outputs its modules. changelog: '' basic-deps: MissingH: -any base: ! '>=4.5 && <5' filepath: -any async: -any haskell-src-exts: ! '>=1.17 && <2' directory: -any all-versions: - '0.1.0.0' - '0.1.1.0' - '0.1.2.0' - '0.1.2.1' - '0.1.2.2' author: Pedro Tacla Yamada latest: '0.1.2.2' description-type: haddock description: ! 'Uses @haskell-src-exts@ to parse module imports and follows links . to local modules in order to build a list of module dependencies.' license-name: MIT
Update from Hackage at 2015-11-29T02:16:24+0000
Update from Hackage at 2015-11-29T02:16:24+0000
YAML
mit
commercialhaskell/all-cabal-metadata
66052e1847a1a63a8513aa45239a7bf2afc79944
packages/ha/haskus-utils.yaml
packages/ha/haskus-utils.yaml
homepage: http://www.haskus.org/system changelog-type: '' hash: ace07b7612638e978d68efbd47e88a4952d7c67f646e9ee12b02ae2aa2fc92fd test-bench-deps: base: -any tasty-quickcheck: ! '>=0.8' haskus-utils: -any tasty: ! '>=0.11' maintainer: sylvain@haskus.fr synopsis: Haskus utility modules changelog: '' basic-deps: extra: ! '>=1.4' stm: ! '>=2.4' base: ! '>=4.9 && <4.10' list-t: ! '>=0.4' containers: ! '>=0.5' mtl: ! '>=2.2' file-embed: ! '>=0.0.10' transformers: ! '>=0.4' stm-containers: ! '>=0.2' template-haskell: ! '>=2.10' vector: ! '>=0.11' all-versions: - '0.6.0.0' - '0.7.0.0' author: Sylvain Henry latest: '0.7.0.0' description-type: haddock description: Various utility modules used by Haskus packages. license-name: BSD3
homepage: http://www.haskus.org/system changelog-type: '' hash: 69e29d39c74a16b25034f3df1ab2a09029e7cdc34a64f34f82837fa3e0cb976f test-bench-deps: base: ! '>=4.10.1.0 && <4.11' tasty-quickcheck: ! '>=0.8 && <0.10' haskus-utils: -any tasty: ==0.11.* maintainer: sylvain@haskus.fr synopsis: Haskus utility modules changelog: '' basic-deps: extra: ! '>=1.4 && <1.7' stm: ==2.4.* base: ! '>=4.9 && <4.11' list-t: ! '>=0.4 && <1.1' containers: ==0.5.* mtl: ==2.2.* file-embed: ! '>=0.0.10 && <0.1' transformers: ! '>=0.4 && <0.6' stm-containers: ==0.2.* template-haskell: ! '>=2.10 && <2.13' vector: ! '>=0.11 && <0.13' all-versions: - '0.6.0.0' - '0.7.0.0' - '0.8.0.0' author: Sylvain Henry latest: '0.8.0.0' description-type: haddock description: Various utility modules used by Haskus packages. license-name: BSD3
Update from Hackage at 2018-02-21T16:34:38Z
Update from Hackage at 2018-02-21T16:34:38Z
YAML
mit
commercialhaskell/all-cabal-metadata
566f82744ebb668c5f71186a2adf898160c600ca
packages/ka/katip-syslog.yaml
packages/ka/katip-syslog.yaml
homepage: https://github.com/iconnect/katip-syslog#readme changelog-type: '' hash: bd427422b5957c4f82fe833fb9505b6e3b4323f18c40ac154a5781693d46210e test-bench-deps: katip-syslog: -any base: -any maintainer: alfredo@irisconnect.co.uk synopsis: Syslog Katip Scribe changelog: '' basic-deps: katip: <0.4.0.0 bytestring: <0.12 base: ! '>=4.7 && <5' hsyslog: ! '>=4 && <5' text: <1.3.0.0 string-conv: <0.2 aeson: <2.0.0.0 all-versions: - 0.1.0.0 author: Alfredo Di Napoli latest: 0.1.0.0 description-type: markdown description: ! '# katip-syslog This Haskell package provides a simple Katip Scribe which logs to syslog. ' license-name: BSD-3-Clause
homepage: https://github.com/iconnect/katip-syslog#readme changelog-type: '' hash: 5624c80d3d5040f82a282b45757301f130f6a0230c5463f33f23e63fb3f586d2 test-bench-deps: katip-syslog: -any base: -any maintainer: chrisd@irisconnect.co.uk synopsis: Syslog Katip Scribe changelog: '' basic-deps: katip: <0.8.0.0 bytestring: <0.12 base: ! '>=4.7 && <5' hsyslog: ! '>=4 && <5' text: <1.3.0.0 string-conv: <0.2 aeson: <2.0.0.0 all-versions: - 0.1.0.0 - 0.1.1.0 author: Alfredo Di Napoli latest: 0.1.1.0 description-type: markdown description: | # katip-syslog This Haskell package provides a simple Katip Scribe which logs to syslog. license-name: BSD-3-Clause
Update from Hackage at 2019-01-02T17:08:37Z
Update from Hackage at 2019-01-02T17:08:37Z
YAML
mit
commercialhaskell/all-cabal-metadata
218a6a72308c5780b17bde97207b1b277051f728
.xmonad/stack.yaml
.xmonad/stack.yaml
resolver: lts-5.5 packages: [.] extra-deps: - xmonad-0.13 - xmonad-contrib-0.13 - X11-xft-0.3.1 - setlocale-1.0.0.4 - X11-1.8 - directory-1.2.7.1
resolver: lts-5.5 packages: [.] extra-deps: - xmonad-0.13 - xmonad-contrib-0.13 - X11-xft-0.3.1 - setlocale-1.0.0.4 - X11-1.8 - directory-1.2.7.1 - process-1.6.5.1
Add `process` for Xmonad config
Add `process` for Xmonad config Newer versions of Haskell Stack don't have it by default.
YAML
mit
benizi/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfiles
eefc4e3a247a1ba44383f8b05d9e6e3850f0f37e
roles/intellij/vars/main.yml
roles/intellij/vars/main.yml
--- intellij_archive: "ideaIC-14.1.3.tar.gz" intellij_url: "http://download.jetbrains.com/idea/{{intellij_archive}}" intellij_subdir: "idea-IC-141.1010.3" intellij_scala_plugin_ver: '1.4.15' intellij_scala_plugin_archive: 'scala-intellij-bin-{{ intellij_scala_plugin_ver }}.zip' intellij_scala_plugin_url: 'http://plugins.jetbrains.com/files/1347/19130/{{ intellij_scala_plugin_archive }}'
--- intellij_archive: "ideaIC-14.1.2.tar.gz" intellij_url: "http://download.jetbrains.com/idea/{{intellij_archive}}" intellij_subdir: "idea-IC-141.713.2" intellij_scala_plugin_ver: '1.4.15' intellij_scala_plugin_archive: 'scala-intellij-bin-{{ intellij_scala_plugin_ver }}.zip' intellij_scala_plugin_url: 'http://plugins.jetbrains.com/files/1347/19130/{{ intellij_scala_plugin_archive }}'
Revert "upgraded intellij to 14.1.3"
Revert "upgraded intellij to 14.1.3" This reverts commit 4e0c532369f93a2541f126bba106c411003cb576.
YAML
mit
andrewrothstein/ansible-playbooks
0085339b1658b2b1974c6eccbf21b4e4a58fc61c
releasenotes/notes/raise-bad-request-exception-on-validating-inspection-failure-57d7fd2999cf4ecf.yaml
releasenotes/notes/raise-bad-request-exception-on-validating-inspection-failure-57d7fd2999cf4ecf.yaml
--- fixes: - Raise HTTP 400 Bad request on failure to validate power or inspect interface parameters before inspecting.
--- fixes: - Raises HTTP 400 ``Bad Request`` (instead of HTTP 500 ``Internal Server``) error on failure to validate ``power`` or ``inspect`` interface parameters before performing a hardware inspection.
Clarify fix for inspect validation failures
[reno] Clarify fix for inspect validation failures This updates the reno for 3bda561e318e0172d6209f1580340ed9a04a161d to clarify what was being fixed (returning HTTP 400 instead of HTTP 500). Change-Id: I412b650a22af3fdbaa92771c66eb37f3c07b7243 Related-Bug: #1686457
YAML
apache-2.0
pshchelo/ironic,openstack/ironic,SauloAislan/ironic,openstack/ironic,pshchelo/ironic,SauloAislan/ironic
858b83aa397423e3f116159773471e37712eda37
conf/conda-recipes/openmpi/meta.yaml
conf/conda-recipes/openmpi/meta.yaml
package: name: openmpi version: 2.0.1 about: home: http://www.open-mpi.org/ summary: 'Open MPI: A high performance message passing library' license: 'BSD (https://www.open-mpi.org/community/license.php)' requirements: conflicts: - mpich - mpich2 source: fn: openmpi-2.0.1.tar.bz2 url: http://www.open-mpi.org/software/ompi/v2.0/downloads/openmpi-2.0.1.tar.bz2 md5: 6f78155bd7203039d2448390f3b51c96 build: number: 0 features: - openmpi track_features: - openmpi skip: true # [win] binary_relocation: true detect_binary_files_with_prefix: true test: files: - test/helloworld.c - test/helloworld.cxx commands: - command -v ompi_info - ompi_info - command -v mpiexec - mpiexec -n 4 hostname - command -v mpicc - mpicc -show - mpicc test/helloworld.c -o helloworld_c - export DYLD_LIBRARY_PATH=$PREFIX/lib # [osx] - mpiexec -n 4 ./helloworld_c
package: name: openmpi version: 2.0.2 about: home: http://www.open-mpi.org/ summary: 'Open MPI: A high performance message passing library' license: 'BSD (https://www.open-mpi.org/community/license.php)' requirements: conflicts: - mpich - mpich2 source: fn: openmpi-2.0.2.tar.bz2 url: http://www.open-mpi.org/software/ompi/v2.0/downloads/openmpi-2.0.2.tar.bz2 md5: ecd99aa436a1ca69ce936a96d6a3fa48 build: number: 0 features: - openmpi track_features: - openmpi skip: true # [win] binary_relocation: true detect_binary_files_with_prefix: true test: files: - test/helloworld.c - test/helloworld.cxx commands: - command -v ompi_info - ompi_info - command -v mpiexec - mpiexec -n 4 hostname - command -v mpicc - mpicc -show - mpicc test/helloworld.c -o helloworld_c - export DYLD_LIBRARY_PATH=$PREFIX/lib # [osx] - mpiexec -n 4 ./helloworld_c
Update Open MPI recipe to 2.0.2
conda: Update Open MPI recipe to 2.0.2
YAML
bsd-2-clause
mpi4py/mpi4py,mpi4py/mpi4py,mpi4py/mpi4py
1263fff9ea31f644875dda86873e98cfa516a724
sky/packages/sky/pubspec.yaml
sky/packages/sky/pubspec.yaml
name: sky version: 0.0.26 author: Chromium Authors <sky-dev@googlegroups.com> description: A framework for writing Sky applications homepage: https://github.com/domokit/sky_engine/tree/master/sky/packages/sky dependencies: cassowary: ^0.1.7 material_design_icons: ^0.0.2 mojo_services: 0.0.21 mojo: 0.0.21 newton: ^0.1.2 sky_engine: ^0.0.3 sky_services: ^0.0.4 sky_tools: ^0.0.4 vector_math: ^1.4.3 environment: sdk: '>=1.8.0 <2.0.0'
name: sky version: 0.0.26 author: Chromium Authors <sky-dev@googlegroups.com> description: A framework for writing Sky applications homepage: https://github.com/domokit/sky_engine/tree/master/sky/packages/sky dependencies: cassowary: ^0.1.7 material_design_icons: ^0.0.2 mojo_services: 0.0.21 mojo: 0.0.21 newton: ^0.1.2 sky_engine: ^0.0.4 sky_services: ^0.0.5 sky_tools: ^0.0.4 vector_math: ^1.4.3 environment: sdk: '>=1.8.0 <2.0.0'
Make sky package depend on new sky_engine and sky_services
Make sky package depend on new sky_engine and sky_services
YAML
bsd-3-clause
mpcomplete/engine,xunmengfeng/engine,axinging/sky_engine,axinging/sky_engine,jason-simmons/sky_engine,Hixie/sky_engine,tvolkert/engine,xunmengfeng/engine,tvolkert/engine,mpcomplete/engine,Hixie/sky_engine,mxia/engine,TribeMedia/sky_engine,afandria/sky_engine,rmacnak-google/engine,mdakin/engine,devoncarew/sky_engine,tvolkert/engine,chinmaygarde/sky_engine,mxia/engine,TribeMedia/sky_engine,lyceel/engine,jason-simmons/flutter_engine,mpcomplete/flutter_engine,qiankunshe/sky_engine,afandria/sky_engine,devoncarew/engine,mikejurka/engine,cdotstout/sky_engine,krisgiesing/sky_engine,cdotstout/sky_engine,tvolkert/engine,chinmaygarde/flutter_engine,zhangxq5012/sky_engine,iansf/sky_engine,mpcomplete/flutter_engine,aam/engine,jamesr/flutter_engine,cdotstout/sky_engine,devoncarew/sky_engine,mdakin/engine,jamesr/flutter_engine,jason-simmons/flutter_engine,mpcomplete/engine,flutter/engine,iansf/sky_engine,jamesr/flutter_engine,krisgiesing/sky_engine,jason-simmons/flutter_engine,Hixie/sky_engine,afandria/sky_engine,iansf/sky_engine,mdakin/engine,qiankunshe/sky_engine,mpcomplete/flutter_engine,abarth/sky_engine,abarth/sky_engine,mdakin/engine,mpcomplete/engine,mxia/engine,mpcomplete/engine,chinmaygarde/sky_engine,axinging/sky_engine,lyceel/engine,Hixie/sky_engine,qiankunshe/sky_engine,aam/engine,TribeMedia/sky_engine,krisgiesing/sky_engine,mikejurka/engine,aam/engine,jason-simmons/flutter_engine,xunmengfeng/engine,axinging/sky_engine,cdotstout/sky_engine,rmacnak-google/engine,lyceel/engine,flutter/engine,devoncarew/engine,mdakin/engine,jason-simmons/flutter_engine,axinging/sky_engine,axinging/sky_engine,chinmaygarde/flutter_engine,Hixie/sky_engine,mikejurka/engine,TribeMedia/sky_engine,flutter/engine,mikejurka/engine,mikejurka/engine,aam/engine,jamesr/flutter_engine,mikejurka/engine,aam/engine,jamesr/flutter_engine,jason-simmons/sky_engine,devoncarew/engine,chinmaygarde/sky_engine,aam/engine,krisgiesing/sky_engine,abarth/sky_engine,iansf/sky_engine,mxia/engine,krisgiesing/sky_engine,mdakin/engine,xunmengfeng/engine,chinmaygarde/sky_engine,mxia/engine,zhangxq5012/sky_engine,axinging/sky_engine,mxia/engine,mdakin/engine,jamesr/sky_engine,mpcomplete/flutter_engine,flutter/engine,mikejurka/engine,chinmaygarde/flutter_engine,zhangxq5012/sky_engine,flutter/engine,abarth/sky_engine,TribeMedia/sky_engine,rmacnak-google/engine,jamesr/flutter_engine,xunmengfeng/engine,mpcomplete/engine,rmacnak-google/engine,qiankunshe/sky_engine,mpcomplete/engine,abarth/sky_engine,devoncarew/engine,rmacnak-google/engine,jason-simmons/sky_engine,zhangxq5012/sky_engine,devoncarew/engine,jason-simmons/flutter_engine,TribeMedia/sky_engine,jason-simmons/sky_engine,jamesr/sky_engine,krisgiesing/sky_engine,xunmengfeng/engine,Hixie/sky_engine,qiankunshe/sky_engine,devoncarew/sky_engine,zhangxq5012/sky_engine,flutter/engine,jason-simmons/sky_engine,lyceel/engine,Hixie/sky_engine,TribeMedia/sky_engine,chinmaygarde/flutter_engine,qiankunshe/sky_engine,flutter/engine,tvolkert/engine,rmacnak-google/engine,jamesr/sky_engine,chinmaygarde/sky_engine,jason-simmons/flutter_engine,mpcomplete/flutter_engine,aam/engine,mikejurka/engine,jamesr/flutter_engine,iansf/sky_engine,tvolkert/engine,tvolkert/engine,chinmaygarde/sky_engine,zhangxq5012/sky_engine,mikejurka/engine,flutter/engine,jamesr/sky_engine,devoncarew/engine,qiankunshe/sky_engine,devoncarew/sky_engine,chinmaygarde/flutter_engine,Hixie/sky_engine,afandria/sky_engine,iansf/sky_engine,afandria/sky_engine,axinging/sky_engine,jason-simmons/flutter_engine,lyceel/engine,mxia/engine,zhangxq5012/sky_engine,xunmengfeng/engine,mdakin/engine,chinmaygarde/sky_engine,jamesr/sky_engine,lyceel/engine,jamesr/flutter_engine,zhangxq5012/sky_engine,chinmaygarde/flutter_engine,cdotstout/sky_engine,iansf/sky_engine,afandria/sky_engine,rmacnak-google/engine,jason-simmons/sky_engine,mpcomplete/engine,lyceel/engine,TribeMedia/sky_engine,abarth/sky_engine,afandria/sky_engine,cdotstout/sky_engine,devoncarew/engine,aam/engine,devoncarew/sky_engine,qiankunshe/sky_engine,jason-simmons/sky_engine,mxia/engine,zhangxq5012/sky_engine,iansf/sky_engine,jamesr/flutter_engine,devoncarew/sky_engine,axinging/sky_engine,mpcomplete/flutter_engine,cdotstout/sky_engine,TribeMedia/sky_engine,afandria/sky_engine,chinmaygarde/flutter_engine,abarth/sky_engine,krisgiesing/sky_engine,devoncarew/sky_engine,jamesr/sky_engine,jamesr/sky_engine
9f1894416c815ea0621be10a5986e3bdaa7604ea
.github/workflows/node.js.yml
.github/workflows/node.js.yml
# 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: Node.js CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 14.x, 15.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run lint # TODO: Add this back in # - run: npm test -- --ci --verbose
# 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: Node.js CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 14.x, 15.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run lint # TODO: Add this back in # - run: npm test -- --ci --verbose
Add github actions workflow config
Add github actions workflow config
YAML
mit
pdroll/windowevents
c9415b12c06d7e6048895ffd622788804ff81264
production-docker-compose.yml
production-docker-compose.yml
version: '2' services: ### Workspace Utilities Container ########################### workspace: build: context: ./workspace args: - INSTALL_XDEBUG=false - INSTALL_MONGO=false - INSTALL_NODE=false - INSTALL_DRUSH=false - INSTALL_AEROSPIKE_EXTENSION=false - COMPOSER_GLOBAL_INSTALL=false - INSTALL_WORKSPACE_SSH=false - PUID=1000 - PGID=1000 - NODE_VERSION=stable volumes_from: - volumes_source ports: - "22:22" tty: true ### PHP-FPM Container ####################################### php-fpm: build: context: ./php-fpm args: - INSTALL_XDEBUG=false - INSTALL_MONGO=false - INSTALL_ZIP_ARCHIVE=false - INSTALL_MEMCACHED=false - INSTALL_OPCACHE=false - INSTALL_AEROSPIKE_EXTENSION=false dockerfile: Dockerfile-70 volumes_from: - volumes_source expose: - "9000" links: - workspace ### Laravel Application Code Container ###################### volumes_source: image: tianon/true volumes: - ../:/var/www/laravel ### Databases Data Container ################################ volumes_data: image: tianon/true volumes: # - ./data/mysql:/var/lib/mysql ### Add All your Software Containers below ###############################
version: '2' services: ### Workspace Utilities Container ########################### workspace: build: context: ./workspace args: - INSTALL_XDEBUG=false - INSTALL_MONGO=false - INSTALL_NODE=false - INSTALL_YARN=false - INSTALL_DRUSH=false - INSTALL_AEROSPIKE_EXTENSION=false - COMPOSER_GLOBAL_INSTALL=false - INSTALL_WORKSPACE_SSH=false - PUID=1000 - PGID=1000 - NODE_VERSION=stable volumes_from: - volumes_source ports: - "22:22" tty: true ### PHP-FPM Container ####################################### php-fpm: build: context: ./php-fpm args: - INSTALL_XDEBUG=false - INSTALL_MONGO=false - INSTALL_ZIP_ARCHIVE=false - INSTALL_MEMCACHED=false - INSTALL_OPCACHE=false - INSTALL_AEROSPIKE_EXTENSION=false dockerfile: Dockerfile-70 volumes_from: - volumes_source expose: - "9000" links: - workspace ### Laravel Application Code Container ###################### volumes_source: image: tianon/true volumes: - ../:/var/www/laravel ### Databases Data Container ################################ volumes_data: image: tianon/true volumes: # - ./data/mysql:/var/lib/mysql ### Add All your Software Containers below ###############################
Add YARN flag in production mode..
Add YARN flag in production mode.. Signed-off-by: Bo-Yi Wu <f80eec1bf98b3feebacc247f35f2b506218004cb@gmail.com>
YAML
mit
yourivandenberg/laradock,jcharlesworth/laradock,macghriogair/laradock,emmac1016/laradock,Harmonic/laradock,punkrockio/laradock,bestlong/laradock,philtrep/laradock,springjk/laradock,viender/laradock,hnquang112/laradock,AliveCorpse/laradock,jinnawat/laradock,a-h-abid/laradock,Harmonic/laradock,ralphowino/laradock,ydatech/yii2-laradock,hp9390/laradock,jcharlesworth/laradock,Competa-IT/laradock,poyhsiao/Klaradock,schiggi/laradock,macghriogair/laradock,zuohuadong/laradock,punkrockio/laradock,bestlong/laradock,viender/laradock,hnquang112/laradock,dtunes/laradock,ancon/laradock,GrooowthInc/laradock,vjekoslav/laradock,arkadiusjonczek/laradock,RafahCSilva/laradock,tharaxodia/laradock,olegl-hyuna/laradock,emmac1016/laradock,tharaxodia/laradock,Harmonic/laradock,cjnchk/laradock,bestlong/laradock,arkadiusjonczek/laradock,hnquang112/laradock,luciano-jr/laradock,thorerik/laradock,LaraDock/laradock,edmundluong/laradock,schiggi/laradock,olin2011/laradock,zuohuadong/laradock,cjnchk/laradock,jinnawat/laradock,bestlong/laradock,viender/laradock,springjk/laradock,Competa-IT/laradock,jfoliveira/laradock,ralphowino/laradock,kolobai/laradock,edmundluong/laradock,vjekoslav/laradock,dtunes/laradock,vjekoslav/laradock,kolobai/laradock,poyhsiao/Klaradock,a-h-abid/laradock,Blaasvis/laradock,schiggi/laradock,olin2011/laradock,bestlong/laradock,zuohuadong/laradock,AliveCorpse/laradock,poyhsiao/Klaradock,cjnchk/laradock,lialosiu/laradock,Harmonic/laradock,NewbMiao/laradock,zuohuadong/laradock,yourivandenberg/laradock,computerfr33k/laradock,jinnawat/laradock,computerfr33k/laradock,springjk/laradock,thorerik/laradock,computerfr33k/laradock,cjnchk/laradock,hnquang112/laradock,ydatech/yii2-laradock,macghriogair/laradock,hp9390/laradock,edmundluong/laradock,NewbMiao/laradock,olegl-hyuna/laradock,kolobai/laradock,punkrockio/laradock,arkadiusjonczek/laradock,ancon/laradock,ralphowino/laradock,springjk/laradock,jfoliveira/laradock,jinnawat/laradock,RafahCSilva/laradock,luciano-jr/laradock,NewbMiao/laradock,schiggi/laradock,ralphowino/laradock,arkadiusjonczek/laradock,yourivandenberg/laradock,dtunes/laradock
99694e09a4ca35457d77b1c43879b82d15816621
examples/slow_dim_lights.yaml
examples/slow_dim_lights.yaml
# Description: # Dim lights 1/3 brightness each second # # Written for: # @JesseWebDotCom # # Components: # automation # light # script # # License: # MIT # # Author: # Dale Higgs <@dale3h> # # PLEASE NOTE: THIS CONFIGURATION IS UNTESTED AND MAY CONTAIN ERRORS automation: - alias: slow_dim_lights trigger: ... action: - service: script.slow_dim_lights data: entity_id: light.living_room script: slow_dim_lights: alias: 'Slow Dim Lights' sequence: - service: light.turn_on data_template: entity_id: "{{ entity_id }}" brightness: "{{ states[entity_id.split('.')[0]][entity_id.split('.')[1]].attributes.brightness|int * (2 / 3))|int }}" - delay: seconds: 1 - service: light.turn_on data_template: entity_id: "{{ entity_id }}" brightness: "{{ ((states[entity_id.split('.')[0]][entity_id.split('.')[1]].attributes.brightness|int / (2 / 3))|int * (1 / 3))|int }}" - delay: seconds: 1 - service: light.turn_off data_template: entity_id: "{{ entity_id }}"
# Description: # Dim lights 1/3 brightness each second # # Written for: # @JesseWebDotCom # # Components: # automation # light # script # # License: # MIT # # Author: # Dale Higgs <@dale3h> # # PLEASE NOTE: THIS CONFIGURATION IS UNTESTED AND MAY CONTAIN ERRORS automation: - alias: slow_dim_lights trigger: ... action: - service: script.slow_dim_lights data: entity_id: light.living_room script: slow_dim_lights: alias: 'Slow Dim Lights' sequence: - service: light.turn_on data_template: entity_id: "{{ entity_id }}" brightness: "{{ (states[entity_id.split('.')[0]][entity_id.split('.')[1]].attributes.brightness|int * (2 / 3))|int }}" - delay: seconds: 1 - service: light.turn_on data_template: entity_id: "{{ entity_id }}" brightness: "{{ ((states[entity_id.split('.')[0]][entity_id.split('.')[1]].attributes.brightness|int / (2 / 3))|int * (1 / 3))|int }}" - delay: seconds: 1 - service: light.turn_off data_template: entity_id: "{{ entity_id }}"
Fix slow dim lights config error
Fix slow dim lights config error
YAML
mit
dale3h/homeassistant-config,dale3h/homeassistant-config
faf43c252fba5cc3da87ccbac66c2ec63e0da9c7
di.yml
di.yml
__import: - config/commands.yml - config/console_helpers.yml bfy_adapter.doctrine.db_parameters: driver: 'pdo_mysql' user: 'root' password: '' dbname: 'dbname' charset: 'UTF8' bfy_adapter.doctrine.configuration_paths: [] services: bfy_adapter.doctrine.connection: factoryMethod: ['@bfy_adapter.doctrine.entity_manager', 'getConnection'] bfy_adapter.doctrine.entity_manager: factoryStaticMethod: ['Doctrine\ORM\EntityManager', 'create'] arguments: ['%bfy_adapter.doctrine.db_parameters%', '@bfy_adapter.doctrine.setup_configuration'] bfy_adapter.doctrine.setup_configuration: factoryStaticMethod: ['Doctrine\ORM\Tools\Setup', 'createAnnotationMetadataConfiguration'] arguments: ['%bfy_adapter.bfy_adapterdoctrine.configuration_paths%', true, null, null, false]
__import: - config/commands.yml - config/console_helpers.yml bfy_adapter.doctrine.db_parameters: driver: 'pdo_mysql' user: 'root' password: '' dbname: 'dbname' charset: 'UTF8' bfy_adapter.doctrine.configuration_paths: [] services: bfy_adapter.doctrine.connection: factoryMethod: ['@bfy_adapter.doctrine.entity_manager', 'getConnection'] bfy_adapter.doctrine.entity_manager: factoryStaticMethod: ['Doctrine\ORM\EntityManager', 'create'] arguments: ['%bfy_adapter.doctrine.db_parameters%', '@bfy_adapter.doctrine.setup_configuration'] bfy_adapter.doctrine.setup_configuration: factoryStaticMethod: ['Doctrine\ORM\Tools\Setup', 'createAnnotationMetadataConfiguration'] arguments: ['%bfy_adapter.doctrine.configuration_paths%', true, null, null, false]
Fix bug for DI configuration
Fix bug for DI configuration
YAML
mit
butterfly-project/adapter-doctrine
0563e5b2272f48c707be1c4f45033ffe0131e153
data/transition-sites/mhra.yml
data/transition-sites/mhra.yml
--- site: mhra whitehall_slug: medicines-and-healthcare-products-regulatory-agency homepage: https://www.gov.uk/government/organisations/medicines-and-healthcare-products-regulatory-agency tna_timestamp: 20140712073655 host: www.mhra.gov.uk homepage_furl: www.gov.uk/mhra aliases: - mhra.gov.uk - www.wip.mhra.gov.uk options: --query-string subsName:tabName:IdcService:siteId:siteRelativeUrl:nodeId
--- site: mhra whitehall_slug: medicines-and-healthcare-products-regulatory-agency homepage: https://www.gov.uk/government/organisations/medicines-and-healthcare-products-regulatory-agency tna_timestamp: 20140712073655 host: www.mhra.gov.uk homepage_furl: www.gov.uk/mhra aliases: - mhra.gov.uk - www.wip.mhra.gov.uk options: --query-string subsname:tabname:idcservice:siteid:siterelativeurl:nodeid
Correct query string config for MHRA
Correct query string config for MHRA
YAML
mit
alphagov/transition-config,alphagov/transition-config
bd6c5d1d2fb67e53f92a4351bf19cc29300d6236
packages/in/index-core.yaml
packages/in/index-core.yaml
homepage: '' changelog-type: '' hash: 04917d6a4e30daf31197f00e9da8db91eee167a092e732869e775f013baab901 test-bench-deps: {} maintainer: Gabriel439@gmail.com synopsis: Indexed Types changelog: '' basic-deps: base: ! '>=4 && <5' all-versions: - '1.0.0' - '1.0.1' - '1.0.2' author: Gabriel Gonzalez latest: '1.0.2' description-type: haddock description: ! 'This library implements indexed types in the style of Conor McBride, described in the functional pearl \"Kleisli arrows of outrageous fortune\", following his presentation closely. This provides a more general form of indexed monad than the one people are most commonly familiar with.' license-name: BSD3
homepage: '' changelog-type: '' hash: 97808339bd2ac8a5c79ed99e716e2e8e941234421fde3930b370e0bbc734b063 test-bench-deps: {} maintainer: Gabriel439@gmail.com synopsis: Indexed Types changelog: '' basic-deps: base: ! '>=4 && <4.8' all-versions: - '1.0.0' - '1.0.1' - '1.0.2' author: Gabriel Gonzalez latest: '1.0.2' description-type: haddock description: ! 'This library implements indexed types in the style of Conor McBride, described in the functional pearl \"Kleisli arrows of outrageous fortune\", following his presentation closely. This provides a more general form of indexed monad than the one people are most commonly familiar with.' license-name: BSD3
Update from Hackage at 2015-07-08T15:20:20+0000
Update from Hackage at 2015-07-08T15:20:20+0000
YAML
mit
commercialhaskell/all-cabal-metadata
01c6754eaadbe8f3fcbc3119d190a1b451f3310c
packages/sm/smartcheck.yaml
packages/sm/smartcheck.yaml
homepage: https://github.com/leepike/SmartCheck changelog-type: '' hash: a05960fd745ada542cf045302217b8e7a20c28fae72f2595609f74dd8fc0f26d test-bench-deps: {} maintainer: leepike@gmail.com synopsis: A smarter QuickCheck. changelog: '' basic-deps: smartcheck: ! '>=0.2' base: ! '>=4.0 && <5' generic-deriving: ! '>=1.2.1' containers: ! '>=0.4' ghc-prim: -any mtl: -any random: ! '>=1.0.1.1' QuickCheck: ! '>=2.8' all-versions: - '0.1' - '0.2' - '0.2.1' - '0.2.2' author: Lee Pike latest: '0.2.2' description-type: haddock description: See the README.md. license-name: BSD3
homepage: https://github.com/leepike/SmartCheck changelog-type: '' hash: 26a888aa0b455379cfc1dc5ce9b912b9cda3dbe04fbbd25e6f9ab151fa9e0e27 test-bench-deps: {} maintainer: leepike@gmail.com synopsis: A smarter QuickCheck. changelog: '' basic-deps: smartcheck: -any base: ! '>=4.0 && <5' generic-deriving: ! '>=1.2.1' containers: ! '>=0.4' ghc-prim: -any mtl: -any random: ! '>=1.0.1.1' QuickCheck: ==2.8.2 all-versions: - '0.1' - '0.2' - '0.2.1' - '0.2.2' - '0.2.3' author: Lee Pike latest: '0.2.3' description-type: haddock description: ! 'See the README.md: fast, small shrinking and generalization of failing test-cases from QuickCheck.' license-name: BSD3
Update from Hackage at 2017-08-08T23:46:27Z
Update from Hackage at 2017-08-08T23:46:27Z
YAML
mit
commercialhaskell/all-cabal-metadata
7ea4cb8340fb7ec99725f290d27ba7656ff2472c
packages/ca/casing.yaml
packages/ca/casing.yaml
homepage: '' changelog-type: '' hash: fe967eec15b788744d08ffa34b33baa7e765764dcf2feb642c5985ca543dd804 test-bench-deps: {} maintainer: tdammers@gmail.com synopsis: Convert between various source code casing conventions changelog: '' basic-deps: split: -any base: ! '>=4.8 && <5' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.1.0' - '0.1.2.0' author: Tobias Dammers latest: '0.1.2.0' description-type: haddock description: ! 'Converts between camelCase, PascalCase, kebab-case, and three flavors of snake_case.' license-name: MIT
homepage: '' changelog-type: '' hash: 496cc2f196f48d997e4a6b6b9d197bcd156d3b014aca65bb700d43b1496cbb65 test-bench-deps: {} maintainer: tdammers@gmail.com synopsis: Convert between various source code casing conventions changelog: '' basic-deps: split: -any base: ! '>=4.8 && <5' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.1.0' - '0.1.2.0' - '0.1.2.1' author: Tobias Dammers latest: '0.1.2.1' description-type: haddock description: ! 'Converts between camelCase, PascalCase, kebab-case, and three flavors of snake_case.' license-name: MIT
Update from Hackage at 2017-03-30T12:54:36Z
Update from Hackage at 2017-03-30T12:54:36Z
YAML
mit
commercialhaskell/all-cabal-metadata
a4b797715476df1b8f0c3e1378a12b761e59adf3
packages/ni/niagra.yaml
packages/ni/niagra.yaml
homepage: https://github.com/fhsjaagshs/niagra changelog-type: '' hash: b36c256f403d27ee74b6d18acf2379a9e3ad543bb1058e12503f84f863973f06 test-bench-deps: base: -any HUnit: -any QuickCheck: -any maintainer: nate@symer.io synopsis: High performance CSS EDSL changelog: '' basic-deps: base: <=4.9.1 text: -any ghc-prim: -any mtl: -any transformers: -any primitive: -any all-versions: - '0.0.1' - '0.0.2' - '0.0.3' - '0.1.0' - '0.2.0' - '0.2.1' - '0.2.3' - '0.2.4' author: Nathaniel Symer latest: '0.2.4' description-type: haddock description: High performance CSS EDSL license-name: MIT
homepage: https://github.com/fhsjaagshs/niagra changelog-type: '' hash: 0b192768f64a9fa5f51342b9e8315cadb83f0124746f3936c9d339ecf5019d95 test-bench-deps: base: -any HUnit: -any QuickCheck: -any maintainer: nate@symer.io synopsis: High performance CSS EDSL changelog: '' basic-deps: base: <5.0 text: -any ghc-prim: -any mtl: -any transformers: -any primitive: -any all-versions: - '0.0.1' - '0.0.2' - '0.0.3' - '0.1.0' - '0.2.0' - '0.2.1' - '0.2.3' - '0.2.4' - '0.2.5' author: Nathaniel Symer latest: '0.2.5' description-type: haddock description: High performance CSS EDSL license-name: MIT
Update from Hackage at 2017-04-12T13:35:03Z
Update from Hackage at 2017-04-12T13:35:03Z
YAML
mit
commercialhaskell/all-cabal-metadata
1a2fe83a9b4fd3ad8ab941940256cb48d72aa833
packages/ni/niagra.yaml
packages/ni/niagra.yaml
homepage: https://github.com/fhsjaagshs/niagra changelog-type: '' hash: 1531ac96ada3a01b12ed7fb99c817e9bffc2abc0469c55fe6f1a51e1c25a223f test-bench-deps: {} maintainer: nate@symer.io synopsis: High performance CSS EDSL changelog: '' basic-deps: base: <4.9 text: -any ghc-prim: -any mtl: -any transformers: -any primitive: -any all-versions: - '0.0.1' - '0.0.2' - '0.0.3' - '0.1.0' - '0.2.0' - '0.2.1' - '0.2.3' author: Nathaniel Symer latest: '0.2.3' description-type: haddock description: High performance CSS EDSL license-name: MIT
homepage: https://github.com/fhsjaagshs/niagra changelog-type: '' hash: b36c256f403d27ee74b6d18acf2379a9e3ad543bb1058e12503f84f863973f06 test-bench-deps: base: -any HUnit: -any QuickCheck: -any maintainer: nate@symer.io synopsis: High performance CSS EDSL changelog: '' basic-deps: base: <=4.9.1 text: -any ghc-prim: -any mtl: -any transformers: -any primitive: -any all-versions: - '0.0.1' - '0.0.2' - '0.0.3' - '0.1.0' - '0.2.0' - '0.2.1' - '0.2.3' - '0.2.4' author: Nathaniel Symer latest: '0.2.4' description-type: haddock description: High performance CSS EDSL license-name: MIT
Update from Hackage at 2017-04-05T18:14:38Z
Update from Hackage at 2017-04-05T18:14:38Z
YAML
mit
commercialhaskell/all-cabal-metadata
0dd9b9c729b6fef109b1cab5f11d1a79177f2020
metadata/net.pp3345.ykdroid.yml
metadata/net.pp3345.ykdroid.yml
Categories: - System License: GPL-3.0-only SourceCode: https://github.com/pp3345/ykDroid IssueTracker: https://github.com/pp3345/ykDroid/issues Changelog: https://github.com/pp3345/ykDroid/releases AutoName: ykDroid Description: |- ''ykDroid'' is a USB and NFC driver for Android that exposes the challenge-response feature of YubiKeys for use by other Android apps. Both USB and NFC (YubiKey NEO required for NFC) are supported on compatible devices. Apps supporting it include e.g. Keepass2Android and [https://github.com/noliran/ykpass ykpass]. RepoType: git Repo: https://github.com/pp3345/ykDroid.git Builds: - versionName: 1.1.1 versionCode: 4 commit: 1.1.1 subdir: app/ gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '1.1' CurrentVersionCode: 3
Categories: - System License: GPL-3.0-only SourceCode: https://github.com/pp3345/ykDroid IssueTracker: https://github.com/pp3345/ykDroid/issues Changelog: https://github.com/pp3345/ykDroid/releases AutoName: ykDroid Description: |- ''ykDroid'' is a USB and NFC driver for Android that exposes the challenge-response feature of YubiKeys for use by other Android apps. Both USB and NFC (YubiKey NEO required for NFC) are supported on compatible devices. Apps supporting it include e.g. Keepass2Android and [https://github.com/noliran/ykpass ykpass]. RepoType: git Repo: https://github.com/pp3345/ykDroid.git Builds: - versionName: 1.1.1 versionCode: 4 commit: 1.1.1 subdir: app/ gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.1.1 CurrentVersionCode: 4
Update CV of ykDroid to 1.1.1 (4)
Update CV of ykDroid to 1.1.1 (4)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata
0b3e450d5c6e98a8c2af09d2f24348d6a2b4c31a
.github/workflows/Dev-CI.yml
.github/workflows/Dev-CI.yml
# Basic CI build name: Dev CI # Controls when the action will run. Triggers the workflow on push # events but only for the develop branch on: push: branches: [ develop ] jobs: # This workflow contains a single job called "build" build: # The type of runner that the job will run on runs-on: windows-latest # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@master - name: Install dependencies run: dotnet restore Glass.Mapper.sln --configfile .nuget\NuGet.Config -p:ScVersion=10.0.0 - name: Dotnet build each Sitecore version #working-directory: src run: | dotnet build Glass.Mapper.sln --configuration Release -p:ScVersion=10.0.0
# Basic CI build name: Dev CI # Controls when the action will run. Triggers the workflow on push # events but only for the develop branch on: push: branches: [ develop ] jobs: # This workflow contains a single job called "build" build: # The type of runner that the job will run on runs-on: windows-latest # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@master - name: Install dependencies run: dotnet restore Glass.Mapper.sln --configfile .nuget\NuGet.Config # -p:ScVersion=10.0.0 - name: Dotnet build each Sitecore version #working-directory: src run: | dotnet build Glass.Mapper.sln --configuration Release -p:ScVersion=10.0.0 dotnet build Glass.Mapper.sln --configuration Release -p:ScVersion=9.0.180604
Test sitecore 9.0 build in github action
Test sitecore 9.0 build in github action
YAML
apache-2.0
mikeedwards83/Glass.Mapper,mikeedwards83/Glass.Mapper
5ed9371f3e03615f3715fee8efb8121a5c9f7f08
.github/workflows/deploy.yml
.github/workflows/deploy.yml
name: Deploy to MLRS on: push: branches: - deploy-action jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Install Open VPN run: sudo apt-get install openvpn - name: Connect VPN uses: golfzaptw/action-connect-ovpn@master id: connect_vpn with: FILE_OVPN: '.github/vpn/config.ovpn' env: CA_CRT: ${{ secrets.CA_CRT }} USER_CRT: ${{ secrets.USER_CRT }} USER_KEY: ${{ secrets.USER_KEY }} - name: Check Connect VPN run: echo ${{ steps.connect_vpn.outputs.STATUS }} - name: Setup SSH run: | mkdir -p ~/.ssh chmod 700 ~/.ssh cp .github/vpn/config.ssh ~/.ssh/config chmod 600 ~/.ssh/config cat > ~/.ssh/id_rsa <<< "${{ secrets.SSH_PRIVATE_KEY }}" chmod 600 ~/.ssh/id_rsa - name: Run deploy script run: ./deploy.sh - name: Close VPN if: always() run: sudo killall openvpn
name: Deploy to MLRS on: push: branches: - production jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Install Open VPN run: sudo apt-get install openvpn - name: Connect VPN uses: golfzaptw/action-connect-ovpn@master id: connect_vpn with: FILE_OVPN: '.github/vpn/config.ovpn' env: CA_CRT: ${{ secrets.CA_CRT }} USER_CRT: ${{ secrets.USER_CRT }} USER_KEY: ${{ secrets.USER_KEY }} - name: Check Connect VPN run: echo ${{ steps.connect_vpn.outputs.STATUS }} - name: Setup SSH run: | mkdir -p ~/.ssh chmod 700 ~/.ssh cp .github/vpn/config.ssh ~/.ssh/config chmod 600 ~/.ssh/config cat > ~/.ssh/id_rsa <<< "${{ secrets.SSH_PRIVATE_KEY }}" chmod 600 ~/.ssh/id_rsa - name: Run deploy script run: ./deploy.sh -wet - name: Close VPN if: always() run: sudo killall openvpn
Deploy for real when pushing to production
Deploy for real when pushing to production
YAML
mit
johnjcamilleri/gabra-api,MLRS/gabra-api,MLRS/gabra-api,MLRS/gabra-api,johnjcamilleri/gabra-api,johnjcamilleri/gabra-api
d7de75f38f3182ae7789e605d9a9710652c8de92
.github/workflows/django.yml
.github/workflows/django.yml
name: Backend on: push: branches: - master pull_request: types: [opened, synchronize, reopened] jobs: checks: name: Run tests runs-on: ubuntu-latest env: DJANGO_SETTINGS_MODULE: churchill.settings.test steps: - name: Check out the repository uses: actions/checkout@v2 - name: Set up Python 3.9.4 uses: actions/setup-python@v1 with: python-version: 3.9.4 - name: Cache pip uses: actions/cache@v2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements/dev.txt') }} restore-keys: | ${{ runner.os }}-pip- ${{ runner.os }}- - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements/dev.txt - name: Run pytest suite run: | pytest --ds=churchill.settings.test --disable-warnings --create-db churchill/tests
name: Backend on: push: branches: - master pull_request: types: [opened, synchronize, reopened] jobs: checks: name: Run tests runs-on: ubuntu-latest env: DJANGO_SETTINGS_MODULE: churchill.settings.test steps: - name: Check out the repository uses: actions/checkout@v2 - name: Set up Python 3.9.5 uses: actions/setup-python@v1 with: python-version: 3.9.5 - name: Cache pip uses: actions/cache@v2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements/dev.txt') }} restore-keys: | ${{ runner.os }}-pip- ${{ runner.os }}- - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements/dev.txt - name: Run pytest suite run: | pytest --ds=churchill.settings.test --disable-warnings --create-db churchill/tests
Update github actions python version
Update github actions python version
YAML
bsd-3-clause
manti-by/Churchill,manti-by/Churchill,manti-by/Churchill,manti-by/Churchill,manti-by/Churchill
f842f517c04a77841342fbe5f02068f289f5f8f4
.github/workflows/docker.yml
.github/workflows/docker.yml
name: Build Docker image after release on: release: types: [published] env: TEST_TAG: ${{ github.repository }}:test jobs: build: name: Build Docker image runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Docker meta id: meta uses: docker/metadata-action@v3 with: images: ${{ github.repository }} tag-semver: | {{version}} - name: Login to DockerHub uses: docker/login-action@v1 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and export to Docker id: build-test uses: docker/build-push-action@v2 with: file: docker/Dockerfile load: true tags: ${{ env.TEST_TAG }} labels: ${{ steps.docker_meta.outputs.labels }} - name: Test id: test run: | ver=$(docker run --rm ${{ env.TEST_TAG }} --version) [[ "$ver" == "ggsashimi ${github_ref##*/}" ]] env: github_ref: ${{ github.ref }} - name: Build and push id: build uses: docker/build-push-action@v2 with: file: docker/Dockerfile push: true tags: ${{ steps.docker_meta.outputs.tags }} labels: ${{ steps.docker_meta.outputs.labels }} - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }}
name: Build Docker image after release on: release: types: [published] env: TEST_TAG: ${{ github.repository }}:test jobs: build: name: Build Docker image runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Docker meta id: meta uses: docker/metadata-action@v3 with: images: ${{ github.repository }} tag-semver: | {{version}} - name: Login to DockerHub uses: docker/login-action@v1 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and export to Docker uses: docker/build-push-action@v2 with: file: docker/Dockerfile load: true tags: ${{ env.TEST_TAG }} labels: ${{ steps.meta.outputs.labels }} - name: Test run: | ver=$(docker run --rm ${{ env.TEST_TAG }} --version) [[ "$ver" == "ggsashimi ${github_ref##*/}" ]] env: github_ref: ${{ github.ref }}3 - name: Build and push id: build uses: docker/build-push-action@v2 with: file: docker/Dockerfile push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - name: Image digest run: echo ${{ steps.build.outputs.digest }}
Fix steps id in GithubActions Docker workflow
Fix steps id in GithubActions Docker workflow
YAML
mit
guigolab/ggsashimi,guigolab/ggsashimi
c9f54f8c11c97875f19dff6d5c377c93eb3f5021
.github/workflows/gradle.yml
.github/workflows/gradle.yml
name: Java CI on: push: branches: - dev pull_request: branches: - dev jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Install webapp run: git clone -b dev https://github.com/axelor/open-suite-webapp.git open-suite-webapp - name: move to the right place run: mkdir -p open-suite-webapp/modules/axelor-open-suite && ls | grep -v open-suite-webapp | xargs -I{} mv {} open-suite-webapp/modules/axelor-open-suite - name: Grant execute permission for gradlew run: chmod +x open-suite-webapp/gradlew - name: Check spotless format with gradle task run: cd open-suite-webapp && ./gradlew spotlessCheck - name: Check changelog generation with gradle task run: cd open-suite-webapp && ./gradlew generateChangelog - name: Build without tests run: cd open-suite-webapp && ./gradlew -xtest clean build - name: Run tests run: cd open-suite-webapp && ./gradlew test
name: Java CI on: push: branches: - dev pull_request: branches: - dev jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Install webapp run: git clone -b dev https://github.com/axelor/open-suite-webapp.git open-suite-webapp - name: move to the right place run: mkdir -p open-suite-webapp/modules/axelor-open-suite && ls | grep -v open-suite-webapp | xargs -I{} mv {} open-suite-webapp/modules/axelor-open-suite - name: Grant execute permission for gradlew run: chmod +x open-suite-webapp/gradlew - name: Check spotless format with gradle task run: cd open-suite-webapp && ./gradlew spotlessCheck - name: Check that CSV files use the correct CR/LF EOL char (\r\n) run: cd open-suite-webapp && ./gradlew checkCsvEOL - name: Check changelog generation with gradle task run: cd open-suite-webapp && ./gradlew generateChangelog - name: Build without tests run: cd open-suite-webapp && ./gradlew -xtest clean build - name: Run tests run: cd open-suite-webapp && ./gradlew test
Add CI test to check EOL chars for CSV
Add CI test to check EOL chars for CSV CSV files should have CR/LF as EOL.
YAML
agpl-3.0
axelor/axelor-business-suite,axelor/axelor-business-suite,axelor/axelor-business-suite
d9859ad6da75a875dab3f816f8745cb4eb047455
.github/workflows/gradle.yml
.github/workflows/gradle.yml
# This workflow will build a Java project with Gradle # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle name: Java CI with Gradle on: push: branches: - master - '[0-9].*' pull_request: branches: - master - '[0-9].*' jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: java: [ 8, 11, 15 ] steps: - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Print tool versions run: | java -version ./gradlew --version - run: ./gradlew assemble - run: ./gradlew check - run: ./gradlew jacocoTestReport aggregateJacocoReport - name: Upload coverage report uses: codecov/codecov-action@v1 with: files: jacoco*.xml,*Jacoco*.xml
# This workflow will build a Java project with Gradle # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle name: Java CI with Gradle on: push: branches: - master - '[0-9].*' pull_request: branches: - master - '[0-9].*' jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: java: [ 8, 11 ] steps: - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Print tool versions run: | java -version ./gradlew --version - run: ./gradlew check - run: ./gradlew jacocoTestReport aggregateJacocoReport - name: Upload coverage report uses: codecov/codecov-action@v1 with: files: jacoco*.xml,*Jacoco*.xml
Use GitHub Actions only for checks
Use GitHub Actions only for checks
YAML
apache-2.0
joinfaces/joinfaces,joinfaces/joinfaces,larsgrefer/joinfaces,larsgrefer/joinfaces
8163e4ba99697ebb198754c1f35313d21dc1695e
.github/workflows/nodejs.yml
.github/workflows/nodejs.yml
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [8.x, 10.x, 12.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: yarn install, build, and test run: | yarn install yarn build yarn test env: CI: true
name: CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [8.x, 10.x, 12.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: yarn install, build, and test run: | yarn install yarn build yarn test env: CI: true
Rename from Node CI to CI
Rename from Node CI to CI
YAML
mit
danielbayerlein/dashboard,danielbayerlein/dashboard
c7e70954f3a38f74341d1e705f19af2d161e541d
.github/workflows/nodejs.yml
.github/workflows/nodejs.yml
# 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: Node.js CI on: push: branches: [ devel ] pull_request: jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Install dependencies run: npm ci - name: Run tests (with node-sass support) run: | npm install node-sass@4.14.1 npm test - name: Run bin/analyze-css.js for CSS file run: ./bin/analyze-css.js --file examples/ti.mobile.css -p | grep metrics -B2 - name: Run bin/analyze-css.js for SCSS file run: ./bin/analyze-css.js --file examples/base.scss -p | grep offenders -A3 - name: Run bin/analyze-css.js for external file over HTTP run: ./bin/analyze-css.js --url http://s3.macbre.net/analyze-css/propertyResets.css -p | grep metrics -A5
# 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: Node.js CI on: push: branches: [ devel ] pull_request: jobs: test: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x, 15.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Install dependencies run: npm ci - name: Run tests (with node-sass support) run: | npm install node-sass@4.14.1 npm test - name: Run bin/analyze-css.js for CSS file run: ./bin/analyze-css.js --file examples/ti.mobile.css -p | grep metrics -B2 - name: Run bin/analyze-css.js for SCSS file run: ./bin/analyze-css.js --file examples/base.scss -p | grep offenders -A3 - name: Run bin/analyze-css.js for external file over HTTP run: ./bin/analyze-css.js --url http://s3.macbre.net/analyze-css/propertyResets.css -p | grep metrics -A5
Test using Node.js 15.x too
Test using Node.js 15.x too
YAML
bsd-2-clause
macbre/analyze-css,macbre/analyze-css
76d7e35d4865cdf399a931513fffcccf32ba70fe
recipes/posthog/meta.yaml
recipes/posthog/meta.yaml
{% set name = "posthog" %} {% set version = "1.4.0" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" sha256: be7caf0625c6efdc6cb7052d4026a13c3d94df4a2662b90945de02d2cfc21bd4 build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - python >=3.7.0,<4.0.0 - pip run: - python >=3.7.0,<4.0.0 - requests >=2.7.0,<3.0.0 - six >=1.5.0,<2.0.0 - monotonic >=1.5.0,<2.0.0 - backoff >=1.6.0,<2.0.0 - python-dateutil >=2.1.0,<3.0.0 test: imports: - posthog requires: - pip commands: - pip check about: home: https://github.com/PostHog/posthog-python license: MIT license_family: MIT license_file: LICENSE summary: Integrate PostHog into any python application extra: recipe-maintainers: - mands
{% set name = "posthog" %} {% set version = "1.4.0" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" sha256: be7caf0625c6efdc6cb7052d4026a13c3d94df4a2662b90945de02d2cfc21bd4 build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - python >=3.7.0,<4.0.0 - pip run: - python >=3.7.0,<4.0.0 - requests >=2.7.0,<3.0.0 - six >=1.5.0,<2.0.0 - monotonic >=1.5.0,<2.0.0 - backoff >=1.6.0,<2.0.0 - python-dateutil >=2.1.0,<3.0.0 test: imports: - posthog requires: - pip about: home: https://github.com/PostHog/posthog-python license: MIT license_family: MIT license_file: LICENSE summary: Integrate PostHog into any python application extra: recipe-maintainers: - mands
Remove pip check due to old version of backoff
Remove pip check due to old version of backoff
YAML
bsd-3-clause
kwilcox/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,jakirkham/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,igortg/staged-recipes,mariusvniekerk/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,igortg/staged-recipes,ReimarBauer/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,goanpeca/staged-recipes,stuertz/staged-recipes
019bc70827026602a0b11dde7f954edf2fa76d72
data/hostname/worker01.euwest.azure.internal.softwareheritage.org.yaml
data/hostname/worker01.euwest.azure.internal.softwareheritage.org.yaml
swh::deploy::worker::instances: - swh_indexer_orchestrator - swh_indexer_mimetype - swh_indexer_language - swh_indexer_ctags - swh_indexer_fossology_license - swh_loader_svn # testing swh-loader-svn swh::deploy::storage::db::dbname: softwareheritage-test-svn swh::deploy::storage::directory: /srv/swh/objects/ swh::deploy::worker::swh_loader_svn::config: storage_class: remote_storage storage_args: http://127.0.0.1:5002/ send_contents: true send_directories: true send_revisions: true send_releases: true send_occurrences: true content_packet_size: 1000 content_packet_block_size_bytes: 104857600 content_packet_size_bytes: 1073741824 directory_packet_size: 250 revision_packet_size: 100 release_packet_size: 100 occurrence_packet_size: 100
swh::deploy::worker::instances: - swh_indexer_orchestrator - swh_indexer_mimetype - swh_indexer_language - swh_indexer_ctags - swh_indexer_fossology_license - swh_loader_svn # testing swh-loader-svn swh::deploy::storage::db::dbname: softwareheritage-test-svn swh::deploy::storage::directory: /srv/swh/objects/ swh::deploy::worker::swh_loader_svn::config: storage_class: remote_storage storage_args: http://127.0.0.1:5002/ send_contents: true send_directories: true send_revisions: true send_releases: true send_occurrences: true content_packet_size: 1000 content_packet_block_size_bytes: 104857600 content_packet_size_bytes: 1073741824 directory_packet_size: 250 revision_packet_size: 100 release_packet_size: 100 occurrence_packet_size: 100 check_revision: 1000
Add default check_revision flag to 1000 revs
data/worker01.euwest.azure: Add default check_revision flag to 1000 revs
YAML
apache-2.0
SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site
04156b96f242f54c66ec2dc319fe4fa8c4fffa79
metadata/com.github.postapczuk.lalauncher.yml
metadata/com.github.postapczuk.lalauncher.yml
Categories: - System License: GPL-2.0-only WebSite: https://github.com/postapczuk/Light-Android-Launcher SourceCode: https://github.com/postapczuk/Light-Android-Launcher AutoName: Light Android Launcher Summary: Lightweight app launcher Description: |- Configurable, super lightweight app launcher with a low memory usage and small install size. Inspired by Light Phone, but leaves you access to all apps, by just one swipe. There are no trackers, no ads, and no device permissions. There is only Open Source Code, available on GPLv2 license. Its a fork of [https://github.com/Collinux/minimalist-launcher Minimalist Launcher by Collunux]. Created because there is no favourite apps in the main repo. RepoType: git Repo: https://github.com/postapczuk/Light-Android-Launcher Builds: - versionName: '1.0' versionCode: 1 commit: '1.0' subdir: LaLauncher gradle: - yes - versionName: '1.1' versionCode: 2 commit: '1.1' subdir: LaLauncher gradle: - yes - versionName: '1.2' versionCode: 3 commit: '1.2' subdir: LaLauncher gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '1.2' CurrentVersionCode: 3
Categories: - System License: GPL-2.0-only WebSite: https://github.com/postapczuk/Light-Android-Launcher SourceCode: https://github.com/postapczuk/Light-Android-Launcher AutoName: Light Android Launcher Summary: Lightweight app launcher Description: |- Configurable, super lightweight app launcher with a low memory usage and small install size. Inspired by Light Phone, but leaves you access to all apps, by just one swipe. There are no trackers, no ads, and no device permissions. There is only Open Source Code, available on GPLv2 license. Its a fork of [https://github.com/Collinux/minimalist-launcher Minimalist Launcher by Collunux]. Created because there is no favourite apps in the main repo. RepoType: git Repo: https://github.com/postapczuk/Light-Android-Launcher Builds: - versionName: '1.0' versionCode: 1 commit: '1.0' subdir: LaLauncher gradle: - yes - versionName: '1.1' versionCode: 2 commit: '1.1' subdir: LaLauncher gradle: - yes - versionName: '1.2' versionCode: 3 commit: '1.2' subdir: LaLauncher gradle: - yes - versionName: '1.3' versionCode: 4 commit: '1.3' subdir: LaLauncher gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '1.3' CurrentVersionCode: 4
Update Light Android Launcher to 1.3 (4)
Update Light Android Launcher to 1.3 (4)
YAML
agpl-3.0
f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata
94b52b17e02689f4d56213b388c122bffbfbda41
src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.en.yml
src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.en.yml
# This file is part of the Sylius package. # (c) Paweł Jędrzejewski sylius: form: promotion: actions: Actions add_action: Add action add_rule: Add rule coupon_based: Coupon based description: Description ends_at: Ends at exclusive: Exclusive name: Name priority: Priority rules: Rules starts_at: Starts at usage_limit: Usage limit promotion_action: fixed_discount_configuration: amount: Amount percentage_discount_configuration: percentage: Percentage type: Type promotion_coupon: expires_at: Expires at usage_limit: Usage limit promotion_coupon_generator_instruction: amount: Amount code_length: Code length expires_at: Expires at usage_limit: Usage limit promotion_filter: price_range: Price range filter promotion_rule: cart_quantity_configuration: count: Count equal: Equal contains_product_configuration: exclude: Exclude variants: Products item_total_configuration: amount: Amount nth_order_configuration: nth: Nth shipping_country_configuration: country: Country taxonomy_configuration: exclude: Exclude taxons: Taxons type: Type
# This file is part of the Sylius package. # (c) Paweł Jędrzejewski sylius: form: promotion: actions: Actions add_action: Add action add_rule: Add rule coupon_based: Coupon based description: Description ends_at: Ends at exclusive: Exclusive name: Name priority: Priority rules: Rules starts_at: Starts at usage_limit: Usage limit promotion_action: order_fixed_discount: Order fixed discount item_fixed_discount: Item fixed discount order_percentage_discount: Order percentage discount item_percentage_discount: Item percentage discount shipping_percentage_discount: Shipping percentage discount fixed_discount_configuration: amount: Amount percentage_discount_configuration: percentage: Percentage type: Type promotion_coupon: expires_at: Expires at usage_limit: Usage limit promotion_coupon_generator_instruction: amount: Amount code_length: Code length expires_at: Expires at usage_limit: Usage limit promotion_filter: price_range: Price range filter promotion_rule: cart_quantity: Cart quantity contains_product: Contains product item_total: Item total nth_order: Nth order shipping_country: Shipping country taxonomy: Taxonomy customer_group: Customer group has_at_least_one_from_taxons: Has at last one from taxons total_price_of_items_from_taxon: Total price of items from taxon cart_quantity_configuration: count: Count equal: Equal contains_product_configuration: exclude: Exclude variants: Products item_total_configuration: amount: Amount nth_order_configuration: nth: Nth shipping_country_configuration: country: Country taxonomy_configuration: exclude: Exclude taxons: Taxons type: Type
Add translations for promotion actions and rules
Add translations for promotion actions and rules
YAML
mit
psren/Sylius,Zales0123/Sylius,mbabker/Sylius,SyliusBot/Sylius,Arminek/Sylius,dragosprotung/Sylius,gorkalaucirica/Sylius,Brille24/Sylius,bitbager/Sylius,psren/Sylius,TheMadeleine/Sylius,gmoigneu/platformsh-integrations,torinaki/Sylius,vihuvac/Sylius,dragosprotung/Sylius,pamil/Sylius,torinaki/Sylius,loic425/Sylius,itinance/Sylius,ezecosystem/Sylius,gseidel/Sylius,venyii/Sylius,gseidel/Sylius,TheMadeleine/Sylius,psren/Sylius,Mozan/Sylius,lchrusciel/Sylius,gseidel/Sylius,regnisolbap/Sylius,NeverResponse/Sylius,lchrusciel/Sylius,101medialab/Sylius,mkilmanas/Sylius,Sylius/Sylius,Brille24/Sylius,101medialab/Sylius,videni/Sylius,venyii/Sylius,bitbager/Sylius,foobarflies/Sylius,mbabker/Sylius,antonioperic/Sylius,gseidel/Sylius,lchrusciel/Sylius,foobarflies/Sylius,venyii/Sylius,foobarflies/Sylius,pjedrzejewski/Sylius,ezecosystem/Sylius,loic425/Sylius,pjedrzejewski/Sylius,kayue/Sylius,videni/Sylius,diimpp/Sylius,CoderMaggie/Sylius,Pitoune/Sylius,ylastapis/Sylius,Joypricecorp/Sylius,GSadee/Sylius,Mozan/Sylius,NeverResponse/Sylius,torinaki/Sylius,loic425/Sylius,mbabker/Sylius,Pitoune/Sylius,bitbager/Sylius,antonioperic/Sylius,mkilmanas/Sylius,Pitoune/Sylius,dragosprotung/Sylius,itinance/Sylius,pjedrzejewski/Sylius,Mozan/Sylius,diimpp/Sylius,Zales0123/Sylius,101medialab/Sylius,Mozan/Sylius,gorkalaucirica/Sylius,Arminek/Sylius,ylastapis/Sylius,gorkalaucirica/Sylius,gmoigneu/platformsh-integrations,TheMadeleine/Sylius,Joypricecorp/Sylius,torinaki/Sylius,kayue/Sylius,CoderMaggie/Sylius,Sylius/Sylius,NeverResponse/Sylius,pamil/Sylius,CoderMaggie/Sylius,itinance/Sylius,itinance/Sylius,videni/Sylius,Arminek/Sylius,gmoigneu/platformsh-integrations,regnisolbap/Sylius,vihuvac/Sylius,Joypricecorp/Sylius,GSadee/Sylius,gmoigneu/platformsh-integrations,ylastapis/Sylius,Sylius/Sylius,vihuvac/Sylius,Pitoune/Sylius,CoderMaggie/Sylius,SyliusBot/Sylius,videni/Sylius,SyliusBot/Sylius,antonioperic/Sylius,diimpp/Sylius,GSadee/Sylius,Zales0123/Sylius,gorkalaucirica/Sylius,foobarflies/Sylius,ylastapis/Sylius,bitbager/Sylius,regnisolbap/Sylius,kayue/Sylius,TheMadeleine/Sylius,Brille24/Sylius,regnisolbap/Sylius,mkilmanas/Sylius,mbabker/Sylius,venyii/Sylius,Mozan/Sylius,Joypricecorp/Sylius,pamil/Sylius,pjedrzejewski/Sylius,vihuvac/Sylius,ezecosystem/Sylius,ezecosystem/Sylius,Brille24/Sylius,mkilmanas/Sylius,NeverResponse/Sylius,dragosprotung/Sylius,psren/Sylius
704e72fe9bda5de9cff31fc807d62c151b5331ff
packages/dm/dmenu.yaml
packages/dm/dmenu.yaml
homepage: https://github.com/m0rphism/haskell-dmenu changelog-type: '' hash: af2c9ffe7dc26bb2ecfcd0242c22ab2e6ee0dd750977c9d1ebb7b5ae965738f2 test-bench-deps: {} maintainer: Hannes Saffrich <m0rphism@zankapfel.org> synopsis: Complete bindings to the dmenu and dmenu2 command line tools. changelog: '' basic-deps: base: ! '>=4.8 && <5' process: ! '>=1.4 && <1.5' containers: ! '>=0.5.7 && <0.6' lens: ! '>=4.10 && <4.16' mtl: ! '>=2.2 && <2.3' transformers: ! '>=0.5 && <0.6' directory: ! '>=1.2.6 && <1.3' all-versions: - '0.1.0.1' - '0.1.0.2' - '0.2.0.0' author: Hannes Saffrich latest: '0.2.0.0' description-type: haddock description: Provides fuzzy selection via a GUI menu. license-name: BSD3
homepage: https://github.com/m0rphism/haskell-dmenu changelog-type: '' hash: 0498e33abbba6e91142590d411284aaca73a54f8ba14e3e6f62a334044f2d19b test-bench-deps: {} maintainer: Hannes Saffrich <m0rphism@zankapfel.org> synopsis: Complete bindings to the dmenu and dmenu2 command line tools. changelog: '' basic-deps: base: ! '>=4.8 && <5' process: ! '>=1.4 && <1.5' containers: ! '>=0.5.7 && <0.6' lens: ! '>=4.10 && <4.16' mtl: ! '>=2.2 && <2.3' transformers: ! '>=0.5 && <0.6' directory: ! '>=1.2.6 && <1.3' all-versions: - '0.1.0.1' - '0.1.0.2' - '0.2.0.0' - '0.3.0.0' author: Hannes Saffrich latest: '0.3.0.0' description-type: haddock description: Provides fuzzy selection via a GUI menu. license-name: BSD3
Update from Hackage at 2016-11-20T11:35:38Z
Update from Hackage at 2016-11-20T11:35:38Z
YAML
mit
commercialhaskell/all-cabal-metadata
bddbf5ea3d5b01f3ed2d14b82e7d10a97c51275c
docker-compose.yml
docker-compose.yml
version: "3" volumes: bundle: { driver: local } config: { driver: local } services: app: image: alpinelab/ruby-dev command: ["middleman", "server", "--bind-address=0.0.0.0"] ports: - "4567:4567" - "35729:35729" volumes: - .:/app - bundle:/bundle - config:/config
version: "3" volumes: bundle: { driver: local } config: { driver: local } services: app: image: alpinelab/ruby-dev:2.5 command: ["middleman", "server", "--bind-address=0.0.0.0"] ports: - "4567:4567" - "35729:35729" volumes: - .:/app - bundle:/bundle - config:/config
Fix Ruby version to 2.5
Fix Ruby version to 2.5
YAML
mit
alpinelab/website,alpinelab/website,alpinelab/website
47f90aa39597815aac001b7cc66dd69de39c3ba6
docker-compose.yml
docker-compose.yml
version: '2' services: postgres: image: postgres:latest container_name: pg_bawler-test-pg environment: &pg_environment POSTGRES_PASSWORD: postgres POSTGRES_USER: pg_bawler_test POSTGRES_DB: pg_bawler_test pg_bawler: build: . command: watchmedo tricks-from watchmedo-tricks.yaml volumes: - .:/code depends_on: - postgres container_name: pg_bawler-test-lib environment: <<: *pg_environment
version: '2' services: postgres: image: postgres:latest container_name: pg_bawler-test-pg environment: &pg_environment POSTGRES_PASSWORD: postgres POSTGRES_USER: pg_bawler_test POSTGRES_DB: pg_bawler_test pg_bawler: build: . command: watchmedo tricks-from watchmedo-tricks.yaml volumes: - .:/code depends_on: - postgres container_name: pg_bawler-test-lib environment: <<: *pg_environment PYTHONASYNCIODEBUG: 1
Add asyncio debug env variable
Add asyncio debug env variable
YAML
bsd-3-clause
beezz/pg_bawler,beezz/pg_bawler
1f2fbc5616e207da6235603a2cc5aed3ed68c23c
docker-compose.yml
docker-compose.yml
web: build: . command: run --debug --collect-static --db-migrate --timeout 15 --bind 0.0.0.0:5000 ports: - "5001:5000" links: - postgres - rabbitmq - redis volumes: - /var/run/docker.sock:/var/run/docker.sock - ./data:/code/data - ./dockci:/code/dockci - ./alembic:/code/alembic - ./tests:/code/tests - /Users:/Users environment: OAUTHLIB_INSECURE_TRANSPORT: 1 postgres: image: postgres environment: POSTGRES_USER: dockci POSTGRES_PASSWORD: letmein rabbitmq: image: sprucedev/dockci-rabbitmq ports: - "15674:15674" # Web STOMP - "5672" # AMQP - "15672" # Management interface environment: FRONTEND_USER: dockcife FRONTEND_PASSWORD: letmein BACKEND_USER: dockcibe BACKEND_PASSWORD: changeme redis: image: redis registry: image: registry:2 ports: - "5000:5000"
web: build: . command: run --debug --collect-static --db-migrate --timeout 15 --bind 0.0.0.0:5000 ports: - "5001:5000" links: - postgres - rabbitmq - redis - registry volumes: - /var/run/docker.sock:/var/run/docker.sock - ./data:/code/data - ./dockci:/code/dockci - ./alembic:/code/alembic - ./tests:/code/tests - /Users:/Users environment: OAUTHLIB_INSECURE_TRANSPORT: 1 postgres: image: postgres environment: POSTGRES_USER: dockci POSTGRES_PASSWORD: letmein rabbitmq: image: sprucedev/dockci-rabbitmq ports: - "15674:15674" # Web STOMP - "5672" # AMQP - "15672" # Management interface environment: FRONTEND_USER: dockcife FRONTEND_PASSWORD: letmein BACKEND_USER: dockcibe BACKEND_PASSWORD: changeme redis: image: redis registry: image: registry:2 ports: - "5000:5000"
Add registry to compose links
Add registry to compose links
YAML
isc
sprucedev/DockCI,RickyCook/DockCI,sprucedev/DockCI,sprucedev/DockCI-Agent,RickyCook/DockCI,RickyCook/DockCI,sprucedev/DockCI,sprucedev/DockCI,RickyCook/DockCI,sprucedev/DockCI-Agent
23aedf07837e0ebade3e7da484ae1f8a1c76b485
docker-compose.yml
docker-compose.yml
version: '2' services: tests: image: buildkite/plugin-tester:latest@sha256:4fa79343710021d300556f57f16721e5cb3859b4bad09ba437d006f5c38efe8e volumes: - ".:/plugin:ro"
version: '2' services: tests: image: buildkite/plugin-tester:latest@sha256:973f078d7d648c88cd211dbaf6edcd17bd18778a6fda0aa9e00a7cf8fba32006 volumes: - ".:/plugin:ro"
Update buildkite/plugin-tester:latest Docker digest to 973f07
Update buildkite/plugin-tester:latest Docker digest to 973f07
YAML
mit
buildkite-plugins/ecr-buildkite-plugin
114b13724577209e93ada936c8592beb573f6dbf
metadata/me.hackerchick.sharetoinputstick.yml
metadata/me.hackerchick.sharetoinputstick.yml
Categories: - Connectivity License: MIT SourceCode: https://github.com/TheLastProject/ShareToInputStick IssueTracker: https://github.com/TheLastProject/ShareToInputStick/issues AutoName: Share To InputStick RepoType: git Repo: https://github.com/TheLastProject/ShareToInputStick.git Builds: - versionName: '3.4' versionCode: 13 commit: v3.4 subdir: app submodules: true gradle: - yes antifeatures: - NonFreeAdd - versionName: 3.4.1 versionCode: 14 commit: v3.4.1 subdir: app submodules: true gradle: - yes antifeatures: - NonFreeAdd - versionName: 3.4.2 versionCode: 15 commit: v3.4.2 subdir: app submodules: true gradle: - yes antifeatures: - NonFreeAdd AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 3.4.2 CurrentVersionCode: 15
Categories: - Connectivity License: MIT SourceCode: https://github.com/TheLastProject/ShareToInputStick IssueTracker: https://github.com/TheLastProject/ShareToInputStick/issues AutoName: Share To InputStick RepoType: git Repo: https://github.com/TheLastProject/ShareToInputStick.git Builds: - versionName: '3.4' versionCode: 13 commit: v3.4 subdir: app submodules: true gradle: - yes antifeatures: - NonFreeAdd - versionName: 3.4.1 versionCode: 14 commit: v3.4.1 subdir: app submodules: true gradle: - yes antifeatures: - NonFreeAdd - versionName: 3.4.2 versionCode: 15 commit: v3.4.2 subdir: app submodules: true gradle: - yes antifeatures: - NonFreeAdd - versionName: 3.4.3 versionCode: 16 commit: v3.4.3 subdir: app submodules: true gradle: - yes antifeatures: - NonFreeAdd AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 3.4.3 CurrentVersionCode: 16
Update Share To InputStick to 3.4.3 (16)
Update Share To InputStick to 3.4.3 (16)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
81a685aedb8b6bea98f032c36a83887a4253ed4c
data/transition-sites/cac.yml
data/transition-sites/cac.yml
--- site: cac whitehall_slug: central-arbitration-committee homepage: https://www.gov.uk/government/organisations/central-arbitration-committee tna_timestamp: 20130104141210 host: www.cac.gov.uk homepage_furl: www.gov.uk/cac #aliases: # tld currently points to www.acas.org.uk, further investigation required #- cac.gov.uk options: --query-string articleid
--- site: cac whitehall_slug: central-arbitration-committee homepage: https://www.gov.uk/government/organisations/central-arbitration-committee tna_timestamp: 20130104141210 host: www.cac.gov.uk homepage_furl: www.gov.uk/cac aliases: - cac.gov.uk options: --query-string articleid
Add TLD alias for CAC - will send us traffic
Add TLD alias for CAC - will send us traffic
YAML
mit
alphagov/transition-config,alphagov/transition-config
84e4190e2ea26c88538a5286e2f3fa3c66901bb3
jenkins/jobs/static-publish-jobs.yaml
jenkins/jobs/static-publish-jobs.yaml
# Jobs for static site publication - job-template: name: static-{name}-publish node: 'bare-precise || bare-trusty' builders: - revoke-sudo - gerrit-git-prep - docs: project: '{name}' - static-publish-prep: source: 'doc/build/html' publishers: - scp: site: static.openhalon.io files: - target: '{docroot}/' source: '**' keep-hierarchy: true copy-after-failure: false - console-log
# Jobs for static site publication - job-template: name: static-{name}-publish node: 'bare-precise || bare-trusty' builders: - revoke-sudo - gerrit-git-prep - docs: project: '{name}' - static-publish-prep: source: 'doc/build/html' publishers: - scp: site: static.openhalon.io files: - target: '{docroot}/' source: '**' keep-hierarchy: true copy-after-failure: false # - console-log
Disable logs for static publish jobs
Disable logs for static publish jobs Change-Id: I7593666a77b11379cdc0b4799b13a0d4262cf510 Signed-off-by: Diego Dompe <362eb8c2bff4070585be20c53c8ef543d5e46a6b@hp.com>
YAML
apache-2.0
open-switch/infra_project-config,open-switch/infra_project-config
ae30751cd2258aba10c08720408dad278587425c
metadata/tool.fff.profilepicturegenerator.yml
metadata/tool.fff.profilepicturegenerator.yml
AntiFeatures: - NonFreeNet Categories: - Internet License: GPL-3.0-or-later WebSite: https://gitlab.com/hocuri/fff-profile-picture-generator SourceCode: https://gitlab.com/hocuri/fff-profile-picture-generator/tree/HEAD IssueTracker: https://gitlab.com/hocuri/fff-profile-picture-generator/issues Changelog: https://gitlab.com/hocuri/fff-profile-picture-generator/-/tags AutoName: Profilbildgenerator RepoType: git Repo: https://gitlab.com/hocuri/fff-profile-picture-generator.git Builds: - versionName: '0.3' versionCode: 3 commit: v0.3 subdir: app gradle: - yes - versionName: '0.6' versionCode: 6 commit: v0.6 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '0.6' CurrentVersionCode: 6
AntiFeatures: - NonFreeNet Categories: - Internet License: GPL-3.0-or-later WebSite: https://gitlab.com/hocuri/fff-profile-picture-generator SourceCode: https://gitlab.com/hocuri/fff-profile-picture-generator/tree/HEAD IssueTracker: https://gitlab.com/hocuri/fff-profile-picture-generator/issues Changelog: https://gitlab.com/hocuri/fff-profile-picture-generator/-/tags AutoName: Profilbildgenerator RepoType: git Repo: https://gitlab.com/hocuri/fff-profile-picture-generator.git Builds: - versionName: '0.3' versionCode: 3 commit: v0.3 subdir: app gradle: - yes - versionName: '0.6' versionCode: 6 commit: v0.6 subdir: app gradle: - yes - versionName: '1.3' versionCode: 13 commit: v1.3 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.3' CurrentVersionCode: 13
Update Profilbildgenerator to 1.3 (13)
Update Profilbildgenerator to 1.3 (13)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
8d1e0433061b1ebae06d5755dc05edf7ecdbe3da
docs/_config.yml
docs/_config.yml
markdown: kramdown highlighter: rouge gauges_id: 503c5af6613f5d0f19000027 google_analytics_id: UA-50755011-1 google_site_verification: onQcXpAvtHBrUI5LlroHNE_FP0b2qvFyPq7VZw36iEY repository: https://github.com/jekyll/jekyll help_url: https://github.com/jekyll/jekyll-help timezone: America/Los_Angeles collections: docs: output: true posts: permalink: /news/:year/:month/:day/:title/ output: true name: Jekyll • Simple, blog-aware, static sites description: Transform your plain text into static websites and blogs url: https://jekyllrb.com twitter: username: jekyllrb logo: /img/logo-2x.png gems: - jekyll-feed - jekyll-redirect-from - jemoji - jekyll-sitemap - jekyll-seo-tag - jekyll-avatar - jekyll-mentions exclude: - README.md - .gitignore
markdown: kramdown highlighter: rouge gauges_id: 503c5af6613f5d0f19000027 google_analytics_id: UA-50755011-1 google_site_verification: onQcXpAvtHBrUI5LlroHNE_FP0b2qvFyPq7VZw36iEY repository: https://github.com/jekyll/jekyll help_url: https://github.com/jekyll/jekyll-help timezone: America/Los_Angeles collections: docs: permalink: /:collection/:path/ output: true posts: permalink: /news/:year/:month/:day/:title/ output: true name: Jekyll • Simple, blog-aware, static sites description: Transform your plain text into static websites and blogs url: https://jekyllrb.com twitter: username: jekyllrb logo: /img/logo-2x.png gems: - jekyll-feed - jekyll-redirect-from - jemoji - jekyll-sitemap - jekyll-seo-tag - jekyll-avatar - jekyll-mentions exclude: - README.md - .gitignore
Set docs permalink in config
Set docs permalink in config
YAML
mit
Strangehill/jekyll,chrisfinazzo/jekyll,chrisfinazzo/jekyll,xiebinhqy/jklly_china,jaybe-jekyll/jekyll,tomjohnson1492/jekyll,jekyll/jekyll,rlugojr/jekyll,rlugojr/jekyll,gencer/jekyll,rasa2011/rasa2011.github.io,getandpost/jekyll.github.io,fulldecent/jekyll,getandpost/jekyll.github.io,xiebinhqy/jklly_china,tillgrallert/jekyll,x-way/jekyll,tomjohnson1492/jekyll,gencer/jekyll,chrisfinazzo/jekyll,alex-kovac/jekyll,gencer/jekyll,tillgrallert/jekyll,tomjohnson1492/jekyll,ryanshaw/jekyll,jekyll/jekyll,rasa2011/rasa2011.github.io,x-way/jekyll,tillgrallert/jekyll,alex-kovac/jekyll,yhironaka/yhironaka.github.io,tomjohnson1492/jekyll,Strangehill/jekyll,rasa2011/rasa2011.github.io,alex-kovac/jekyll,Strangehill/jekyll,alex-kovac/jekyll,xiebinhqy/jklly_china,jaybe-jekyll/jekyll,ryanshaw/jekyll,jekyll/jekyll,alex-kovac/jekyll,x-way/jekyll,rlugojr/jekyll,fulldecent/jekyll,fulldecent/jekyll,fulldecent/jekyll,gencer/jekyll,ryanshaw/jekyll,ryanshaw/jekyll,getandpost/jekyll.github.io,xiebinhqy/jklly_china,chrisfinazzo/jekyll,gencer/jekyll,x-way/jekyll,jaybe-jekyll/jekyll,tillgrallert/jekyll,tillgrallert/jekyll,Strangehill/jekyll,jekyll/jekyll,jaybe-jekyll/jekyll,tomjohnson1492/jekyll,Strangehill/jekyll,rlugojr/jekyll
9f46dd13dfbf2a385c37a102abf9351a785fee81
docs/_config.yml
docs/_config.yml
# Site settings title: "ALS Prolog" url: "https://alsprolog.com" repository: "AppliedLogicSystems/ALSProlog" # Analytics for production (Piwik/Matomo substituting for GA) google_analytics: 6 # Build settings markdown: kramdown theme: minima #permalink: pretty kramdown: syntax_highlighter_opts: default_lang: prolog # Enable as many error-checks as possible safe : true strict_front_matter : true liquid: error_mode : strict strict_filters : true strict_variables : false exclude: - CNAME - Gemfile - Gemfile.lock - GNUmakefile - src_help_md header_pages: - docs/index.md - about.md ref_packages: - Core Prolog - alslib - C Interface - ALSDev defaults: - scope: path: "docs/ref" type: "pages" values: reference: true package: Core Prolog group: Control module: builtins layout: "reference-page" - scope: path: "docs/guide" type: "pages" values: layout: "guide-page"
# Site settings title: ALS Prolog url: https://alsprolog.com description: ALS Prolog Compiler & Development Environment author: Applied Logic Systems, Inc. email: info@applied-logic-systems.com # Analytics for production (Piwik/Matomo substituting for GA) google_analytics: 6 # Build settings theme: minima markdown: kramdown kramdown: syntax_highlighter_opts: default_lang: prolog # Enable as many error-checks as possible safe : true strict_front_matter : true liquid: error_mode : strict strict_filters : true strict_variables : false exclude: - CNAME - Gemfile - Gemfile.lock - GNUmakefile - src_help_md header_pages: - docs/index.md - about.md ref_packages: - Core Prolog - alslib - C Interface - ALSDev defaults: - scope: path: "docs/ref" type: "pages" values: reference: true package: Core Prolog group: Control module: builtins layout: "reference-page" - scope: path: "docs/guide" type: "pages" values: layout: "guide-page"
Add project meta-data for footer.
Add project meta-data for footer.
YAML
mit
AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog
e92bfa120027b5d6a921d16fa2e55d3d00e00524
_config_master.yml
_config_master.yml
image_server_url: https://next.cmlteam.com resources_server_url: https://next.cmlteam.com
image_server_url: http://cf.jare.io/?u=https://next.cmlteam.com resources_server_url: https://next.cmlteam.com
Add Jare CDN for images
CML-126: Add Jare CDN for images
YAML
apache-2.0
xonixx/cml-site-jekyll,xonixx/cml-site-jekyll,xonixx/cml-site-jekyll,xonixx/cml-site-jekyll,xonixx/cml-site-jekyll
8cc6d5dc5f162e109d012c8de73e9687dcc71b2c
_data/projects.yml
_data/projects.yml
- title: Tailor caption: Static analyzer for Swift. thumbnail: tailor live: https://tailor.sh github: https://github.com/sleekbyte/tailor - title: Nspire caption: Nspire Innovation Network website. thumbnail: nspire live: http://nspire.alykhan.com github: https://github.com/alykhank/nspire/tree/gh-pages - title: Linkbelt caption: Linkbelt iOS app. thumbnail: linkbelt live: http://linkbelt.me github: https://github.com/linkbelt - title: UW Menu caption: Weekly menus for UW’s on-campus eateries. thumbnail: uwmenu live: http://uwmenu.com github: https://github.com/alykhank/FoodMenu thumbnail_tall: true - title: Calculator caption: iOS Reverse Polish Notation calculator. thumbnail: calculator github: https://github.com/alykhank/calculator thumbnail_tall: true - title: NextRide caption: Brampton Transit JSON API. thumbnail: nextride live: http://nextride.alykhan.com github: https://github.com/alykhank/NextRide thumbnail_tall: true
- title: Tailor caption: Static analyzer for Swift. thumbnail: tailor live: https://tailor.sh github: https://github.com/sleekbyte/tailor - title: Nspire caption: Nspire Innovation Network website. thumbnail: nspire live: http://nspire.alykhan.com github: https://github.com/alykhank/nspire/tree/gh-pages - title: Linkbelt caption: Linkbelt iOS app. thumbnail: linkbelt live: https://linkbelt.github.io github: https://github.com/linkbelt - title: UW Menu caption: Weekly menus for UW’s on-campus eateries. thumbnail: uwmenu live: http://uwmenu.com github: https://github.com/alykhank/FoodMenu thumbnail_tall: true - title: Calculator caption: iOS Reverse Polish Notation calculator. thumbnail: calculator github: https://github.com/alykhank/calculator thumbnail_tall: true - title: NextRide caption: Brampton Transit JSON API. thumbnail: nextride live: http://nextride.alykhan.com github: https://github.com/alykhank/NextRide thumbnail_tall: true
Update URL for Linkbelt website
Update URL for Linkbelt website
YAML
mit
alykhank/alykhank.github.io,alykhank/alykhank.github.io,alykhank/alykhank.github.io
2ccf77cc854dce504b5eb17cf137cad8ecaa165b
roles/chruby/tasks/main.yml
roles/chruby/tasks/main.yml
--- # file: roles/chruby/tasks/main.yml - name: Install chruby homebrew: name: chruby state: present - name: Source chruby.sh & auto.sh from {{ ansible_user_dir }}/.bashrc blockinfile: dest: "{{ ansible_user_dir }}/.bashrc" block: | [ -s /usr/local/opt/chruby/share/chruby/chruby.sh ] && . /usr/local/opt/chruby/share/chruby/chruby.sh [ -s /usr/local/opt/chruby/share/chruby/auto.sh ] && . /usr/local/opt/chruby/share/chruby/auto.sh marker: '# {mark} ANSIBLE MANAGED BLOCK - chruby' create: yes
--- # file: roles/chruby/tasks/main.yml - name: Install chruby homebrew: name: chruby state: present - name: Source chruby.sh & auto.sh from {{ ansible_user_dir }}/.bashrc blockinfile: dest: "{{ ansible_user_dir }}/.bashrc" block: | [ -s /usr/local/share/chruby/chruby.sh ] && . /usr/local/share/chruby/chruby.sh if [ -s /usr/local/share/chruby/auto.sh ]; then . /usr/local/share/chruby/auto.sh if [[ "$__bp_imported" == "defined" ]]; then if [[ ! "$preexec_functions" == *chruby_auto* ]]; then preexec_functions+=("chruby_auto") fi fi fi marker: '# {mark} ANSIBLE MANAGED BLOCK - chruby' create: yes
Make chruby_auto work with iterm2_shell_integration.bash
Make chruby_auto work with iterm2_shell_integration.bash
YAML
mit
andrewdavidbell/macos-infra
81635e3a0b419b9aa4fb9f8975063e6064c3d311
stack.yaml
stack.yaml
flags: {} packages: - '.' extra-deps: - aeson-0.11.1.0 - insert-ordered-containers-0.1.0.1 resolver: nightly-2016-03-04
flags: {} packages: - '.' extra-deps: [] resolver: nightly-2016-07-15
Switch to the latest nightly to avoid extra-deps
Switch to the latest nightly to avoid extra-deps
YAML
bsd-3-clause
GetShopTV/swagger2
0842406e0abd8026f50d7ef9267c800701632ac0
stack.yaml
stack.yaml
resolver: lts-3.20 flags: {} packages: - '.' - location: ../strive #git: git://github.com/tfausak/strive.git #commit: c39704d5f008af42f5c3c2d5319476c7aa12e52d extra-dep: true extra-deps: - gpolyline-0.1.0.1
resolver: lts-3.20 flags: {} packages: - '.' - location: git: git://github.com/tfausak/strive.git commit: cfbd995dacafb1242482c0b6ce23826fad505338 extra-dep: true extra-deps: - gpolyline-0.1.0.1
Use upstream strive, my fix was merges
Use upstream strive, my fix was merges
YAML
mit
liskin/strava-gear
e96542c9c6e3b3b7d74ca165f989b96df6f1e0fa
training_content/wiki_ed/slides/25-drafting-professional/2506-drafting-a-new-article-professional.yml
training_content/wiki_ed/slides/25-drafting-professional/2506-drafting-a-new-article-professional.yml
--- title: Drafting a new article? content: | If you're creating a new article, it makes sense to get a first draft ready in a sandbox. That way, you can get a handle on some of the article structure, and develop a lead paragraph that contains everything you want to tackle. Write an outline of your topic in the form of a standard Wikipedia article's “lead section.” A “lead” section is not a traditional introduction. It should summarize, very briefly, what the rest of the article will say in detail. It should only include important, broad facts about the subject. After you've written your draft, revisit the lead to ensure all main points are represented in this important section. A good example is [Ada Lovelace](https://en.wikipedia.org/wiki/Ada_Lovelace). See [Editing Wikipedia](https://wikiedu.org/editingwikipedia) page 9 for more tips. Note that not all topics pass notability guidelines on Wikipedia, so review [the notability slides](/training/fellows/wikipedia-policies-fellows/notability-fellows) from the Wikipedia policies training before doing too much work on your new article. id: 2506
--- title: Drafting a new article? content: | If you're creating a new article, it makes sense to get a first draft ready in a sandbox. That way, you can get a handle on some of the article structure, and develop a lead paragraph that contains everything you want to tackle. Write an outline of your topic in the form of a standard Wikipedia article's “lead section.” A “lead” section is not a traditional introduction. It should summarize, very briefly, what the rest of the article will say in detail. It should only include important, broad facts about the subject. After you've written your draft, revisit the lead to ensure all main points are represented in this important section. A good example is [Ada Lovelace](https://en.wikipedia.org/wiki/Ada_Lovelace). See [Editing Wikipedia](https://wikiedu.org/editingwikipedia) page 9 for more tips. Note that not all topics pass notability guidelines on Wikipedia, so review [the notability slides](/training/professional-development/wikipedia-policies-professional/notability-professional) from the Wikipedia policies training before doing too much work on your new article. id: 2506
Fix notability link for drafting new articles
Fix notability link for drafting new articles
YAML
mit
WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard
c07500751ff95268b9bba3fcb660659dd6655de6
packages/pa/path-dhall-instance.yaml
packages/pa/path-dhall-instance.yaml
homepage: '' changelog-type: markdown hash: 601c36bedd2360fb2a50c322af86d35eefe9b29a481ae4a894a3e8849b7b6942 test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: ToDhall and FromDhall instances for Path. changelog: | # Changelog for path-dhall-instance # v0.1.0.1 * `FromDhall` and `ToDhall` instances for `Path`. basic-deps: path: -any base: '>=4.7 && <5' dhall: -any aeson: -any all-versions: - 0.1.0.0 - 0.1.0.1 author: Daniel Firth latest: 0.1.0.1 description-type: markdown description: | # path-dhall-instance `FromDhall` and `ToDhall` instances for [path](https://hackage.haskell.org/package/path). Warning: This is not currently normalizing anything when parsing, because I don't understand dhall's instances. license-name: MIT
homepage: '' changelog-type: markdown hash: 3e69673151ae0dea19478e50535c9ed089f244ec8a125356338401b7d8223dba test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: ToDhall and FromDhall instances for Path. changelog: | # Changelog for path-dhall-instance # v0.1.0.1 * `FromDhall` and `ToDhall` instances for `Path`. basic-deps: path: -any base: '>=4.7 && <5' dhall: -any aeson: -any all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.1.0 author: Daniel Firth latest: 0.1.1.0 description-type: markdown description: | # path-dhall-instance `FromDhall` and `ToDhall` instances for [path](https://hackage.haskell.org/package/path). Warning: This is not currently normalizing anything when parsing, because I don't understand dhall's instances. license-name: MIT
Update from Hackage at 2020-09-30T16:20:20Z
Update from Hackage at 2020-09-30T16:20:20Z
YAML
mit
commercialhaskell/all-cabal-metadata
4ba66587961abfe635c0020c3300429a2a6a8c6d
.buildkite/athenaeum-main-nav.yml
.buildkite/athenaeum-main-nav.yml
--- steps: - name: ':docker: Build' agents: queue: builder plugins: docker-compose: build: athenaeum image-repository: us.gcr.io/pg-shared-v1/athenaeum image-name: $BUILDKITE_BUILD_NUMBER - wait - name: 'Upload MainNav to Staging :s3:' command: bin/deploy_nav_staging agents: queue: builder plugins: docker-compose: run: athenaeum - wait - block: 'Deploy MainNav to Production?' branches: 'master' - name: 'Upload MainNav to Production :s3:' branches: 'master' command: bin/deploy_nav_production agents: queue: builder plugins: docker-compose: run: athenaeum
--- steps: - name: ':docker: Build' agents: queue: builder plugins: docker-compose: build: athenaeum image-repository: us.gcr.io/pg-shared-v1/athenaeum image-name: $BUILDKITE_BUILD_NUMBER - wait - name: 'Upload MainNav to Staging :s3:' command: bin/deploy_nav_staging agents: queue: builder plugins: docker-compose: run: athenaeum - wait - block: 'Deploy git:master MainNav to Production?' prompt: "Please review and approve your changes at: http://rcl.policygenius.com/staging/main_nav/index.html" branches: 'master' - name: 'Upload MainNav to Production :s3:' branches: 'master' command: bin/deploy_nav_production agents: queue: builder plugins: docker-compose: run: athenaeum
Update build script prompt for main_nav/index.html deploy
Update build script prompt for main_nav/index.html deploy
YAML
mit
policygenius/athenaeum,policygenius/athenaeum,policygenius/athenaeum
2988f3ebb71f3eb5eb057ef997c390fcd84a7e34
.github/workflows/issue-stale.yml
.github/workflows/issue-stale.yml
name: Close inactive issues on: workflow_dispatch: schedule: - cron: "0 * * * *" jobs: close-issues: runs-on: ubuntu-latest steps: - uses: actions/stale@v4 with: ascending: true operations-per-run: 1000 days-before-issue-stale: 60 days-before-issue-close: 7 stale-issue-label: "stale" stale-issue-message: "This issue is stale because it has been open for 60 days with no activity. If there is no activity in the next 7 days, the issue will be closed." close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale. Please open a new issue if you believe you are encountering a related problem." days-before-pr-stale: -1 days-before-pr-close: -1
name: Close inactive issues on: workflow_dispatch: schedule: - cron: "0 * * * *" jobs: close-issues: runs-on: ubuntu-latest steps: - uses: actions/stale@v4 with: ascending: true operations-per-run: 300 days-before-issue-stale: 60 days-before-issue-close: 7 stale-issue-label: "stale" stale-issue-message: "This issue is stale because it has been open for 60 days with no activity. If there is no activity in the next 7 days, the issue will be closed." close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale. Please open a new issue if you believe you are encountering a related problem." days-before-pr-stale: -1 days-before-pr-close: -1
Scale back operations per run
[github] Scale back operations per run
YAML
bsd-3-clause
exponentjs/exponent,exponent/exponent,exponent/exponent,exponentjs/exponent,exponentjs/exponent,exponentjs/exponent,exponentjs/exponent,exponent/exponent,exponent/exponent,exponent/exponent,exponent/exponent,exponent/exponent,exponentjs/exponent,exponentjs/exponent,exponentjs/exponent,exponent/exponent,exponentjs/exponent,exponent/exponent
6c02b0558644f6e7465893ce136bbc462184234c
metadata/com.thesis.yatta.yml
metadata/com.thesis.yatta.yml
Categories: - Science & Education License: GPL-3.0-only AuthorEmail: abla.ue@web.de SourceCode: https://github.com/uestueab/app-thesis IssueTracker: https://github.com/uestueab/app-thesis/issues Changelog: https://github.com/uestueab/app-thesis/releases AutoName: Yatta RepoType: git Repo: https://github.com/uestueab/app-thesis Builds: - versionName: v0.3.2 versionCode: 2 disable: Copyright issues, upstream renamed it to Yokatta including the package ID commit: v0.3.2 subdir: app gradle: - yes ArchivePolicy: 0 versions AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: v0.3.2 CurrentVersionCode: 2
Categories: - Science & Education License: GPL-3.0-only AuthorEmail: abla.ue@web.de SourceCode: https://github.com/uestueab/app-thesis IssueTracker: https://github.com/uestueab/app-thesis/issues Changelog: https://github.com/uestueab/app-thesis/releases AutoName: Yatta RepoType: git Repo: https://github.com/uestueab/app-thesis Builds: - versionName: v0.3.2 versionCode: 2 disable: Copyright issues, upstream renamed it to Yokatta including the package ID commit: v0.3.2 subdir: app gradle: - yes ArchivePolicy: 0 versions AutoUpdateMode: None UpdateCheckMode: None CurrentVersion: v0.3.2 CurrentVersionCode: 2
Apply 1 suggestion(s) to 1 file(s)
Apply 1 suggestion(s) to 1 file(s)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
405e3a2f0c96bdba914095a73d6fc240016e5f70
lingo.yml
lingo.yml
matchers: - type: 'glob' config: pattern: '**/*.go' - type: 'not' config: type: 'glob' config: pattern: '**/vendor/**/*' - type: 'not' config: type: 'glob' config: pattern: '**/*_test.go' checkers: local_return: multi_word_ident_name: exported_ident_doc: has_ident_prefix: true test_package: consistent_receiver_names: return_error_last: line_length: max_length: 90 tab_width: 4 left_quantifiers:
matchers: - type: 'glob' config: pattern: '**/*.go' - type: 'not' config: type: 'glob' config: pattern: '**/vendor/**/*' - type: 'not' config: type: 'glob' config: pattern: '**/*_test.go' checkers: local_return: multi_word_ident_name: exported_ident_doc: has_ident_prefix: true test_package: consistent_receiver_names: pass_context_first: return_error_last: line_length: max_length: 90 tab_width: 4 left_quantifiers:
Add the pass-context-first checker to the config
Add the pass-context-first checker to the config
YAML
mit
s2gatev/lingo
32f93d2e57c724bf045ca92b1d12c69cebec1f3e
k8s/worker-deployment.yaml
k8s/worker-deployment.yaml
--- apiVersion: extensions/v1beta1 kind: Deployment metadata: name: worker spec: replicas: 1 template: metadata: annotations: alpha.image.policy.openshift.io/resolve-names: '*' labels: service: worker spec: containers: - name: worker image: kindlyops/havenworker env: - name: FAKTORY_URL valueFrom: secretKeyRef: name: haven-faktory-credentials key: url - name: KC_ADMIN value: "admin" - name: KC_PW valueFrom: secretKeyRef: name: haven-database-credentials key: password - name: KC_HOST value: http://keycloak - name: KC_PORT value: "8080" volumes: - name: secret-volume secret: secretName: haven-faktory-credentials restartPolicy: Always strategy: type: "Recreate" paused: false revisionHistoryLimit: 2 minReadySeconds: 0 status: {}
--- apiVersion: extensions/v1beta1 kind: Deployment metadata: name: worker spec: replicas: 1 template: metadata: annotations: alpha.image.policy.openshift.io/resolve-names: '*' labels: service: worker spec: containers: - name: worker image: kindlyops/havenworker env: - name: FAKTORY_URL valueFrom: secretKeyRef: name: haven-faktory-credentials key: url - name: KC_ADMIN value: "admin" - name: KC_PW valueFrom: secretKeyRef: name: haven-database-credentials key: password - name: KC_HOST value: http://keycloak - name: KC_PORT value: "8080" restartPolicy: Always strategy: type: "Recreate" paused: false revisionHistoryLimit: 2 minReadySeconds: 0 status: {}
Remove unused secretVolume from worker deployment.
Remove unused secretVolume from worker deployment. Signed-off-by: Elliot Murphy <014ce8fab4ab9f8a957bfe9f974379093994de97@users.noreply.github.com>
YAML
apache-2.0
kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi
68e05d40d052a40023e82bca88918a19fc3fde59
hiera/hostenv/stage/multi.yaml
hiera/hostenv/stage/multi.yaml
# Configuration for stage-multi servers. ############################################# # Class definitions. classes: - munin::db_monitor ############################################# # Web configuration. # Staging servers also need a vhost for bobo / Venues. site_profile::web::vhosts: bobo: port: 80 docroot: '/var/www/bobo' override: - 'All' docroot_owner: deploy docroot_group: deploy redirectmatch_status: - '404' redirectmatch_regexp: - '\.git(/.*|$)/' require: - User[deploy] # This host needs an additional code deploy script for bobo. site_profile::web::web_deploy_scripts: - 'bobo_code_deploy.sh'
# Configuration for stage-multi servers. ############################################# # Class definitions. classes: - munin::db_monitor ############################################# # Web configuration. # Staging servers also need a vhost for bobo / Venues. site_profile::web::vhosts: 'venues-stage.cashmusic.org': port: 80 docroot: '/var/www/bobo' override: - 'All' docroot_owner: deploy docroot_group: deploy redirectmatch_status: - '404' redirectmatch_regexp: - '\.git(/.*|$)/' require: - User[deploy] # This host needs an additional code deploy script for bobo. site_profile::web::web_deploy_scripts: - 'bobo_code_deploy.sh'
Update vhost name for staging venues vhost
Update vhost name for staging venues vhost
YAML
bsd-3-clause
jeffsheltren/rackspace-template,cashmusic/rackspace-template,jeffsheltren/rackspace-template,cashmusic/rackspace-template,jeffsheltren/rackspace-template,jeffsheltren/rackspace-template,cashmusic/rackspace-template,jeffsheltren/rackspace-template,cashmusic/rackspace-template,cashmusic/rackspace-template
43a71132c461e2dade73b4e933e0c63ee331a103
.travis.yml
.travis.yml
language: php dist: trusty sudo: false cache: directories: - vendor env: - DEPENDENCIES="" - DEPENDENCIES="--prefer-lowest --prefer-stable" php: - 7.1 - 7.2 - 7.3 install: - composer update --no-interaction --prefer-dist $DEPENDENCIES script: - vendor/bin/phpunit --coverage-clover=coverage.clover - vendor/bin/phpstan analyse -l 7 -c phpstan.neon src tests after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover branches: only: - master
language: php dist: trusty sudo: false cache: directories: - vendor env: - DEPENDENCIES="" - DEPENDENCIES="--prefer-lowest --prefer-stable" php: - 7.1 - 7.2 - 7.3 - 7.4 install: - composer update --no-interaction --prefer-dist $DEPENDENCIES script: - vendor/bin/phpunit --coverage-clover=coverage.clover - vendor/bin/phpstan analyse -l 7 -c phpstan.neon src tests after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover branches: only: - master
Add support for PHP 7.4
Add support for PHP 7.4
YAML
mit
thephpleague/oauth2-server,lookyman/oauth2-server
54deab1504a2610eaf1ffbcc0d9ff117ccbaeaf3
.travis.yml
.travis.yml
language: objective-c build: - pod install - xcodebuild -workspace iOrwell.xcworkspace -scheme iOrwell -sdk iphonesimulator
language: objective-c install: - sudo gem install cocoapods - brew update build: - pod install - xcodebuild -workspace iOrwell.xcworkspace -scheme iOrwell -sdk iphonesimulator
Install CocoaPods gem before pod installing
Install CocoaPods gem before pod installing
YAML
bsd-2-clause
orwell-int/client-ios,orwell-int/client-ios
bfea6aeb270215725c5243141286274254abcb0a
.travis.yml
.travis.yml
language: go go_import_path: github.com/MatthewHartstonge/storage go: - 1.7 - 1.8 - 1.9 env: - GO15VENDOREXPERIMENT=1 addons: apt: sources: - sourceline: 'ppa:masterminds/glide' packages: - glide install: - mkdir -p $GOPATH/bin $GOPATH/pkg $GOPATH/src - go get github.com/mattn/goveralls - glide install script: - $GOPATH/bin/goveralls -service=travis-ci services: - mongodb
language: go go_import_path: github.com/MatthewHartstonge/storage go: - '1.8' - '1.9' - '1.10' env: - GO15VENDOREXPERIMENT=1 addons: apt: sources: - sourceline: 'ppa:masterminds/glide' packages: - glide install: - mkdir -p $GOPATH/bin $GOPATH/pkg $GOPATH/src - go get github.com/mattn/goveralls - glide install script: - $GOPATH/bin/goveralls -service=travis-ci services: - mongodb
Drop support for golang 1.7, add support for golang 1.10
:arrow_up: Drop support for golang 1.7, add support for golang 1.10
YAML
apache-2.0
MatthewHartstonge/storage
cc0ba63c1f3ee235f424e6ae88e296e161f1b622
.travis.yml
.travis.yml
language: erlang script: "make compile && rm -rf .git && make test" notifications: irc: "irc.freenode.org#elixir-lang" recipients: - jose.valim@plataformatec.com.br - eric.meadows.jonsson@gmail.com otp_release: - 17.0 - 17.1
language: erlang script: "make compile && rm -rf .git && make test" notifications: irc: "irc.freenode.org#elixir-lang" recipients: - jose.valim@plataformatec.com.br - eric.meadows.jonsson@gmail.com otp_release: - 17.0 - 17.1 - 17.3
Add OTP 17.3 to run on Travis CI
Add OTP 17.3 to run on Travis CI
YAML
apache-2.0
pedrosnk/elixir,beedub/elixir,antipax/elixir,kimshrier/elixir,lexmag/elixir,kelvinst/elixir,gfvcastro/elixir,ggcampinho/elixir,antipax/elixir,michalmuskala/elixir,pedrosnk/elixir,beedub/elixir,kelvinst/elixir,gfvcastro/elixir,lexmag/elixir,ggcampinho/elixir,kimshrier/elixir,elixir-lang/elixir,joshprice/elixir
8236a5725b264b35d9f7da36346860a2335fc481
.travis.yml
.travis.yml
sudo: false language: python cache: pip python: - '2.6' - '2.7' - '3.2' - '3.3' - '3.4' - '3.5' - '3.6' - 'pypy' - 'pypy3' addons: ssh_known_hosts: - localhost matrix: allow_failures: - python: '2.6' - python: '3.2' - python: 'pypy' - python: 'pypy3' install: - pip install -r requirements-dev.txt script: - green -rvvk after_script: - codecov
sudo: false language: python cache: pip python: - '2.6' - '2.7' - '3.2' - '3.3' - '3.4' - '3.5' - '3.6' - 'pypy' - 'pypy3' addons: ssh_known_hosts: - localhost matrix: allow_failures: - python: '2.6' - python: '3.2' - python: 'pypy' - python: 'pypy3' install: - pip install -r tests/requirements.txt script: - green -rvvk after_script: - codecov
Fix crashing build caused by moved file
Fix crashing build caused by moved file
YAML
lgpl-2.1
althonos/fs.sshfs
ee090668f2aa26316b7cdf4c829339cc33c4f546
.travis.yml
.travis.yml
# .travis.yml file based on: # https://gist.github.com/dan-blanchard/7045057 language: python python: - "3.5" - "3.6" install: # Setup anaconda. See http://conda.pydata.org/docs/travis.html - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a # Create conda environment with dependencies - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy bokeh h5py pandas networkx - source activate test-environment - pip install git+https://github.com/BBN-Q/Adapt.git - pip install tqdm pyvisa coveralls - export PYTHONPATH=$PYTHONPATH:$PWD/src script: - coverage run -m unittest discover -v test after_script: - coveralls # necessary to run on new container-based infrastructure sudo: false cache: directories: - $HOME/download - $HOME/.cache/pip
# .travis.yml file based on: # https://gist.github.com/dan-blanchard/7045057 language: python python: - "3.5" - "3.6" install: # Setup anaconda. See http://conda.pydata.org/docs/travis.html - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a # Create conda environment with dependencies - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy bokeh matplotlib h5py pandas networkx - source activate test-environment - pip install git+https://github.com/BBN-Q/Adapt.git - pip install tqdm pyvisa coveralls - export PYTHONPATH=$PYTHONPATH:$PWD/src script: - coverage run -m unittest discover -v test after_script: - coveralls # necessary to run on new container-based infrastructure sudo: false cache: directories: - $HOME/download - $HOME/.cache/pip
Add matplotlib to conda environment.
Add matplotlib to conda environment.
YAML
apache-2.0
BBN-Q/Auspex,BBN-Q/Auspex,BBN-Q/Auspex,BBN-Q/Auspex
9545884c799070c1b95eaf4a73bc5f866f644ec1
.travis.yml
.travis.yml
language: scala scala: - 2.11.8 jdk: - oraclejdk8 script: sbt ++${TRAVIS_SCALA_VERSION} amm/test $(if [[ "${TRAVIS_PULL_REQUEST}" == "false" && "${TRAVIS_BRANCH}" == "master" ]]; then echo "published/publish"; fi) branches: only: - master env: global: secure: bRTmSL4sBHWWsYZIWknPlNZxokHY08ortiIodBFAGvkteGIBHuRBniSIvuOysg1QlG1ggZXilsXbNvyzj0L21uPNDWm3y90IDny7j9GBLaYfiIJ3SPanjnU6bmruUPWgxR5e2owzClLQedizocZAIh9e35M0zCmLtcTbr/g/2QI= cache: directories: - $HOME/.coursier - $HOME/.ivy2/cache - $HOME/.sbt
language: scala scala: - 2.11.8 jdk: - oraclejdk8 script: sbt ++${TRAVIS_SCALA_VERSION} amm/test $(if [[ "${TRAVIS_PULL_REQUEST}" == "false" && "${TRAVIS_BRANCH}" == "master" ]]; then echo "published/publish"; fi) branches: only: - master env: global: - secure: bRTmSL4sBHWWsYZIWknPlNZxokHY08ortiIodBFAGvkteGIBHuRBniSIvuOysg1QlG1ggZXilsXbNvyzj0L21uPNDWm3y90IDny7j9GBLaYfiIJ3SPanjnU6bmruUPWgxR5e2owzClLQedizocZAIh9e35M0zCmLtcTbr/g/2QI= - secure: dNVrUzm8AaR5UebEFgqnslvEJXX4r/X1hxsO8A0xn7BuA2o5MYkWvuDLR0jNiyKM95DE6yNM+0APq9mFKe2V2u1h6CU9+xTZLRMMKeU/WXe4ne/wBaCDzcD/oZ5uFR7B9STErm7lq6DjqsTIdhAH/dtDOCmRNGc14kJDC4GGVrE= cache: directories: - $HOME/.coursier - $HOME/.ivy2/cache - $HOME/.sbt
Add missing secret for Travis CI
[fork] Add missing secret for Travis CI
YAML
mit
alexarchambault/ammonium,alexarchambault/ammonium
8c6bb13ec2fc4e5e317da11c2c81cfbd072d5257
.travis.yml
.travis.yml
language: ruby rvm: - '2.3' - '2.6' before_install: - gem install bundler
language: ruby rvm: - '2.5' - '2.6' before_install: - gem install bundler
Update ruby versions to test
Update ruby versions to test
YAML
mit
mode/halogen
64a8bb6a5b3fc40a1983e0b237ff25dd816988ba
.travis.yml
.travis.yml
language: python cache: pip matrix: include: - os: linux python: "pypy" - os: osx language: generic - os: linux python: "2.7" - os: linux python: "3.4" - os: linux python: "3.5" - os: linux python: "3.6" - os: linux python: "3.7" - os: linux python: "3.8" install: - scripts/travis.sh pip install --requirement=requirements-travis.txt - scripts/travis.sh LC_ALL=C pip install . # The `make test' command below is run under `sudo -E' to enable # the test suite to read /var/log/syslog on Travis CI workers. script: - scripts/travis.sh make check - scripts/travis.sh sudo -E make test after_success: - scripts/travis.sh coveralls branches: except: - /^[0-9]/
language: python cache: pip matrix: include: - os: linux python: "pypy" - os: osx language: generic - os: linux python: "2.7" - os: linux python: "3.4" - os: linux python: "3.5" - os: linux python: "3.6" - os: linux python: "3.7" - os: linux python: "3.8" - os: linux python: "3.9-dev" install: - scripts/travis.sh pip install --requirement=requirements-travis.txt - scripts/travis.sh LC_ALL=C pip install . # The `make test' command below is run under `sudo -E' to enable # the test suite to read /var/log/syslog on Travis CI workers. script: - scripts/travis.sh make check - scripts/travis.sh sudo -E make test after_success: - scripts/travis.sh coveralls branches: except: - /^[0-9]/
Test on Python 3.9-dev to avoid surprises
Test on Python 3.9-dev to avoid surprises
YAML
mit
xolox/python-coloredlogs,xolox/python-coloredlogs
ebc8cae729652b53224df9c3bb2e93deacadce1f
.travis.yml
.travis.yml
language: go sudo: false go: - "1.7" - "1.8" - "1.9" - "1.10" - "1.11.6" - "1.12" - "tip" before_install: - export PATH=$HOME/gopath/bin:$PATH - go get github.com/mattn/goveralls - go get github.com/modocache/gover script: - go test -race ./... - go test -coverprofile=sarah.coverprofile . - go test -coverprofile=alerter.line.coverprofile ./alerter/line - go test -coverprofile=gitter.coverprofile ./gitter - go test -coverprofile=log.coverprofile ./log - go test -coverprofile=retry.coverprofile ./retry - go test -coverprofile=slack.coverprofile ./slack - go test -coverprofile=watchers.coverprofile ./watchers - go test -coverprofile=workers.coverprofile ./workers - gover - goveralls -coverprofile=gover.coverprofile -service=travis-ci -ignore=examples/*/*.go,examples/*/*/*.go,examples/*/*/*/*.go matrix: allow_failures: - go: tip git: depth: 10 env: - GO111MODULE=on
language: go sudo: false go: - "1.7" - "1.8" - "1.9" - "1.10" - "1.11.6" - "1.12" - "tip" before_install: - export PATH=$HOME/gopath/bin:$PATH - go get github.com/mattn/goveralls - go get github.com/modocache/gover script: - go test -race ./... - go test -coverprofile=sarah.coverprofile . - go test -coverprofile=alerter.line.coverprofile ./alerter/line - go test -coverprofile=gitter.coverprofile ./gitter - go test -coverprofile=log.coverprofile ./log - go test -coverprofile=retry.coverprofile ./retry - go test -coverprofile=slack.coverprofile ./slack - go test -coverprofile=watchers.coverprofile ./watchers - go test -coverprofile=workers.coverprofile ./workers - gover - goveralls -coverprofile=gover.coverprofile -service=travis-ci -ignore=examples/*/*.go,examples/*/*/*.go,examples/*/*/*/*.go matrix: allow_failures: - go: tip - go: "1.7" - go: "1.8" - go: "1.9" - go: "1.10" git: depth: 10 env: - GO111MODULE=on
Allow test failure with 1.10 or older
Allow test failure with 1.10 or older
YAML
mit
oklahomer/go-sarah