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 |
|---|---|---|---|---|---|---|---|---|---|
177b25a52906bfa376e7664c5849e64005584c2e | appveyor.yml | appveyor.yml | # Test against this version of Node.js
environment:
nodejs_version: '10'
GH_TOKEN:
secure: Vr09Jk6CRcfJcj8XJWW90ziNw/9Efx7SqEWjtcpwNFDTV941mrL5YpgNBWLiwbVg
platform:
- x86
- x64
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version $env:platform
# install modules
- npm ci
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
- npm run release
# Don't actually build.
build: off
| # Test against this version of Node.js
environment:
nodejs_version: '10'
GH_TOKEN:
secure: Vr09Jk6CRcfJcj8XJWW90ziNw/9Efx7SqEWjtcpwNFDTV941mrL5YpgNBWLiwbVg
platform:
- x64
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version $env:platform
# install modules
- npm ci
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
- npm run release
# Don't actually build.
build: off
| Remove x86 build on Appveyor | Remove x86 build on Appveyor
| YAML | mit | salomvary/soundcleod,fr34k8/soundcleod,salomvary/soundcleod,fr34k8/soundcleod,salomvary/soundcleod,fr34k8/soundcleod,fr34k8/soundcleod,salomvary/soundcleod |
6fe9a1342c1d5e560ccde84b7f39d98b3bcb1b32 | appveyor.yml | appveyor.yml | # Test against this version of Node.js
environment:
nodejs_version: "6.9.1"
# fail all the builds once any of the builds fail have failed
matrix:
fast_finish: true
# build only this branches
branches:
only:
- master
- develop
# Do not build tags
skip_tags: true
# Pull Requests do not increment build number
pull_requests:
do_not_increment_build_number: true
# Install scripts. (runs after repo cloning)
install:
# install google chrome
- choco install googlechrome
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# Install angular-cli globally
- npm install -g angular-cli
# install modules
- yarn install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# copy first the ci config files
- cp src/environments/environment.ci.ts src/environments/environment.dev.ts
- cp src/environments/environment.ci.ts src/environments/environment.ts
# run tests
- ng test --watch false
# Don't actually build.
build: off
| # Test against this version of Node.js
environment:
nodejs_version: "6.9.1"
# fail all the builds once any of the builds fail have failed
matrix:
fast_finish: true
# build only this branches
branches:
only:
- master
- develop
# Do not build tags
skip_tags: true
# Pull Requests do not increment build number
pull_requests:
do_not_increment_build_number: true
# Install scripts. (runs after repo cloning)
install:
# install google chrome
- choco install googlechrome
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# Install angular-cli globally
- npm install -g angular-cli
# install modules
- yarn install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# copy first the ci config files
- cp src/environments/environment.ci.ts src/environments/environment.dev.ts
- cp src/environments/environment.ci.ts src/environments/environment.ts
# run tests
- ng test --watch false
notifications:
- provider: Slack
incoming_webhook:
secure: VdxswwiTtaiyE19P7KmTmieabxX5oVrZLPOv7HKkS0e8AVEUe2Fj1zzumdhorbPafhUMuha6eRDs9TreH2zHRQk4AWTtLvOyHHqAi1yUiVM=
channel: '#interactve-maps-build'
on_build_success: true
on_build_failure: true
on_build_status_changed: true
# Don't actually build.
build: off
| Add AppVeyor build notification for Slack | Add AppVeyor build notification for Slack
| YAML | mit | ecsnavarretemit/sarai-interactive-maps,ecsnavarretemit/sarai-ng2,ecsnavarretemit/sarai-interactive-maps,ecsnavarretemit/sarai-ng2,ecsnavarretemit/sarai-ng2,ecsnavarretemit/sarai-interactive-maps |
ea2835b36ddd8c6c2a93624ca67cbc4ce179ac78 | appveyor.yml | appveyor.yml | version: 1.0.{build}
image: Visual Studio 2017
configuration:
- Release
- Debug
build:
verbosity: minimal
test: off
on_success:
- cmd: >-
appveyor AddMessage start
"%APPVEYOR_BUILD_FOLDER%\x64\Release\MGen"
appveyor AddMessage stop
| version: 1.0.{build}
image: Visual Studio 2017
configuration:
- Release
- Debug
build:
verbosity: minimal
after_build:
- cmd: >-
appveyor AddMessage start
"%APPVEYOR_BUILD_FOLDER%\x64\Release\MGen"
appveyor AddMessage stop
test_script:
- cmd: >-
appveyor AddMessage start
"%APPVEYOR_BUILD_FOLDER%\x64\Release\MGen"
appveyor AddMessage stop
on_success:
- cmd: >-
appveyor AddMessage start
"%APPVEYOR_BUILD_FOLDER%\x64\Release\MGen"
appveyor AddMessage stop
| Revert "Code quality: migrated int<->float conversions to static_cast" | Revert "Code quality: migrated int<->float conversions to static_cast"
This reverts commit 2279a9550b515148efb3bff98da625a9d3f5a203.
| YAML | agpl-3.0 | rualark/MGen,rualark/MGen,rualark/MGen,rualark/MGen,rualark/MGen |
31ec37c9cc345aa765949e9d74e9315501265695 | appveyor.yml | appveyor.yml | version: "master-{build}"
os: Windows Server 2012
platform:
- x64
environment:
matrix:
- ruby_version: "200"
clone_folder: c:\projects\ohai
clone_depth: 1
skip_tags: true
branches:
only:
- master
- 8-stable
- 7.4-stable
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- echo %PATH%
- ruby --version
- gem --version
- gem install bundler --quiet --no-ri --no-rdoc
- bundler --version
build_script:
- bundle install
test_script:
- bundle exec rspec
- bundle exec ohai
| version: "master-{build}"
os: Windows Server 2012
platform:
- x64
environment:
matrix:
- ruby_version: "200"
- ruby_version: "21"
clone_folder: c:\projects\ohai
clone_depth: 1
skip_tags: true
branches:
only:
- master
- 8-stable
- 7.4-stable
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- echo %PATH%
- ruby --version
- gem --version
- gem install bundler --quiet --no-ri --no-rdoc
- bundler --version
build_script:
- bundle install
test_script:
- bundle exec rspec
- bundle exec ohai
| Test with ruby 2.1 on Windows | Test with ruby 2.1 on Windows
| YAML | apache-2.0 | acaiafa/ohai,n-marton/ohai,Fodoj/ohai,juliandunn/ohai,jseely/ohai,higanworks/ohai,johnbellone/ohai,juliandunn/ohai,criteo-forks/ohai,mattray/ohai,Fodoj/ohai,tas50/ohai-1,jaymzh/ohai,jaymzh/ohai,acaiafa/ohai,chef/ohai,numericillustration/ohai,jseely/ohai,chef/ohai,tas50/ohai-1,n-marton/ohai,johnbellone/ohai,criteo-forks/ohai,mattray/ohai,higanworks/ohai,numericillustration/ohai |
b853b151c8396bd51952025e3b42d84a24958fda | appveyor.yml | appveyor.yml | environment:
matrix:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python37-x64"
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python38-x64"
branches:
except:
- /^[0-9]+\.[0-9]+\.[0-9]+/
install:
- choco install make -y
- set PATH=%PYTHON%\\Scripts;%PATH%
- make install
build: off
cache:
- %LOCALAPPDATA%\pip\Cache
- %LOCALAPPDATA%\pypoetry\cache
- C:\ProgramData\chocolatey\lib
test_script:
- make test
on_success:
- poetry run codecov -f coverage.xml
| environment:
matrix:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python37-x64"
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python38-x64"
branches:
except:
- /^[0-9]+\.[0-9]+\.[0-9]+/
install:
- choco install make -y
- 'set PATH=%PYTHON%\\Scripts;%PATH%'
- make install
build: off
cache:
- '%LOCALAPPDATA%\pip\Cache'
- '%LOCALAPPDATA%\pypoetry\cache'
- '%PROGRAMDATA%\chocolatey\lib'
test_script:
- make test
on_success:
- poetry run codecov -f coverage.xml
| Put variables in single quotes | Put variables in single quotes
| YAML | mit | Code-ReaQtor/latex2mathml |
44d07952f7edc4fa9a580b9b0583ac82c3665554 | appveyor.yml | appveyor.yml | - branches:
only:
- develop
version: 0.1.{build}
skip_tags: true
image: Visual Studio 2015
install:
- cmd: nuget restore
init:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
before_build:
- cmd: set PATH=%PATH%;C:\Program Files (x86)\Inno Setup 5\;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin\
build_script:
- cmd: msbuild /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:Configuration=Release
test_script:
- cmd: nunit3-console %APPVEYOR_BUILD_FOLDER%\ParserTest\bin\Release\ParserTest.dll --result=myresults.xml;format=AppVeyor | - branches:
only:
- develop
version: 0.1.{build}
skip_tags: true
image: Visual Studio 2015
install:
- cmd: nuget restore
init:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
before_build:
- cmd: set PATH=%PATH%;C:\Program Files (x86)\Inno Setup 5\;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin\
build_script:
- cmd: msbuild /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:Configuration=Release
after_build:
- cmd: >-
xcopy "$(SolutionDir)\packages\ExcelDna.AddIn.0.33.9\tools\ExcelDna.xll" "$(TargetDir)Requests-AddIn.xll*" /C /Y
xcopy "$(TargetDir)Requests-AddIn.dna*" "$(TargetDir)Requests-AddIn64.dna*" /C /Y
xcopy "$(SolutionDir)\packages\ExcelDna.AddIn.0.33.9\tools\ExcelDna64.xll" "$(TargetDir)Requests-AddIn64.xll*" /C /Y
"$(SolutionDir)\packages\ExcelDna.AddIn.0.33.9\tools\ExcelDnaPack.exe" "$(TargetDir)Requests-AddIn.dna" /Y
"$(SolutionDir)\packages\ExcelDna.AddIn.0.33.9\tools\ExcelDnaPack.exe" "$(TargetDir)Requests-AddIn64.dna" /Y
test_script:
- cmd: nunit3-console %APPVEYOR_BUILD_FOLDER%\ParserTest\bin\Release\ParserTest.dll --result=myresults.xml;format=AppVeyor | Fix yml a Please enter the commit message for your changes. Lines starting | Fix yml
a Please enter the commit message for your changes. Lines starting
| YAML | apache-2.0 | Pathio/excel-requests |
e39d6707f8e5013e066d7697fab0ed57c3f645ec | appveyor.yml | appveyor.yml | build: false
environment:
matrix:
- PYTHON: "C:/Python27-x64"
- PYTHON: "C:/Python35-x64"
- PYTHON: "C:/Python36-x64"
- PYTHON: "C:/Python37-x64"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- ps: "[Net.ServicePointManager]::SecurityProtocol = 'Ssl3, Tls, Tls11, Tls12'"
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
- "%PYTHON%/python.exe C:/get-pip.py"
- "%PYTHON%/Scripts/pip.exe --version"
- "%PYTHON%/Scripts/pip.exe install -r requirements/requirements.txt"
- "%PYTHON%/Scripts/pip.exe install -r requirements/test_requirements.txt"
- "%PYTHON%/Scripts/pip.exe install -e ."
test_script:
- "%PYTHON%/python.exe invoke_pytest.py"
notifications:
- provider: Slack
auth_token:
secure: JyTQAtBzpPYiWK3eRTz/U+rvmAKopqIWE19ti4vSL/IRygV3jUVUkwET1VyTlrqOeYfNx3Kfcp7eUmHCHxFCgw==
channel: notifications
| build: false
environment:
matrix:
- PYTHON: "C:/Python27-x64"
- PYTHON: "C:/Python35-x64"
- PYTHON: "C:/Python36-x64"
- PYTHON: "C:/Python37-x64"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- ps: "[Net.ServicePointManager]::SecurityProtocol = 'Ssl3, Tls, Tls11, Tls12'"
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
- "%PYTHON%/python.exe C:/get-pip.py"
- "%PYTHON%/Scripts/pip.exe --version"
- "%PYTHON%/Scripts/pip.exe install .[test]"
test_script:
- "%PYTHON%/python.exe invoke_pytest.py"
notifications:
- provider: Slack
auth_token:
secure: JyTQAtBzpPYiWK3eRTz/U+rvmAKopqIWE19ti4vSL/IRygV3jUVUkwET1VyTlrqOeYfNx3Kfcp7eUmHCHxFCgw==
channel: notifications
| Simplify installation for CI tests | Simplify installation for CI tests
| YAML | mit | thombashi/pingparsing,thombashi/pingparsing |
114d506f4839f95ab26e8fd40adc1b2cf0fb6d43 | appveyor.yml | appveyor.yml | # https://www.appveyor.com/docs/appveyor-yml/
# Test against these versions of Node.js.
environment:
MOCHA_REPORTER: "mocha-appveyor-reporter"
matrix:
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "10"
matrix:
fast_finish: true
branches:
only:
- master
- beta
- release
# Install scripts. (runs after repo cloning)
install:
- ps: Install-Product node $env:nodejs_version
- appveyor-retry npm i -g npm@^4
- appveyor-retry yarn
- appveyor-retry yarn add mocha-appveyor-reporter # must be installed locally.
cache:
- '%LOCALAPPDATA%\Yarn'
- '%APPDATA%\Roaming\bower'
# Post-install test scripts.
test_script:
- cmd: yarn test:all
# Don't actually build.
build: off
# Set build version format here instead of in the admin panel.
version: "{build}"
| # https://www.appveyor.com/docs/appveyor-yml/
image: Visual Studio 2017
# Test against these versions of Node.js.
environment:
MOCHA_REPORTER: "mocha-appveyor-reporter"
matrix:
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "10"
matrix:
fast_finish: true
branches:
only:
- master
- beta
- release
# Install scripts. (runs after repo cloning)
install:
- ps: Install-Product node $env:nodejs_version
- appveyor-retry npm i -g npm@^4
- appveyor-retry yarn
- appveyor-retry yarn add mocha-appveyor-reporter # must be installed locally.
cache:
- '%LOCALAPPDATA%\Yarn'
- '%APPDATA%\Roaming\bower'
# Post-install test scripts.
test_script:
- cmd: yarn test:all
# Don't actually build.
build: off
# Set build version format here instead of in the admin panel.
version: "{build}"
| Use `Visual Studio 2017` image | AppVeyor: Use `Visual Studio 2017` image
Hopefully this runs faster than the others? 🤔
| YAML | mit | mike-north/ember-cli,jgwhite/ember-cli,fpauser/ember-cli,fpauser/ember-cli,elwayman02/ember-cli,ember-cli/ember-cli,thoov/ember-cli,fpauser/ember-cli,ember-cli/ember-cli,mike-north/ember-cli,mike-north/ember-cli,balinterdi/ember-cli,fpauser/ember-cli,buschtoens/ember-cli,jrjohnson/ember-cli,ember-cli/ember-cli,mike-north/ember-cli,jrjohnson/ember-cli,HeroicEric/ember-cli,elwayman02/ember-cli,raycohen/ember-cli,kategengler/ember-cli,HeroicEric/ember-cli,raycohen/ember-cli,thoov/ember-cli,asakusuma/ember-cli,Turbo87/ember-cli,jgwhite/ember-cli,jgwhite/ember-cli,HeroicEric/ember-cli,asakusuma/ember-cli,Turbo87/ember-cli,thoov/ember-cli,thoov/ember-cli,balinterdi/ember-cli,Turbo87/ember-cli,buschtoens/ember-cli,kategengler/ember-cli,HeroicEric/ember-cli,jgwhite/ember-cli,Turbo87/ember-cli |
22c36ddae36d3758e3629873970cd7119170362c | appveyor.yml | appveyor.yml | version: '{build}'
environment:
GITHUB_TOKEN:
secure: 4vpPlabt2OKA/pyJKSZUr3KJg8y0uJFnzf/kTmVUTCPIb9Q3fpjED+1LEXHYQ4UY
SCM_USERNAME:
secure: 8BjoFIdSfcFM5UNtivbS5w==
APPVEYOR_RDP_PASSWORD:
secure: 4amxfxphFUcpp60d9Q6gJg==
init:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
install:
- cinst jdk8
branches:
only:
- master
only_commits:
message: /\[maven-release-plugin\] prepare release/
build_script:
- ps: >-
$ENV:PATH=”$ENV:PATH;$ENV:WIX\bin”
$ENV:BINJR_BUILD_NUMBER=$ENV:APPVEYOR_BUILD_NUMBER
git clone -b travis https://github.com/fthevenet/binjr.git ".\binjr\target\travis"
cd binjr
mvn clean deploy --settings "./target/travis/settings.xml" -P buildNativeBundles
| version: '{build}'
environment:
GITHUB_TOKEN:
secure: 4vpPlabt2OKA/pyJKSZUr3KJg8y0uJFnzf/kTmVUTCPIb9Q3fpjED+1LEXHYQ4UY
SCM_USERNAME:
secure: 8BjoFIdSfcFM5UNtivbS5w==
APPVEYOR_RDP_PASSWORD:
secure: 4amxfxphFUcpp60d9Q6gJg==
init:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
install:
- cinst jdk8
branches:
only:
- master
only_commits:
message: /\[maven-release-plugin\] prepare release/
build_script:
- ps: >-
refreshenv
$ENV:PATH=”$ENV:PATH;$ENV:WIX\bin”
$ENV:BINJR_BUILD_NUMBER=$ENV:APPVEYOR_BUILD_NUMBER
git clone -b travis https://github.com/fthevenet/binjr.git ".\binjr\target\travis"
cd binjr
mvn clean deploy --settings "./target/travis/settings.xml" -P buildNativeBundles
| Refresh env variables after installing new JDK | Refresh env variables after installing new JDK
| YAML | apache-2.0 | fthevenet/binjr,fthevenet/binjr |
fc5985f425200bd66f1b3d648f990d9c4cd8fa49 | .pkgr.yml | .pkgr.yml | targets:
ubuntu-14.04:
ubuntu-12.04:
debian-7:
build_dependencies:
- mercurial
- bzr
dependencies:
- git
before:
- mv packager/Procfile .
- mv packager/.godir .
after:
- mv bin/main gogs
after_install: ./packager/debian/postinst
| targets:
ubuntu-14.04:
ubuntu-12.04:
debian-7:
centos6:
build_dependencies:
- mercurial
- bzr
dependencies:
- git
before:
- mv packager/Procfile .
- mv packager/.godir .
after:
- mv bin/main gogs
after_install: ./packager/debian/postinst
| Enable package building on EL6 | Enable package building on EL6
| YAML | mit | eddiesigner/gogs,mpindado/gogs,GodOfConquest/gogs,0rax/gogs,fanningert/gogs,hzy001/gogs,yaggytter/gogs,tboerger/gitea,uileyar/gogs,wangjild/gogs,gogits/gogs,psaavedra/gogs,huyueMiss/gogs,pwelter34/gogs,cez81/gitea,lunny/gitea,andrewrothstein/gogs,denji/gitea_tmp,armersong/gogs,lunny/gitea,DebansNetwork/gogs,kiliit/gogs,kjellkvinge/gitea,voxxit/gogs,beni55/gogs,xiaoyanit/gogs,psolyca/gitea,DblK/gitea,tboerger/gitea,JonasFranzDEV/gitea,jorgesumle/gitea,svcavallar/gogs,ethantkoenig/gitea,xaionaro/gogs,wqweto/gogs,Janfred/gogs,kloudsio/gogs,sapk-fork/gitea,linquize/gogs,bkcsoft/gogs,kolonse/gogs,puffybsd/gitea,xormplus/gitea,imjerrybao/gogs,rems4e/gitea,Ralph-Wang/gogs,opavader/gogs,linquize/gitea,pentix/gogs,ForxaCoLab/forxa,rems4e/gitea,0rax/gogs,tszym/gogs,jvanderneutstulen/gogs,cgars/gogs,tempbottle/gogs,jacobxk/gogs,cgars/gogs,pikacloud/pikacode,mark77z/tt2016,0x0all/gogs,admik/gitea,xaionaro/gogs,dlob/gogs,AndreaGiardini/gogs,siadat/gogs,fabric8io/gogs,cem/gogs,Bwko/gitea,Morlinest/gitea,hzy001/gogs,JonasFranzDEV/gitea,lafriks/gitea,pentix/gogs,chriswatt/gogs,yaggytter/gogs,avelino/gitea,noikiy/gogs,willemvd/gitea,go-gitea/gitea,imjerrybao/gogs,manfer/gogs,gigforks/gogs,faddat/gogs,tony/gogs,mjwwit/gitea,agaurav/gogs,mukaiu/gogs,peterhadlaw/gogs,SlavikZ/gogs,xet7/gogs,kseistrup/gogs,kubatyszko/gitea,kiliit/gogs,sillydong/gogs,kubatyszko/gitea,bkcsoft/gogs,Janfred/gogs,opavader/gogs,mapmeld/codemingler,fabric8io/gogs,jacobxk/gogs,go-gitea/gitea,w4ngyi/gogs,andrewrothstein/gogs,mpindado/gogs,lafriks/gitea,kevinc0825/gogs,dancewing/gogs,denji/gitea_tmp,w4ngyi/gogs,lucienevans/gogs,geerlingguy/gogs,typeless/gitea,cez81/gitea,siadat/gogs,cloudron-io/gogs,strk/gogs,DebansNetwork/gogs,denji/gitea_tmp,joshk/gogs,helojo/gogs,helojo/gogs,AnuchitPrasertsang/gogs,liliexuan/gogs,liliexuan/gogs,nounoursheureux/gitea,jqs7/gogs,hiproz/gogs,Janfred/gogs,makhov/gitea,ForxaCoLab/forxa,gigforks/gogs,dancewing/gogs,lucienevans/gogs,uileyar/gogs,odinuge/gogs,Em-AK/gogs,tony/gogs,SlavikZ/gogs,ethantkoenig/gogs,typeless/gitea,codeskyblue/gogs,haoyixin/gogs,cem/gogs,eddiesigner/gogs,mpindado/gogs,dnmgns/gitea,joshk/gogs,DblK/gitea,faddat/gogs,dl5rcw/gitea,codeskyblue/gogs,gemili/gogs,tboerger/gitea,gwynantj/gogs,odinuge/gogs,GodOfConquest/gogs,denji/gitea_tmp,spacetourist/gitea,cngolang/gogs,manfer/gitea,andreynering/gitea,sooboy/gogs,kolonse/gogs,wqweto/gogs,huyueMiss/gogs,gigforks/gogs,Immortalin/gogs,dentmaged/gogs,tszym/gogs,eddiesigner/gogs,sooboy/gogs,agaurav/gogs,AndreaGiardini/gogs,noikiy/gogs,noikiy/gogs,vdbt/gitea,ForxaCoLab/forxa,tpires/gogs,dancewing/gogs,Em-AK/gogs,CaeruleusAqua/gitea,bygreencn/gogs,kjellkvinge/gitea,gwynantj/gogs,treejames/gogs,tempbottle/gogs,everhopingandwaiting/gogs,haoyixin/gogs,vdbt/gitea,spacetourist/gitea,linquize/gitea,kong36088/SCAUGogits,mark77z/tt2016,cloudron-io/gogs,geek1011/gitea,pecastro/gogs,fabric8io/gogs,jqs7/gogs,kjellkvinge/gitea,sapk/gogs,kolonse/gogs,xet7/gogs,psaavedra/gogs,tpires/gogs,dentmaged/gogs,manfer/gitea,kseistrup/gogs,opavader/gogs,pentix/gogs,w4ngyi/gogs,linquize/gogs,Immortalin/gogs,0rax/gogs,kloudsio/gogs,metadevfoundation/gogs,wqweto/gogs,fanningert/gogs,wangjild/gogs,kevinc0825/gogs,golang-lib/gogs,likeit92/gogs,cloudron-io/gogs,nounoursheureux/gitea,tempbottle/gogs,mukaiu/gogs,pecastro/gogs,jqs7/gogs,CaeruleusAqua/gitea,chriswatt/gogs,nounoursheureux/gitea,gemili/gogs,cngolang/gogs,sooboy/gogs,sapk-fork/gitea,pikacloud/pikacode,go-gitea/gitea,sapk/gogs,cgars/gogs,DebansNetwork/gogs,agaurav/gogs,armersong/gogs,cez81/gitea,yaggytter/gogs,tszym/gogs,everhopingandwaiting/gogs,Immortalin/gogs,tanapoln/gogs,yonglehou/gogs,denghongcai/gogs,jvanderneutstulen/gogs,linquize/gogs,andreynering/gitea,sillydong/gogs,bkcsoft/gogs,mark77z/tt2016,beni55/gogs,Spice-King/gogs,sapk/gogs,likeit92/gogs,pikacloud/pikacode,kevinc0825/gogs,beni55/gogs,manfer/gogs,joshk/gogs,liliexuan/gogs,treejames/gogs,pwelter34/gogs,kloudsio/gogs,siadat/gogs,tanapoln/gogs,uileyar/gogs,dentmaged/gogs,avelino/gitea,vCaesar/gitea,xiaoyanit/gogs,ethantkoenig/gitea,svcavallar/gogs,everhopingandwaiting/gogs,Spice-King/gogs,typeless/gitea,psolyca/gitea,dancewing/gogs,jorgesumle/gitea,voxxit/gogs,manfer/gitea,AndreaGiardini/gogs,tpires/gogs,haoyixin/gogs,linquize/gitea,tanapoln/gogs,peterhadlaw/gogs,kong36088/SCAUGogits,pecastro/gogs,ethantkoenig/gogs,mukaiu/gogs,0rax/gogs,Bwko/gitea,metadevfoundation/gogs,Morlinest/gitea,psaavedra/gogs,armersong/gogs,wangjild/gogs,sapk-fork/gitea,Ralph-Wang/gogs,peterhadlaw/gogs,huyueMiss/gogs,fanningert/gogs,chriswatt/gogs,dnmgns/gitea,dlob/gogs,xet7/gogs,bygreencn/gogs,andrewrothstein/gogs,geek1011/gitea,GodOfConquest/gogs,sapk-fork/gitea,hiproz/gogs,denghongcai/gogs,hzy001/gogs,xiaoyanit/gogs,0x0all/gogs,strk/gogs,bygreencn/gogs,gigforks/gogs,yonglehou/gogs,cumgun/gitea,yonglehou/gogs,AnuchitPrasertsang/gogs,cngolang/gogs,manfer/gogs,svcavallar/gogs,mjwwit/gitea,golang-lib/gogs,treejames/gogs,AnuchitPrasertsang/gogs,dlob/gogs,gemili/gogs,dnmgns/gitea,kubatyszko/gitea,everhopingandwaiting/gogs,sillydong/gogs,Ralph-Wang/gogs,geerlingguy/gogs,cybe/gitea,mapmeld/codemingler,hiproz/gogs,richmahn/gogs,golang-lib/gogs,pwelter34/gogs,faddat/gogs,denji/gitea,cumgun/gitea,metadevfoundation/gogs,gwynantj/gogs,xaionaro/gogs,helojo/gogs,mapmeld/codemingler,avelino/gitea,jvanderneutstulen/gogs,avelino/gitea,minecrafter/gitea,kiliit/gogs,vCaesar/gitea,tony/gogs,kong36088/SCAUGogits,odinuge/gogs,jacobxk/gogs,voxxit/gogs,likeit92/gogs,cem/gogs,denghongcai/gogs,imjerrybao/gogs,cybe/gitea,strk/gogs,Bwko/gitea,0x0all/gogs,kseistrup/gogs,lucienevans/gogs,Em-AK/gogs,richmahn/gogs,gogits/gogs,codeskyblue/gogs,lunny/gitea,typeless/gitea,geerlingguy/gogs,SlavikZ/gogs,lafriks/gitea,gogits/gogs,Spice-King/gogs |
aab6036bc73b3875c1c3acbe45755f6ddfbfbd20 | metadata/org.owntracks.android.yml | metadata/org.owntracks.android.yml | Categories:
- Navigation
License: EPL-1.0
WebSite: https://owntracks.org/
SourceCode: https://github.com/owntracks/android/
IssueTracker: https://github.com/owntracks/android/issues/
Translation: https://poeditor.com/join/project?hash=xe6LPP0Jnx
Changelog: https://github.com/owntracks/android/blob/HEAD/CHANGELOG.md
Liberapay: OwnTracks.org
AutoName: OwnTracks
RepoType: git
Repo: https://github.com/owntracks/android/
Builds:
- versionName: 2.4.7
versionCode: 24700
commit: v2.4.7
subdir: project/app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- oss
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 2.4.7
CurrentVersionCode: 24700
| Categories:
- Navigation
License: EPL-1.0
WebSite: https://owntracks.org/
SourceCode: https://github.com/owntracks/android/
IssueTracker: https://github.com/owntracks/android/issues/
Translation: https://poeditor.com/join/project?hash=xe6LPP0Jnx
Changelog: https://github.com/owntracks/android/blob/HEAD/CHANGELOG.md
Liberapay: OwnTracks.org
AutoName: OwnTracks
RepoType: git
Repo: https://github.com/owntracks/android/
Builds:
- versionName: 2.4.7
versionCode: 24700
commit: v2.4.7
subdir: project/app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- oss
- versionName: 2.4.8
versionCode: 20408000
commit: e6bfb14ea534b7d23d34a25ea12f25becada8463
subdir: project/app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- oss
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 2.4.8
CurrentVersionCode: 20408000
| Update OwnTracks to 2.4.8 (20408000) | Update OwnTracks to 2.4.8 (20408000)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
50c59c87b6c7b6bad4b0b01f5457453fa5aedbcd | .pkgr.yml | .pkgr.yml | description: Arbitrary task distribution platform.
homepage: http://queueflex.com
vendor: Ben Langfeld <http://langfeld.me>
maintainer: Ben Langfeld <http://langfeld.me>
license: Apache 2.0
changelog: CHANGELOG.md
targets:
ubuntu-14.04:
debian-8:
before:
- echo "runtime_path=/opt/queueflex" > elixir_buildpack.config
after:
- rm -rf .git
buildpack: https://github.com/ddollar/heroku-buildpack-multi.git
| description: Arbitrary task distribution platform.
homepage: http://queueflex.com
vendor: Ben Langfeld <http://langfeld.me>
maintainer: Ben Langfeld <http://langfeld.me>
license: Apache 2.0
changelog: CHANGELOG.md
targets:
ubuntu-14.04:
debian-8:
before:
- echo "runtime_path=/opt/queueflex" > elixir_buildpack.config
after:
- rm -rf .git
- mkdir ../../home
- cp -R /home/pkgr ../../home/queueflex
buildpack: https://github.com/ddollar/heroku-buildpack-multi.git
| Copy build home directory to app runtime home directory | Copy build home directory to app runtime home directory
Makes hex cache available at runtime
| YAML | apache-2.0 | benlangfeld/QueueFlex,benlangfeld/Qfl.ex,benlangfeld/Qfl.ex,benlangfeld/QueueFlex,benlangfeld/Qfl.ex,benlangfeld/QueueFlex |
3864d80565ac9f1527d8dcfdf0a9f49cda2bd3ae | mgmt/newtmgr/transport/ble/pkg.yml | mgmt/newtmgr/transport/ble/pkg.yml | #
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
pkg.name: mgmt/newtmgr/transport/ble
pkg.description: BLE transport newtmgr functionality.
pkg.author: "Apache Mynewt <dev@mynewt.apache.org>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
- ble
- bluetooth
pkg.deps:
- "@apache-mynewt-core/kernel/os"
- "@apache-mynewt-core/mgmt/mgmt"
- "@apache-mynewt-core/mgmt/newtmgr"
- "@apache-mynewt-core/net/nimble/host"
pkg.init:
newtmgr_ble_pkg_init: 501
| #
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
pkg.name: mgmt/newtmgr/transport/ble
pkg.description: BLE transport newtmgr functionality.
pkg.author: "Apache Mynewt <dev@mynewt.apache.org>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
- ble
- bluetooth
pkg.deps:
- "@apache-mynewt-core/kernel/os"
- "@apache-mynewt-core/mgmt/mgmt"
- "@apache-mynewt-core/mgmt/newtmgr"
- "@apache-mynewt-nimble/nimble/host"
pkg.init:
newtmgr_ble_pkg_init: 501
| Update dependency to NimBLE packages | mgmt/newtmgr: Update dependency to NimBLE packages
| YAML | apache-2.0 | mlaz/mynewt-core,mlaz/mynewt-core,mlaz/mynewt-core,mlaz/mynewt-core,mlaz/mynewt-core |
b23162035bb467fd6b1c0ed12a787cbc045c470f | concourse/manifests/sagan-site-production.yml | concourse/manifests/sagan-site-production.yml | ---
applications:
- name: sagan
buildpacks:
- java_buildpack
instances: 2
health-check-type: http
health-check-http-endpoint: /actuator/health/liveness
timeout: 30
memory: 2048M
disk_quota: 1024M
routes:
- route: spring.io
- route: www.spring.io
- route: sagan-production.cfapps.io
services:
- papertrail
- sagan-db
- sagan-cache
| ---
applications:
- name: sagan
buildpacks:
- java_buildpack
instances: 2
health-check-type: http
health-check-http-endpoint: /actuator/health/liveness
timeout: 30
memory: 2048M
disk_quota: 1024M
routes:
- route: spring.io
- route: www.spring.io
- route: sagan-production.cfapps.io
services:
- logz-springio
- sagan-db
- sagan-cache
| Change logs sink for spring.io | Change logs sink for spring.io
| YAML | bsd-3-clause | spring-io/sagan,spring-io/sagan,spring-io/sagan,spring-io/sagan |
e8bc5e8508c25256dd861142aece348f226f530a | roles/flocker/tasks/flocker_ui.yml | roles/flocker/tasks/flocker_ui.yml | ---
# Setup flocker_ui script
- name: ensure customized bin
sudo: yes
file:
path: /opt/bin
state: directory
when: flocker_mode == "control"
tags:
- docker
- flocker
- name: setup start_flocker_ui script
sudo: yes
template:
src: start_flocker_ui.sh.j2
dest: /opt/bin/start_flocker_ui.sh
mode: 0755
tags:
- docker
- flocker
- name: setup flocker ui supervisord config
sudo: yes
template:
src: flocker_ui_supervisord.conf.j2
dest: "{{ supervisord_conf_dir }}/flocker_ui.conf"
notify: restart flocker ui
tags:
- docker
- flocker
- name: start flocker ui supervisord
sudo: yes
supervisorctl:
name: flocker_ui
state: present
supervisorctl_path: "{{ supervisord_exec_dir }}/supervisorctl"
| ---
# Setup flocker_ui script
- name: ensure customized bin
sudo: yes
file:
path: /opt/bin
state: directory
when: flocker_mode == "control"
tags:
- docker
- flocker
- name: setup start_flocker_ui script
sudo: yes
template:
src: start_flocker_ui.sh.j2
dest: /opt/bin/start_flocker_ui.sh
mode: 0755
when: flocker_mode == "control"
tags:
- docker
- flocker
- name: setup flocker ui supervisord config
sudo: yes
template:
src: flocker_ui_supervisord.conf.j2
dest: "{{ supervisord_conf_dir }}/flocker_ui.conf"
notify: restart flocker ui
when: flocker_mode == "control"
tags:
- docker
- flocker
- name: start flocker ui supervisord
sudo: yes
supervisorctl:
name: flocker_ui
state: present
supervisorctl_path: "{{ supervisord_exec_dir }}/supervisorctl"
when: flocker_mode == "control"
tags:
- docker
- flocker
| Add flocker mode check for flocker ui script. | Add flocker mode check for flocker ui script.
| YAML | apache-2.0 | wangqiang8511/customized_mantl,wangqiang8511/customized_mantl |
217bf69ed2e037e4b9130758e7bf5c540a627756 | .github/workflows/basic-maven-build.yml | .github/workflows/basic-maven-build.yml | name: Basic Maven Build
on:
push:
branches: [ master ]
jobs:
build:
name: Maven build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
cache: 'maven'
- name: Build with Maven
run: mvn -B -V clean verify | name: Basic Maven Build
on:
push:
branches: [ master ]
jobs:
build:
name: Maven build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
cache: 'maven'
- name: Build with Maven
run: mvn -B -V clean verify | Update actions/checkout action to v3 | Update actions/checkout action to v3
| YAML | mit | vrampal/connectfour,vrampal/connectfour,vrampal/connectfour |
fa82a3f150193bdadce0011845c8ba72a2fc9e04 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: heading
label: Heading!!
- type: document
path: document
label: Document
- type: directory
path: ''
label: Direfctory
create: all
match: "**/*"
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_output_directory: public
install_dependencies_command: npm install
preview_docker_image: node:10
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: npm run forestry:preview
| ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: heading
label: Heading!!
- type: document
path: document
label: Document
- type: directory
path: ''
label: Direfctory
create: all
match: "**/*"
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path:
file_template: ":filename:"
build:
preview_output_directory: public
install_dependencies_command: npm install
preview_docker_image: node:10
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: npm run forestry:preview
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | cc0-1.0 | actsecure/actsecure.github.io,actsecure/actsecure.github.io,actsecure/actsecure.github.io |
3f907f0ee11b36ec33b4b01ab911522f5d10d609 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: heading
label: JTemporal
- type: document
path: _drafts
label: Drafts
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: images
public_path: ''
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_command: 'bundle exec jekyll build --config _dev_config.yml --drafts --unpublished
--future -d _site '
publish_command: bundle exec jekyll build -d _site
preview_env:
- JEKYLL_ENV=staging
publish_env:
- JEKYLL_ENV=production
preview_output_directory: _site
output_directory: _site
| ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: heading
label: JTemporal
- type: document
path: _drafts
label: Drafts
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: images
public_path: ''
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_command: 'bundle exec jekyll build --drafts --unpublished --future -d _site '
publish_command: bundle exec jekyll build -d _site
preview_env:
- JEKYLL_ENV=staging
publish_env:
- JEKYLL_ENV=production
preview_output_directory: _site
output_directory: _site
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io |
a2325131b114791ba7b01bd8e24ccd664b69b67e | packages/sh/Shpadoinkle-lens.yaml | packages/sh/Shpadoinkle-lens.yaml | homepage: ''
changelog-type: ''
hash: c58913256b3fa21ae4675e9a4516a3e2bb1755cf1fbd7dec8643e98182ede9ec
test-bench-deps: {}
maintainer: fresheyeball@protonmail.com
synopsis: ''
changelog: ''
basic-deps:
base: '>=4.12.0 && <4.16'
text: '>=1.2.3 && <1.3'
Shpadoinkle: -any
lens: '>=4.17.1 && <4.2'
all-versions:
- 0.0.0.1
author: Isaac Shapira
latest: 0.0.0.1
description-type: haddock
description: Lens combinators for Shpadoinkle applications.
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: e44a6057127b2d5d76d74514e3e3da6cd0134f7ad25902fe543c5cfe7bda5708
test-bench-deps: {}
maintainer: fresheyeball@protonmail.com
synopsis: Lens combinators for Shpadoinkle applications.
changelog: ''
basic-deps:
base: '>=4.12.0 && <4.16'
text: '>=1.2.3 && <1.3'
Shpadoinkle: -any
lens: -any
all-versions:
- 0.0.0.1
- 0.0.0.2
author: Isaac Shapira
latest: 0.0.0.2
description-type: haddock
description: Lens combinators for Shpadoinkle applications.
license-name: BSD-3-Clause
| Update from Hackage at 2020-10-07T17:35:10Z | Update from Hackage at 2020-10-07T17:35:10Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
55d2c8e2f2f9d70799d52d86320c1b164fc8faac | ansible/vars/all.yml | ansible/vars/all.yml | ---
server:
install: '1'
timezone: UTC
locale: hu_HU.UTF-8
vagrant_local:
install: '1'
vm: { base_box: trusty64, hostname: symfony.dev, ip: 192.168.33.99, memory: '1024', sharedfolder: ./, useVagrantCloud: '1', syncType: nfs }
nginx:
install: '1'
docroot: /vagrant/web
docindex: app_vagrant.php
servername: symfony.dev
mysql:
install: '1'
root_password: symfony
database: symfony
user: symfony
password: symfony
dump: ''
php:
install: '1'
ppa: php5-5.6
packages: [php5-fpm, php5-cli, php5-intl, php5-mcrypt, php5-curl, php5-gd, php5-mysql]
xdebug:
install: '1'
composer:
install: '1'
| ---
server:
install: '1'
timezone: UTC
locale: hu_HU.UTF-8
vagrant_local:
install: '1'
vm: { base_box: trusty64, hostname: symfony.dev, ip: 192.168.33.99, memory: '1024', sharedfolder: ./, useVagrantCloud: '1', syncType: nfs }
nginx:
install: '1'
docroot: /vagrant/web
docindex: app_vagrant.php
servername: symfony.dev
mysql:
install: '1'
root_password: ''
database: symfony
user: symfony
password: symfony
dump: ''
php:
install: '1'
ppa: php5-5.6
packages: [php5-fpm, php5-cli, php5-intl, php5-mcrypt, php5-curl, php5-gd, php5-mysql]
xdebug:
install: '1'
composer:
install: '1'
| Clear root password: symfony standard | Clear root password: symfony standard
| YAML | mit | sagikazarmark/symfony-standard,webplates/symfony-standard,sagikazarmark/platform-standard,sagikazarmark/symfony-standard,webplates/platform-standard,sagikazarmark/platform-standard,sagikazarmark/symfony-standard,sagikazarmark/platform-standard,webplates/sulu-standard,webplates/sonata-standard,webplates/platform-standard,sagikazarmark/platform-standard,sagikazarmark/platform-standard,webplates/sulu-standard,sagikazarmark/sonata-standard,webplates/sulu-standard,webplates/sonata-standard,sagikazarmark/sonata-standard,webplates/symfony-standard,webplates/sonata-standard,webplates/symfony-standard,sagikazarmark/symfony-standard,webplates/sonata-standard,webplates/symfony-standard,sagikazarmark/sonata-standard,sagikazarmark/symfony-standard,webplates/sulu-standard,sagikazarmark/sonata-standard,sagikazarmark/sonata-standard,webplates/sonata-standard,webplates/platform-standard,webplates/platform-standard,webplates/sulu-standard,webplates/symfony-standard |
2220c58f4eb708d733252001846df44744b4873d | .zuul.yml | .zuul.yml | ui: mocha-bdd
browsers:
- name: android
version: [oldest, latest]
- name: chrome
version: [oldest, latest]
- name: firefox
version: [oldest, latest]
- name: ie
version: 9..latest
- name: ipad
version: [oldest, latest]
- name: iphone
version: [oldest, latest]
- name: opera
version: oldest..latest
- name: safari
version: oldest..latest
| ui: mocha-bdd
browsers:
- name: android
version: [oldest, latest]
- name: chrome
version: [oldest, latest]
- name: firefox
version: [oldest, latest]
- name: ie
version: oldest..latest
- name: iphone
version: [oldest, latest]
- name: opera
version: oldest..latest
- name: safari
version: oldest..latest
| Add more IE versions and remove iPad | [test] Add more IE versions and remove iPad
| YAML | mit | primus/eventemitter3,pawsong/eventemitter3,marlun78/eventemitter3,malyshevalex/eventemitter3,marlun78/eventemitter3,pawsong/eventemitter3,malyshevalex/eventemitter3,naoufal/eventemitter3,primus/eventemitter3,primus/eventemitter3,naoufal/eventemitter3 |
286a2f76763fb80bf117a70b355785c5a64acfd3 | docker/parser/testcases.yaml | docker/parser/testcases.yaml | ---
tiers:
-
name: features
order: 2
ci_loop: '(daily)|(weekly)'
description: >-
Test suites from feature projects
integrated in functest
testcases:
-
case_name: parser-basics
project_name: parser
criteria: 100
blocking: false
description: >-
Test suite from Parser project.
dependencies:
installer: ''
scenario: '^((?!bgpvpn|noha).)*$'
run:
module: 'functest.core.feature'
class: 'BashFeature'
args:
cmd: '/src/nfv-parser/tests/functest_run.sh'
| ---
tiers:
-
name: features
order: 2
ci_loop: '(daily)|(weekly)'
description: >-
Test suites from feature projects
integrated in functest
testcases:
-
case_name: parser-basics
project_name: parser
criteria: 100
blocking: false
description: >-
Test suite from Parser project.
dependencies:
installer: ''
scenario: '^((?!bgpvpn|noha).)*$'
run:
module: 'xtesting.core.feature'
class: 'BashFeature'
args:
cmd: '/src/nfv-parser/tests/functest_run.sh'
| Update module to xtesting.core.feature for parser | Update module to xtesting.core.feature for parser
Change-Id: I8c4e34b7907d1809e100c6677101b8076272f493
Signed-off-by: Cédric Ollivier <d48310251a4a484d041bc5d09a9ac4d86d20f793@orange.com>
| YAML | apache-2.0 | opnfv/functest,mywulin/functest,opnfv/functest,mywulin/functest |
ea36a8532a0b338aad978948345289935b45ab19 | packages/ja/japanese-calendar.yaml | packages/ja/japanese-calendar.yaml | homepage: https://github.com/nakaji-dayo/japanese-calendar#readme
changelog-type: ''
hash: c1453a4ba16ea310ef82733149ce28c838981545fe4848d39bef73332669d6e6
test-bench-deps:
base: -any
time: -any
hspec: -any
japanese-calendar: -any
QuickCheck: -any
maintainer: nakaji.dayo@gmail.com
synopsis: Data type of Japanese Calendar (Wareki).
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: -any
all-versions:
- '0.1.0.0'
author: Daishi Nakajima
latest: '0.1.0.0'
description-type: markdown
description: ! '# japanese-calendar
'
license-name: BSD3
| homepage: https://github.com/nakaji-dayo/japanese-calendar#readme
changelog-type: ''
hash: 0cc598acdab3f8ace27001179f54b4dfa5eeee059da90bdc7804a5858a067877
test-bench-deps:
base: -any
time: -any
hspec: -any
japanese-calendar: -any
QuickCheck: -any
maintainer: nakaji.dayo@gmail.com
synopsis: Data type of Japanese Calendar (Wareki).
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Daishi Nakajima
latest: '0.1.0.1'
description-type: markdown
description: ! '# japanese-calendar
[hackage](http://hackage.haskell.org/package/japanese-calendar)
'
license-name: BSD3
| Update from Hackage at 2018-09-15T12:55:55Z | Update from Hackage at 2018-09-15T12:55:55Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
27c1a3735712825f5c321ec8d9ef771b2f4f338e | packages/re/relational-record.yaml | packages/re/relational-record.yaml | homepage: http://khibino.github.io/haskell-relational-record/
changelog-type: ''
hash: 00069f976e1e33e52edf6d311b52b52a7da292f5ed0e33a838108f51db501373
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: Meta package of Relational Record
changelog: ''
basic-deps:
relational-query: ! '>=0.3'
relational-query-HDBC: -any
base: <5
persistable-types-HDBC-pg: -any
all-versions:
- '0.0.1.0'
- '0.0.1.1'
- '0.0.1.2'
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.3.0'
- '0.1.4.0'
- '0.1.5.0'
- '0.1.5.1'
- '0.1.6.0'
- '0.1.6.1'
author: Kei Hibino
latest: '0.1.6.1'
description-type: haddock
description: Meta package to install Relational Record quickly
license-name: BSD3
| homepage: http://khibino.github.io/haskell-relational-record/
changelog-type: ''
hash: 22f85e195929e7cdb5faed0d5ab1c28a891910844dab64a611c871e02fdfeee6
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: Meta package of Relational Record
changelog: ''
basic-deps:
relational-query: ! '>=0.3'
relational-query-HDBC: -any
base: <5
persistable-types-HDBC-pg: -any
all-versions:
- '0.0.1.0'
- '0.0.1.1'
- '0.0.1.2'
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.3.0'
- '0.1.4.0'
- '0.1.5.0'
- '0.1.5.1'
- '0.1.6.0'
- '0.1.6.1'
- '0.1.7.0'
author: Kei Hibino
latest: '0.1.7.0'
description-type: haddock
description: Meta package to install Relational Record quickly
license-name: BSD3
| Update from Hackage at 2017-03-21T04:04:38Z | Update from Hackage at 2017-03-21T04:04:38Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e2f67a675f0e2b3bc4bc8a163887d68aae755012 | packages/sh/shakespeare-babel.yaml | packages/sh/shakespeare-babel.yaml | homepage: ''
changelog-type: ''
hash: ac3a970ee0cc3f85ccd783368f8cb855837f74fdee2816197905724a89dd1eb0
test-bench-deps: {}
maintainer: ncaq@ncaq.net
synopsis: compile es2015
changelog: ''
basic-deps:
shakespeare: ! '>=2.0 && <2.1'
base: ! '>=4.8 && <4.9'
classy-prelude: ! '>=0.12 && <0.13'
template-haskell: ! '>=2.10 && <2.11'
all-versions:
- '0.1.0.0'
author: ncaq
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: PublicDomain
| homepage: ''
changelog-type: ''
hash: ec8aacaa2f6bbed13dbfd93e57e5f4d489254038a0ac7ec9a9b51e0bb75c2edb
test-bench-deps: {}
maintainer: ncaq@ncaq.net
synopsis: compile es2015
changelog: ''
basic-deps:
shakespeare: ! '>=2.0 && <2.1'
base: ! '>=4.8 && <4.9'
process: ! '>=1.4 && <1.5'
data-default: ! '>=0.5 && <0.6'
classy-prelude: ! '>=0.12 && <0.13'
template-haskell: ! '>=2.10 && <2.11'
directory: ! '>=1.2 && <1.3'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: ncaq
latest: '0.2.0.0'
description-type: haddock
description: ''
license-name: PublicDomain
| Update from Hackage at 2016-02-02T14:21:37+0000 | Update from Hackage at 2016-02-02T14:21:37+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
6a0f9cca01829914476c3fcca6e181401ae917d4 | .github/workflows/gradle-build.yml | .github/workflows/gradle-build.yml | name: "Build Gradle project"
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 9, 10, 11, 12, 13 ]
name: Building on Java ${{ matrix.java }}
steps:
- name: Check out project
uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Gradle
uses: eskatos/gradle-command-action@v1
with:
arguments: build testAll -Pgradle-plugindev-plugin.acceptGradleTOS=true
| name: "Build Gradle project"
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 9, 10, 11, 12, 13 ]
name: Building on Java ${{ matrix.java }}
steps:
- name: Check out project
uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Gradle
uses: eskatos/gradle-command-action@v1
with:
arguments: build testAll -Pgradle-plugindev-plugin.acceptGradleTOS=true
wrapper-cache-enabled: true
dependencies-cache-enabled: true
configuration-cache-enabled: false
| Use wrapper & dependencies cache in Gradle GH action | Use wrapper & dependencies cache in Gradle GH action
| YAML | apache-2.0 | etiennestuder/gradle-plugindev-plugin |
d403f60237c5ba1c80a6e08085e9d954942d6fdc | .github/workflows/gradle-build.yml | .github/workflows/gradle-build.yml | name: "Build Gradle project"
on: [ push, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
java-version: [ 8, 11, 16, 17 ]
gradle-version: [ 7.0.2, 7.2, 7.3.3, 7.5.1 ]
name: Test JVM/Gradle (${{ matrix.java-version }}, ${{ matrix.gradle-version }})
steps:
- name: Check out project
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build -PtestJavaRuntimeVersion=${{ matrix.java-version }} -PtestGradleVersion=${{ matrix.gradle-version }} -Pgradle-plugindev-plugin.acceptGradleTOS=true
| name: "Build Gradle project"
on: [ push, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
java-version: [ 8, 11, 16, 17 ]
gradle-version: [ 7.0.2, 7.2, 7.3.3, 7.6-20221024231219+0000 ]
name: Test JVM/Gradle (${{ matrix.java-version }}, ${{ matrix.gradle-version }})
steps:
- name: Check out project
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build -PtestJavaRuntimeVersion=${{ matrix.java-version }} -PtestGradleVersion=${{ matrix.gradle-version }} -Pgradle-plugindev-plugin.acceptGradleTOS=true
| Use latest Gradle nightly in GH action to fix config caching issue | Use latest Gradle nightly in GH action to fix config caching issue
| YAML | apache-2.0 | etiennestuder/gradle-plugindev-plugin |
48c4e12504dfe0176773d106c0c52eddef79f0e9 | src/main/resources/application.yml | src/main/resources/application.yml | server:
use-forward-headers: true
juiser:
user:
header:
jwt:
key:
resource: classpath:rsatest.pub.pem | server:
use-forward-headers: true
juiser:
header:
jwt:
key:
resource: classpath:rsatest.pub.pem | Change Juiser Property Key to juiser.header.jwt.key.resource | Change Juiser Property Key to juiser.header.jwt.key.resource
| YAML | apache-2.0 | juiser/juiser-spring-origin-example,juiser/juiser-spring-origin-example |
0ccf6ccfd2dc267e031df04c143996cb51ba7839 | .github/workflows/draft-release.yml | .github/workflows/draft-release.yml | on:
push:
tags:
- 'v*'
name: Create Release Draft
jobs:
build:
name: Create Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Build project
run: |
sudo apt-get install gettext
make zip
- name: Draft Release
id: draft_release
uses: actions/create-release@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: true
prerelease: false
- name: Upload Package
id: upload-package
uses: actions/upload-release-asset@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.draft_release.outputs.upload_url }}
asset_path: ./scroll-panel@mreditor.github.com.zip
asset_name: scroll-panel@mreditor.github.com.zip
asset_content_type: application/zip
| on:
push:
tags:
- 'v*'
name: Create Release Draft
jobs:
build:
name: Create Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Build project
run: |
sudo apt-get install gettext
make zip
- name: Draft Release
id: draft_release
uses: actions/create-release@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: true
prerelease: false
- name: Upload Package
id: upload-package
uses: actions/upload-release-asset@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.draft_release.outputs.upload_url }}
asset_path: ./build/io.github.mreditor.gnome-shell-extensions.scroll-panel.zip
asset_name: io.github.mreditor.gnome-shell-extensions.scroll-panel.zip
asset_content_type: application/zip
| Update release draft github action | Update release draft github action
| YAML | mit | mrEDitor/gnome-shell-extension-scroll-panel |
4e7c49eacfffcb72f42acd63b2b5152e6cccf365 | .github/workflows/macos_mkspecs.yml | .github/workflows/macos_mkspecs.yml | name: MacOS C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
MacOS-mkspecs:
uses: steinwurf/macos-mkspecs-action/.github/workflows/action.yml@3.0.0
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
| name: MacOS C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
MacOS-mkspecs:
uses: steinwurf/macos-mkspecs-action/.github/workflows/action.yml@4.0.0
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
| Update MacOS C++ make-specs to new version 4.0.0 | Update MacOS C++ make-specs to new version 4.0.0 | YAML | bsd-3-clause | steinwurf/bourne,steinwurf/bourne |
4bbeb368408ca752ae9066dc67d0e77790bca7ec | .github/workflows/publish-maven.yml | .github/workflows/publish-maven.yml | name: Publish to Maven Central
on:
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
server-id: github
settings-path: ${{ github.workspace }}
- name: Publish
run: >-
./gradlew publish -PmavenUser=${MAVEN_CENTRAL_USER} -PmavenPassword=${MAVEN_CENTRAL_PASSWORD}
| name: Publish to Maven Central
on:
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
server-id: github
settings-path: ${{ github.workspace }}
- name: Publish
env:
ORG_GRADLE_PROJECT_mavenUser: {{ secrets.MAVEN_CENTRAL_USER }}
ORG_GRADLE_PROJECT_mavenPassword: {{ secrets.MAVEN_CENTRAL_PASSWORD }}
ORG_GRADLE_PROJECT_SIGNINGKEY: {{ secrets.ORG_GRADLE_PROJECT_SIGNINGKEY }}
ORG_GRADLE_PROJECT_SIGNINGPASSWORD: {{ secrets.ORG_GRADLE_PROJECT_SIGNINGPASSWORD }}
run: >-
./gradlew publish
| Fix secrets for publish job | Fix secrets for publish job
| YAML | mpl-2.0 | tuchida/rhino,tuchida/rhino,tuchida/rhino,tuchida/rhino,tuchida/rhino,tuchida/rhino,tuchida/rhino |
b1f3f875852c3b7d949e98f39b0d58ce2736ad94 | .dependabot/config.yml | .dependabot/config.yml | version: 1
update_configs:
- package_manager: "javascript"
version_requirement_updates: "increase_versions"
directory: "/"
update_schedule: "daily"
automerged_updates:
- match:
dependency_name: "@types/node"
- match:
dependency_name: "ts-node"
- match:
dependency_name: "mocha"
- match:
dependency_name: "chai"
- match:
dependency_name: "typescript"
- match:
dependency_name: "tslint"
- match:
dependency_name: "coveralls"
- match:
dependency_name: "nyc"
- match:
dependency_name: "eslint"
- match:
dependency_name: "@typescript-eslint/eslint-plugin"
- match:
dependency_name: "@typescript-eslint/parser"
| version: 1
update_configs:
- package_manager: "javascript"
version_requirement_updates: "increase_versions"
directory: "/"
update_schedule: "daily"
automerged_updates:
- match:
dependency_name: "@types/node"
- match:
dependency_name: "ts-node"
- match:
dependency_name: "mocha"
- match:
dependency_name: "chai"
- match:
dependency_name: "typescript"
- match:
dependency_name: "tslint"
- match:
dependency_name: "coveralls"
- match:
dependency_name: "nyc"
- match:
dependency_name: "eslint"
- match:
dependency_name: "@typescript-eslint/eslint-plugin"
- match:
dependency_name: "@typescript-eslint/parser"
- match:
dependency_name: "@types/node"
- match:
dependency_name: "del-cli"
| Update dependabot auto update dependency list | Update dependabot auto update dependency list
| YAML | mit | Borewit/peek-readable,Borewit/stream-reader |
341889d3392d556b95828471192adcc045a5e52c | .github/workflows/publish_image.yml | .github/workflows/publish_image.yml | name: Publish Docker image to GitHub Container Registry
on:
push:
branches:
- master
- deploy
pull_request:
branches:
- master
jobs:
publish:
name: Publish Docker image to GitHub Container Registry
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Create tag from branch
id: meta
uses: docker/metadata-action@v3
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=ref,event=pr
- name: Push to GitHub Packages
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
| name: Publish Docker image to GitHub Container Registry
on:
push:
branches:
- master
- deploy
jobs:
publish:
name: Publish Docker image to GitHub Container Registry
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Create tag from branch
id: meta
uses: docker/metadata-action@v3
with:
images: ghcr.io/${{ github.repository }}
- name: Push to GitHub Packages
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
| Stop building images for PRs | Stop building images for PRs
| YAML | mit | datamade/la-metro-councilmatic,datamade/la-metro-councilmatic,datamade/la-metro-councilmatic,datamade/la-metro-councilmatic |
2805b11a9ce139ef649951a0924c250b49806b51 | .github/workflows/pypi-release.yaml | .github/workflows/pypi-release.yaml | name: PyPi Release
on:
push
jobs:
release:
name: Release pyconll
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2.3.2
- name: Setup Python 3.8.5
uses: actions/setup-python@v1
with:
python-version: 3.8.5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools==41.6.0
pip install wheel==0.31.1
- name: Build pyconll distributables
run: |
python setup.py sdist bdist_wheel
- name: Publish packages from dist/*
uses: pypa/gh-action-pypi-publish@v1.3.1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/ | name: Pyconll Release to PyPi
on:
release:
types:
- released
jobs:
release:
name: Release pyconll
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2.3.2
- name: Setup Python 3.8.5
uses: actions/setup-python@v1
with:
python-version: 3.8.5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools==41.6.0
pip install wheel==0.31.1
- name: Build pyconll distributables
run: |
python setup.py sdist bdist_wheel
- name: Publish packages from dist/*
# Make sure the current git ref is tagged.
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@v1.3.1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/ | Add back changes and update name to be more clear and change to release event. | Add back changes and update name to be more clear and change to release event.
| YAML | mit | pyconll/pyconll,pyconll/pyconll |
dee8db2c854ba58b757e26a73043357ab92a4bb1 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: content/oss
label: Oss
create: all
match: "**/*"
- type: directory
path: content/blog
label: Blog
create: all
match: "**/*"
- type: directory
path: content/talks
label: Talks
create: all
match: "**/*"
- type: directory
path: content/veille
label: Veille
create: all
match: "**/*"
- type: directory
path: content
label: Pages
create: all
match: "*"
upload_dir: static/uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- HUGO_ENV=staging
- HUGO_VERSION=0.80.0
preview_output_directory: public
preview_docker_image: forestryio/hugo:latest
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: hugo server -D -E -F --renderToDisk -d public
version: 0.80.0
| ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: content/veille
label: Veille
create: all
match: "**/*"
- type: directory
path: content/oss
label: Oss
create: all
match: "**/*"
- type: directory
path: content/blog
label: Blog
create: all
match: "**/*"
- type: directory
path: content/talks
label: Talks
create: all
match: "**/*"
- type: directory
path: content
label: Pages
create: all
match: "*"
upload_dir: static/uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- HUGO_ENV=staging
- HUGO_VERSION=0.80.0
preview_output_directory: public
preview_docker_image: forestryio/hugo:latest
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: hugo server -D -E -F --renderToDisk -d public
version: 0.80.0
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | welcoMattic/welcoMattic.github.io,welcoMattic/welcoMattic.github.io |
20bbde693c225024e64697cc4e79465940844cfe | .github/workflows/pythonpackage.yml | .github/workflows/pythonpackage.yml | name: Python package
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
fail-fast: false
matrix:
python-version: [2.7, 3.5, 3.6, 3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Build docs
run: |
pip install .[docs]
make docs
- name: Test with pytest
run: |
pip install .[tests] # coveralls
# nosetests tests -v --with-coverage --cover-package=python_anticaptcha --processes=8
nosetests tests -v --processes=8
# coveralls
| name: Python package
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
fail-fast: false
matrix:
python-version: [2.7, 3.5, 3.6, 3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install .
- name: Build docs
run: |
pip install .[docs]
make docs
- name: Test with pytest
run: |
pip install .[tests] # coveralls
# nosetests tests -v --with-coverage --cover-package=python_anticaptcha --processes=8
nosetests tests -v --processes=8
# coveralls
| Add wheel to fix build on GitHub Actions | Add wheel to fix build on GitHub Actions
| YAML | mit | ad-m/python-anticaptcha |
2957ac9058ddbd0dbaca7e7d1608e9075a187e2c | .github/dependabot.yml | .github/dependabot.yml | version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
versioning-strategy: increase-if-necessary
ignore:
- dependency-name: "sinon"
- dependency-name: "canvas"
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
| version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
versioning-strategy: increase-if-necessary
ignore:
- dependency-name: "sinon"
- dependency-name: "canvas"
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
| Update GH actions less frequently | Update GH actions less frequently
| YAML | mit | noflo/noflo-canvas,noflo/noflo-canvas |
6816ee6034271d07ccf9ce398beb75bdabad9555 | tmuxinator/downloader_api.yml | tmuxinator/downloader_api.yml | # ~/.tmuxinator/downloader_api.yml
name: downloader_api
root: ~/Projects/downloader_api
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
# pre_window: rbenv shell 2.0.0-p247
# Pass command line options to tmux. Useful for specifying a different tmux.conf.
# tmux_options: -f ~/.tmux.mac.conf
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
# tmux_command: byobu
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
# startup_window: logs
windows:
- editor:
layout: main-vertical
panes:
- vim
- nvm use && babel-node
- make:
layout: main-vertical
panes:
- nvm use && make run
- logstash -f config/logstash.conf
- misc:
layout: main-horizontal
panes:
- caffeinate -u -t 547584758
- ls .
- ls .
| # ~/.tmuxinator/downloader_api.yml
name: downloader_api
root: ~/Projects/downloader_api
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
# pre_window: rbenv shell 2.0.0-p247
# Pass command line options to tmux. Useful for specifying a different tmux.conf.
# tmux_options: -f ~/.tmux.mac.conf
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
# tmux_command: byobu
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
# startup_window: logs
windows:
- editor:
layout: main-vertical
panes:
- vim
- nvm use && babel-node
- make:
layout: main-vertical
panes:
- nvm use && ./bin/gulp
- logstash -f config/logstash.conf
- misc:
layout: main-horizontal
panes:
- caffeinate -u -t 547584758
- ls .
- ls .
| Revert "Use make instead of gulp" | Revert "Use make instead of gulp"
This reverts commit 52a10b57b2347d176422d4d2c3027df968ae59ed.
| YAML | mit | ne1ro/dotfiles,ne1ro/dotfiles |
e8eaecdef76f7af315ab0678508133db1a6ac1d6 | _config/autotoc.yml | _config/autotoc.yml | ---
Name: autotoc
After:
- framework
---
Autotoc:
augment_callback: [ Tocifier, prependAnchor ]
---
Only:
classexists: ContentController
---
ContentController:
extensions:
- 'Autotoc'
| ---
Name: autotoc
After:
- framework
---
Autotoc:
augment_callback: [ Tocifier, SetId ]
---
Only:
classexists: ContentController
---
ContentController:
extensions:
- 'Autotoc'
| Change default anchor method to setId | Change default anchor method to setId
Previously I was using an unreferenced <a> element with the specific ID.
This does not have any advantage over directly setting that ID on the
<h> element, so switching to the latter method by default.
This breaks backward compatibility, so bumping minor version.
| YAML | bsd-2-clause | ntd/silverstripe-autotoc |
c4d4a444b5c19655b76b835dda445aeb2397ff19 | .github/workflows/docs.yml | .github/workflows/docs.yml | on:
pull_request:
paths:
- 'docs/src/public/**'
- 'docs/build.gradle'
- 'gradle/**'
jobs:
check-doc-build:
name: netCDF-Java Documentation Build Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Zulu JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
architecture: x64
- name: Cache Gradle packages
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build docs using Gradle
run: ./gradlew buildUserGuide
| on:
pull_request:
paths:
- 'docs/src/public/**'
- 'docs/build.gradle'
- 'gradle/**'
jobs:
check-doc-build:
name: netCDF-Java Documentation Build Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Zulu JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
architecture: x64
- name: Cache Gradle packages
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build docs using Gradle
run: ./gradlew buildJekyllSite
| Use new doc build command in github action | Use new doc build command in github action
| YAML | bsd-3-clause | Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java |
a7e83f81d4f3996020a9ac49e57cd66846ea6844 | .github/workflows/main.yml | .github/workflows/main.yml | name: Test & Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node.js for use with actions
uses: actions/setup-node@v1.1.0
- name: Install packages
run: npm ci
- name: Run lint
run: npm run lint
- name: Run tests
run: npm run test
- name: Run browser tests
run: npm run test:browser
- name: Build
run: npm run build
| name: Test & Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node.js for use with actions
uses: actions/setup-node@v1.1.0
- name: Start MongoDB As Docker
uses: wbari/start-mongoDB@v0.2
- name: Install packages
run: npm ci
- name: Run lint
run: npm run lint
- name: Run tests
run: npm run test
- name: Run browser tests
run: npm run test:browser
- name: Build
run: npm run build
| Add MongoDB to GitHub build and test action | Add MongoDB to GitHub build and test action | YAML | mit | Majavapaja/Mursushakki,Majavapaja/Mursushakki,Majavapaja/Mursushakki,Majavapaja/Mursushakki,Majavapaja/Mursushakki,Majavapaja/Mursushakki |
94ccdbd4589e6a9827872e8cf67786f80051460f | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
marker: [not integration]
include:
- python-version: 3.9
marker: ''
- python-version: "3.10"
marker: 'not (redis and asynchronous)'
steps:
- uses: actions/checkout@v2
- uses: docker-practice/actions-setup-docker@master
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/**') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements/ci.txt
- name: Tests
run: |
py.test -m "${{ matrix.marker }}" --cov-report=xml --cov-branch
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
| name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
marker: [not integration]
include:
- python-version: 3.9
marker: ''
- python-version: "3.10"
marker: 'not ((redis or redis_sentinel or redis_cluster) and asynchronous)'
steps:
- uses: actions/checkout@v2
- uses: docker-practice/actions-setup-docker@master
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/**') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements/ci.txt
- name: Tests
run: |
py.test -m "${{ matrix.marker }}" --cov-report=xml --cov-branch
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
| Exclude cluster/sentinel aio tests for 3.10 | Exclude cluster/sentinel aio tests for 3.10
| YAML | mit | alisaifee/limits,alisaifee/limits |
0809c43afd0f1375fb9cec1a5917641f6c6530c6 | .forestry/settings.yml | .forestry/settings.yml | ---
upload_path: "/uploads/:year:/:month:/:day:"
frontmatter_file_url_template: "/uploads/:year:/:month:/:day:"
body_file_url_template: "/uploads/:year:/:month:/:day:"
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
collections:
| ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":year:/:month:/:day:/:filename:"
build:
preview_command: bundle exec jekyll build --drafts --unpublished --future -d _site
publish_command: bundle exec jekyll build -d _site
preview_env:
- JEKYLL_ENV=staging
publish_env:
- JEKYLL_ENV=production
preview_output_directory: _site
output_directory: _site
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | banglaaudiobook/banglaaudiobook.github.io,banglaaudiobook/banglaaudiobook.github.io |
f805850ad2bcc88756680df49dafc6b479a1d9b1 | .pre-commit-hooks.yaml | .pre-commit-hooks.yaml | - id: beautysh
name: beautysh
description: |
A Bash beautifier for the masses.
https://pypi.python.org/pypi/beautysh
entry: beautysh -f
language: python
types: [shell]
| - id: beautysh
name: beautysh
description: |
A Bash beautifier for the masses.
https://pypi.python.org/pypi/beautysh
entry: beautysh
language: python
types: [shell]
| Fix pre-commit-hook with new CLI style | Fix pre-commit-hook with new CLI style | YAML | mit | bemeurer/beautysh,bemeurer/beautysh |
d4711adf3d445dd89b1161f237dbc9d81a6538d8 | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.4.x
- 2.5.x
- 2.6.x
steps:
- uses: actions/checkout@v1
- name: Set up Ruby ${{ matrix.ruby }}
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Build and test
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
| name: Test
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ['2.7', '3.0', '3.1']
name: test (Ruby ${{ matrix.ruby }} on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
| Fix GitHub actions Ruby matrix | Fix GitHub actions Ruby matrix
| YAML | mit | svoop/ogn_client-ruby,svoop/ogn_client-ruby |
645e9141f04e2b05b49cd9378e7830ca47ae6f85 | .github/workflows/test.yml | .github/workflows/test.yml | name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
name: Validate, lint and test
steps:
- uses: actions/checkout@v2
- name: Validate composer files
run: composer validate --strict
- name: Lint all PHP files
run: composer run lint
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v1
with:
path: vendor
key: ${{ runner.os }}-node-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-suggest --no-ansi --no-progress -o
- name: Start dev server
run: composer run dev --timeout=0 &
- name: Run tests
run: composer run test
- name: Run static code analysis
run: composer run sa | name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.2', '7.3', '7.4']
name: Validate, lint and test on PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Debug PHP version
run: |
php -i
php -m
- name: Validate composer files
run: composer validate --strict
- name: Lint all PHP files
run: composer run lint
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v1
with:
path: vendor
key: ${{ runner.os }}-node-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-suggest --no-ansi --no-progress -o
- name: Start dev server
run: composer run dev --timeout=0 &
- name: Run tests
run: composer run test
- name: Run static code analysis
run: composer run sa | Test on multiple versions of PHP | Test on multiple versions of PHP
| YAML | mit | imbo/behat-api-extension |
e4e67264f0963c3e6a9350861848c24e7690e023 | kubernetes/check-digit/templates/service.yaml | kubernetes/check-digit/templates/service.yaml | ---
apiVersion: v1
kind: Service
metadata:
name: {{ template "check-digit.fullname" . }}
labels:
app: {{ template "check-digit.name" . }}
chart: {{ template "check-digit.chart" . }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: {{ .Values.service.targetPort }}
protocol: {{ .Values.service.protocol }}
name: {{ .Values.service.name }}
selector:
app: {{ template "check-digit.name" . }}
release: {{ .Release.Name }}
---
apiVersion: v1
kind: Service
metadata:
labels:
service: ambassador-chk-digit
name: ambassador-chk-digit
annotations:
getambassador.io/config: |
apiVersion: ambassador/v0
kind: Mapping
name: check_digit_mapping
prefix: /public/uli/checkDigit/
service: hmda-check-digit:9091
spec:
type: LoadBalancer
ports:
- name: ambassador-chk-digit
port: 80
targetPort: 80
selector:
service: ambassador-chk-digit | ---
apiVersion: v1
kind: Service
metadata:
name: {{ template "check-digit.fullname" . }}
labels:
app: {{ template "check-digit.name" . }}
chart: {{ template "check-digit.chart" . }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: {{ .Values.service.targetPort }}
protocol: {{ .Values.service.protocol }}
name: {{ .Values.service.name }}
selector:
app: {{ template "check-digit.name" . }}
release: {{ .Release.Name }}
---
apiVersion: v1
kind: Service
metadata:
labels:
service: ambassador-chk-digit
name: ambassador-chk-digit
annotations:
getambassador.io/config: |
apiVersion: ambassador/v0
kind: Mapping
name: check_digit_mapping
prefix: /v2/public/uli/checkDigit/
service: hmda-check-digit:9091
spec:
type: NodePort
ports:
- name: ambassador-chk-digit
port: 80
targetPort: 80
selector:
service: ambassador-chk-digit | Change ambassador port type to NodePort | Change ambassador port type to NodePort
| YAML | cc0-1.0 | cfpb/hmda-platform,cfpb/hmda-platform,cfpb/hmda-platform |
270b2229f12eff7096254dc4f8905dfccdba129d | ansible/roles/packages/tasks/main.yml | ansible/roles/packages/tasks/main.yml | ---
- name: Install epel
yum:
name: epel-release
state: latest
- name: Install packages
yum: name={{ item }} state=latest update_cache=true
with_items:
#- mpc
#- ncmpcpp
- ansible
- bash-completion
- bash-completion-extras
- bitlbee
- cowsay
- cronie
- fail2ban
- fortune-mod
- git
- htop
- lsof
- mosh
- mutt
- ncurses
- nmap
- python-pip
- rancid
- reptyr
- screen
- sqlite
- sudo
- tcpdump
- traceroute
- vim
- weechat
- yum-utils
| ---
- name: Install epel
yum:
name: epel-release
state: latest
- name: Install packages
yum: name={{ item }} state=latest update_cache=true
with_items:
#- mpc
#- ncmpcpp
- ansible
- bash-completion
- bash-completion-extras
- bitlbee
- cowsay
- cronie
- fail2ban
- fortune-mod
- gcc
- gcc-g++
- git
- htop
- lsof
- mosh
- mutt
- ncurses
- nmap
- python-devel
- python-pip
- rancid
- reptyr
- screen
- sqlite
- sudo
- tcpdump
- traceroute
- vim
- weechat
- yum-utils
- name: install pip crap
pip: name={{ item }} state=latest
with_items:
- yowsup2
| Add build deps to ansible packages | Add build deps to ansible packages
| YAML | mit | smaslennikov/smaslennikov.github.io,smaslennikov/smaslennikov.github.io,smaslennikov/smaslennikov.github.io |
d02db2bd126b1ebda14c4e2c051d726c619be6d8 | metadata/com.flxrs.dankchat.yml | metadata/com.flxrs.dankchat.yml | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: MIT
AuthorName: Felix Schmid
AuthorEmail: felix.schmid@flxrs.com
SourceCode: https://github.com/flex3r/DankChat
IssueTracker: https://github.com/flex3r/DankChat/issues
AutoName: DankChat
Description: Chat in multiple channels at once, regardless if the streamers are live
or offline, with FrankerFaceZ and BTTV emote support built-in!
RepoType: git
Repo: https://github.com/flex3r/DankChat
Builds:
- versionName: 0.8.0
versionCode: 60
commit: v0.8.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.8.0
CurrentVersionCode: 60
| AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: MIT
AuthorName: Felix Schmid
AuthorEmail: felix.schmid@flxrs.com
SourceCode: https://github.com/flex3r/DankChat
IssueTracker: https://github.com/flex3r/DankChat/issues
AutoName: DankChat
Description: Chat in multiple channels at once, regardless if the streamers are live
or offline, with FrankerFaceZ and BTTV emote support built-in!
RepoType: git
Repo: https://github.com/flex3r/DankChat
Builds:
- versionName: 0.8.0
versionCode: 60
commit: v0.8.0
subdir: app
gradle:
- yes
- versionName: 0.8.1
versionCode: 61
commit: v0.8.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.8.1
CurrentVersionCode: 61
| Update DankChat to 0.8.1 (61) | Update DankChat to 0.8.1 (61)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
d9e34b003f609599bbb2a7b43c9322169c26dccb | metadata/de.nulide.shiftcal.yml | metadata/de.nulide.shiftcal.yml | Categories:
- Time
License: GPL-3.0-only
SourceCode: https://gitlab.com/Nulide/ShiftCal
IssueTracker: https://gitlab.com/Nulide/ShiftCal/-/issues
AutoName: ShiftCal
RepoType: git
Repo: https://gitlab.com/Nulide/ShiftCal
Builds:
- versionName: '1.1'
versionCode: 2
commit: v1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 3
commit: v1.2
subdir: app
gradle:
- yes
- versionName: '1.3'
versionCode: 4
commit: v1.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.3'
CurrentVersionCode: 4
| Categories:
- Time
License: GPL-3.0-only
SourceCode: https://gitlab.com/Nulide/ShiftCal
IssueTracker: https://gitlab.com/Nulide/ShiftCal/-/issues
AutoName: ShiftCal
RepoType: git
Repo: https://gitlab.com/Nulide/ShiftCal
Builds:
- versionName: '1.1'
versionCode: 2
commit: v1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 3
commit: v1.2
subdir: app
gradle:
- yes
- versionName: '1.3'
versionCode: 4
commit: v1.3
subdir: app
gradle:
- yes
- versionName: '1.4'
versionCode: 5
commit: v1.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.4'
CurrentVersionCode: 5
| Update ShiftCal to 1.4 (5) | Update ShiftCal to 1.4 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
da5895cc313af5020984e09a1ca970ff08358f54 | playbooks/roles/git/tasks/main.yml | playbooks/roles/git/tasks/main.yml | ---
# tasks to setup redirects from git
- name: copy the download http config file
copy: src=git-redirects.conf dest=/etc/httpd/conf.d/git-redirects.conf
sudo: yes
| ---
# tasks to setup redirects from git
- name: copy the http config file
copy: src=git-redirects.conf dest=/etc/httpd/conf.d/git-redirects.conf
notify: restart apache
sudo: yes
- name: copy the http config file with redirects
copy: src=git-redirects.inc dest=/etc/httpd/conf.d/git-redirects.inc
notify: restart apache
sudo: yes
| Update tasks for git redirects | Update tasks for git redirects
| YAML | apache-2.0 | ligurio/openvz-playbooks,ligurio/openvz-playbooks,ligurio/openvz-playbooks |
0af559873003d6793e4702bd3ae4af5774ab32eb | ci/tasks/test-integration-gocli.yml | ci/tasks/test-integration-gocli.yml | ---
platform: linux
image_resource:
type: docker-image
source:
repository: bosh/main
inputs:
- name: bosh-src
- name: bosh-cli
- name: bosh-agent
run:
path: bosh-src/ci/tasks/test-integration-gocli.sh
params:
RUBY_VERSION: replace-me
DB: replace-me
LOG_LEVEL: ERROR
NUM_GROUPS: 8
GROUP: 1,2,3,4,5,6,7,8
SPEC_PATH: ~
SHA2_MODE: ~
| ---
platform: linux
image_resource:
type: docker-image
source:
repository: bosh/main
inputs:
- name: bosh-src
- name: bosh-cli
- name: bosh-agent
run:
path: bosh-src/ci/tasks/test-integration-gocli.sh
params:
RUBY_VERSION: replace-me
DB: replace-me
LOG_LEVEL: ERROR
NUM_GROUPS: 8
GROUP: 1,2,3,4,5,6,7,8
SPEC_PATH: ~
SHA2_MODE: ~
DB_TLS: false
| Add default value for DB_TLS in integration tests | Add default value for DB_TLS in integration tests
[#147717361](https://www.pivotaltracker.com/story/show/147717361)
Signed-off-by: Gaurab Dey <6eab2c4141d8485c934adabfb0522546caded7e6@pivotal.io>
| YAML | apache-2.0 | barthy1/bosh,barthy1/bosh,barthy1/bosh,barthy1/bosh |
786e2395edcc272fa0c7722f199a4ed233749489 | wp-cli/wp-cli/CVE-2021-29504.yaml | wp-cli/wp-cli/CVE-2021-29504.yaml | title: Insecure Deserialization of untrusted data
link: https://github.com/wp-cli/wp-cli/security/advisories/GHSA-rwgm-f83r-v3qj
cve: CVE-2021-29504
reference: composer://wp-cli/wp-cli
branches:
0.x:
time: 2021-05-14 14:37:47
versions: ['>=0.12.0', '<1.0.0']
1.x:
time: 2021-05-14 14:37:47
versions: ['>=1.0.0', '<2.0.0']
2.x:
time: 2021-05-14 14:37:47
versions: ['>=2.0.0', '<2.5.0'] | title: Insecure Deserialization of untrusted data
link: https://github.com/wp-cli/wp-cli/security/advisories/GHSA-rwgm-f83r-v3qj
cve: CVE-2021-29504
reference: composer://wp-cli/wp-cli
branches:
0.x:
time: 2021-05-14 14:37:47
versions: ['>=0.12.0', '<1.0.0']
1.x:
time: 2021-05-14 14:37:47
versions: ['>=1.0.0', '<2.0.0']
2.x:
time: 2021-05-14 14:37:47
versions: ['>=2.0.0', '<2.5.0']
| Add newline at the end of the file | Add newline at the end of the file
| YAML | unlicense | kdambekalns/security-advisories,FriendsOfPHP/security-advisories |
5a0cc46ae63c6a1d1f186aca49930a205f976a27 | .github/workflows/gradle-build.yml | .github/workflows/gradle-build.yml | name: "Build Gradle project"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 9, 10, 11, 12 ]
name: Building on Java ${{ matrix.java }}
steps:
- name: Check out project
uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Gradle
run: ./gradlew build -Pjava-ordered-properties.acceptGradleTOS=true
| name: "Build Gradle project"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 9, 10, 11, 12, 13, 14 ]
name: Building on Java ${{ matrix.java }}
steps:
- name: Check out project
uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Gradle
run: ./gradlew build -Pjava-ordered-properties.acceptGradleTOS=true
| Test all versions of Java from 8 to 14 | Test all versions of Java from 8 to 14
| YAML | apache-2.0 | etiennestuder/java-ordered-properties |
e0330f3e2fd94df192038ba379ede587a5dfbcb2 | .github/workflows/pull-request.yml | .github/workflows/pull-request.yml | name: Pull Request
on: [pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x]
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.31
- name: Test
run: go test ./...
| name: Pull Request
on: [pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x]
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.31
- name: Test
run: go test ./...
| Rename workflow step back to Lint | Rename workflow step back to Lint
| YAML | bsd-3-clause | kare/vanity,kare/vanity |
dc16cd1f80dad0505ac17dbf20a16787dbbdbeaa | .github/workflows/pull_request.yml | .github/workflows/pull_request.yml | name: Pull Request CI
on: [ pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0' ]
name: Ruby v${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: gem install bundler
- run: bundle install
- run: bundle exec rubocop
- run: bundle exec rspec
| name: Pull Request CI
on: [ pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0' ]
name: Ruby v${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: gem install bundler
- run: bundle install
- run: bundle exec rubocop
- run: bundle exec rspec
| Update actions/checkout action to v3 | Update actions/checkout action to v3 | YAML | apache-2.0 | line/line-bot-sdk-ruby |
46ca56237b84cc82daea43b215622be4b3166dfd | .codeclimate.yml | .codeclimate.yml | version: "2"
checks:
method-complexity:
enabled: false
method-lines:
enabled: false
plugins:
rubocop:
enabled: true
channel: rubocop-0-51
exclude_patterns:
- '*.rb'
- 'setup/**/*'
- 'Vagrantfile'
- 'docs/**/*'
- 'hailstorm-gem/Gemfile'
- 'hailstorm-gem/hailstorm.gemspec'
- 'hailstorm-gem/Rakefile'
- 'hailstorm-gem/bin/**/*'
- 'hailstorm-gem/features/**/*'
- 'hailstorm-gem/spec/**/*'
- 'hailstorm-gem/templates/**/*'
- 'hailstorm-gem/tmp/**/*'
- 'hailstorm-redis/**/*'
- 'hailstorm-site/**/*'
- 'hailstorm-web/**/*'
| version: "2"
checks:
method-complexity:
enabled: false
method-lines:
enabled: false
plugins:
rubocop:
enabled: true
channel: rubocop-0-51
exclude_patterns:
- '*.rb'
- 'setup/**/*'
- 'Vagrantfile'
- 'docs/**/*'
- 'hailstorm-gem/Gemfile'
- 'hailstorm-gem/hailstorm.gemspec'
- 'hailstorm-gem/Rakefile'
- 'hailstorm-gem/bin/**/*'
- 'hailstorm-gem/features/**/*'
- 'hailstorm-gem/lib/hailstorm/java/**/*'
- 'hailstorm-gem/spec/**/*'
- 'hailstorm-gem/templates/**/*'
- 'hailstorm-gem/tmp/**/*'
- 'hailstorm-redis/**/*'
- 'hailstorm-site/**/*'
- 'hailstorm-web/**/*'
| Exclude Java lib from Code Climate | Exclude Java lib from Code Climate | YAML | mit | 3pillarlabs/hailstorm-sdk,3pillarlabs/hailstorm-sdk,3pillarlabs/hailstorm-sdk,3pillarlabs/hailstorm-sdk,3pillarlabs/hailstorm-sdk,3pillarlabs/hailstorm-sdk |
e4cf59e5c76c207c926192ad6954cd0b2f9e4c9d | .codeclimate.yml | .codeclimate.yml | engines:
fixme:
enabled: true
tailor:
enabled: true
ratings:
paths: []
exclude_paths: []
| engines:
fixme:
enabled: true
tailor:
enabled: true
ratings:
paths:
- "**.swift"
exclude_paths: []
| Add Code Climate ratings for Swift files. | Add Code Climate ratings for Swift files.
| YAML | apache-2.0 | Hamuko/Nullpo |
497fa38b787b1de141966332320268ee35f8fef4 | .codeclimate.yml | .codeclimate.yml | engines:
rubocop:
enabled: true
duplication:
enabled: true
config:
languages:
ruby:
mass_threshold: 18
bundler-audit:
enabled: true
ratings:
paths:
- lib/**/*
- spec/**/* | engines:
rubocop:
enabled: true
duplication:
enabled: true
config:
languages:
ruby:
mass_threshold: 18
ratings:
paths:
- lib/**/*
- spec/**/* | Remove bundler-audit from CC config | Remove bundler-audit from CC config
| YAML | mit | alexpeattie/nitlink |
59fcf29f2a26166ffc080b54d14642af21ff3e33 | .github/workflows/ci-test.yaml | .github/workflows/ci-test.yaml | # This workflow will do a clean installation of node dependencies, cache/restore them, 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: [ develop, master ]
pull_request:
branches: [ develop, master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 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 }}
cache: 'npm'
- run: npm ci
- run: npm run build-and-test
| # This workflow will do a clean installation of node dependencies, cache/restore them, 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: [ develop, master ]
pull_request:
branches: [ develop, master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.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 }}
cache: 'npm'
- run: npm ci
- run: npm run build-and-test
| Test on node 18 too | Test on node 18 too
| YAML | mit | josdejong/typed-function,josdejong/typed-function |
940a6dffe3525534f3317ea0291672735a7882e9 | .github/workflows/coverity.yml | .github/workflows/coverity.yml | name: Coverity
on:
schedule:
# Run on Mondays
- cron: '* * * * MON'
jobs:
Coverity:
needs: Tests
runs-on: ubuntu-latest
environment: secrets
steps:
- uses: actions/checkout@v2
- name: Install deps
run: scripts/install-deps.sh
- uses: vapier/coverity-scan-action@v0
with:
project: yugr%2Fvalgrind-preload
token: ${{ secrets.COVERITY_SCAN_TOKEN }}
email: ${{ secrets.EMAIL }}
| name: Coverity
on:
schedule:
# Run on Mondays
- cron: '0 5 * * MON'
jobs:
Coverity:
needs: Tests
runs-on: ubuntu-latest
environment: secrets
steps:
- uses: actions/checkout@v2
- name: Install deps
run: scripts/install-deps.sh
- uses: vapier/coverity-scan-action@v0
with:
project: yugr%2Fvalgrind-preload
token: ${{ secrets.COVERITY_SCAN_TOKEN }}
email: ${{ secrets.EMAIL }}
| Fix Coverity to run _once_ on Mondays. | Fix Coverity to run _once_ on Mondays.
| YAML | mit | yugr/valgrind-preload,yugr/valgrind-preload |
842ab93f6e5c665b2711dd93c779b6402ca66f86 | samples/subsys/usb/hid/sample.yaml | samples/subsys/usb/hid/sample.yaml | sample:
name: USB HID sample
tests:
test_hid:
depends_on: usb_device
tags: usb
test_hid_composite:
depends_on: usb_device
extra_configs:
- CONFIG_USB_COMPOSITE_DEVICE=y
tags: usb
| sample:
name: USB HID sample
tests:
test_hid:
depends_on: usb_device
platform_whitelist: quark_se_c1000_devboard
tags: usb
test_hid_composite:
depends_on: usb_device
extra_configs:
- CONFIG_USB_COMPOSITE_DEVICE=y
platform_whitelist: quark_se_c1000_devboard
tags: usb
test_hid_msc_composite:
depends_on: usb_device
extra_configs:
- CONFIG_USB_COMPOSITE_DEVICE=y
- CONFIG_USB_MASS_STORAGE=y
platform_whitelist: quark_se_c1000_devboard
tags: usb
| Add multifunction composite build test | usb: Add multifunction composite build test
Add multifunction composite test for building USB device with HID and
MSC functions.
Fixes: #2613
Signed-off-by: Andrei Emeltchenko <a6565233ddc88e4fb9c66c1d70743223493f2ed4@intel.com>
| YAML | apache-2.0 | ldts/zephyr,nashif/zephyr,kraj/zephyr,nashif/zephyr,zephyriot/zephyr,punitvara/zephyr,galak/zephyr,Vudentz/zephyr,ldts/zephyr,punitvara/zephyr,Vudentz/zephyr,finikorg/zephyr,zephyrproject-rtos/zephyr,GiulianoFranchetto/zephyr,galak/zephyr,zephyrproject-rtos/zephyr,punitvara/zephyr,Vudentz/zephyr,zephyriot/zephyr,ldts/zephyr,zephyrproject-rtos/zephyr,kraj/zephyr,explora26/zephyr,punitvara/zephyr,mbolivar/zephyr,zephyrproject-rtos/zephyr,ldts/zephyr,finikorg/zephyr,explora26/zephyr,nashif/zephyr,finikorg/zephyr,explora26/zephyr,punitvara/zephyr,mbolivar/zephyr,Vudentz/zephyr,zephyriot/zephyr,finikorg/zephyr,explora26/zephyr,mbolivar/zephyr,GiulianoFranchetto/zephyr,galak/zephyr,kraj/zephyr,zephyriot/zephyr,mbolivar/zephyr,galak/zephyr,mbolivar/zephyr,GiulianoFranchetto/zephyr,kraj/zephyr,zephyriot/zephyr,zephyrproject-rtos/zephyr,GiulianoFranchetto/zephyr,finikorg/zephyr,explora26/zephyr,GiulianoFranchetto/zephyr,nashif/zephyr,nashif/zephyr,kraj/zephyr,Vudentz/zephyr,Vudentz/zephyr,galak/zephyr,ldts/zephyr |
c374c32bcc61da1df6f82a81f8dd7bac33582893 | packages/mu/mu-rpc.yaml | packages/mu/mu-rpc.yaml | homepage: https://higherkindness.io/mu-haskell/
changelog-type: markdown
hash: 7a3767b8e656bf800fdfb5f17c887d4bff09a514f0e504d471859c4252ea6aab
test-bench-deps: {}
maintainer: alejandro.serrano@47deg.com
synopsis: Protocol-independent declaration of services and servers.
changelog: |
# Revision history for mu-haskell
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
basic-deps:
mu-schema: '>=0.3.0'
sop-core: -any
base: '>=4.12 && <5'
text: -any
conduit: -any
mtl: -any
template-haskell: -any
all-versions:
- 0.1.0.0
- 0.2.0.0
- 0.3.0.0
author: Alejandro Serrano, Flavio Corpa
latest: 0.3.0.0
description-type: haddock
description: Protocol-independent declaration of services and servers for mu-haskell.
license-name: Apache-2.0
| homepage: https://higherkindness.io/mu-haskell/
changelog-type: markdown
hash: 8964184c415c1bd3dc61cae6a560bf62d72dcf7be67e96c641f455b8880fe76f
test-bench-deps: {}
maintainer: alejandro.serrano@47deg.com
synopsis: Protocol-independent declaration of services and servers.
changelog: |
# Revision history for mu-haskell
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
basic-deps:
mu-schema: ==0.3.*
wai: '>=3.2 && <4'
sop-core: '>=0.5 && <0.6'
base: '>=4.12 && <5'
text: '>=1.2 && <1.3'
conduit: '>=1.3.2 && <1.4'
mtl: '>=2.2 && <2.3'
http-types: '>=0.12 && <0.13'
aeson: -any
template-haskell: '>=2.14 && <2.16'
all-versions:
- 0.1.0.0
- 0.2.0.0
- 0.3.0.0
- 0.4.0.0
author: Alejandro Serrano, Flavio Corpa
latest: 0.4.0.0
description-type: haddock
description: Protocol-independent declaration of services and servers for mu-haskell.
license-name: Apache-2.0
| Update from Hackage at 2020-10-12T10:02:30Z | Update from Hackage at 2020-10-12T10:02:30Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ad584d8f85e8493a64f0992045cc7de34b5cce19 | dartabase_model/pubspec.yaml | dartabase_model/pubspec.yaml | name: dartabase_model
version: 1.1.2
author: Hannes Rammer <Hannes.Rammer@gmail.com>
description: "Database Model is for simple dot notation data manipulation for MySQL and PGSQL without having to write SQL. Inspired by Ruby on Rails"
homepage: https://github.com/HannesRammer/Dartabase/tree/master/dartabase_model
environment:
sdk: '>=1.8.0 <2.0.0'
dependencies:
dartabase_core: "^0.5.2"
#path: "c:/Projects/Dart/dartabase/dartabase_core"
json_object: '>=1.0.18+2 <1.1.0'
postgresql: "^0.3.3"
sqljocky: "^0.14.1" | name: dartabase_model
version: 1.1.3
author: Hannes Rammer <Hannes.Rammer@gmail.com>
description: "Database Model is for simple dot notation data manipulation for MySQL and PGSQL without having to write SQL. Inspired by Ruby on Rails"
homepage: https://github.com/HannesRammer/Dartabase/tree/master/dartabase_model
environment:
sdk: '>=1.8.0 <2.0.0'
dependencies:
dartabase_core: "^0.5.2"
#path: "c:/Projects/Dart/dartabase/dartabase_core"
json_object: '>=1.0.18+2 <1.1.0'
postgresql: "^0.3.3"
sqljocky: "^0.14.1" | Update Dartabase Model to Version 1.1.3 | Update Dartabase Model to Version 1.1.3
| YAML | bsd-2-clause | HannesRammer/Dartabase,HannesRammer/Dartabase |
56281c61dde8b0432274002e0e1aabc9ce6dd466 | packages/ye/yeshql.yaml | packages/ye/yeshql.yaml | homepage: ''
changelog-type: ''
hash: fc4efbdd4d24200db36c7b9c415d84f1a50112c6935e45528a2730c13808cde9
test-bench-deps:
stm: -any
base: ! '>=4.6 && <5.0'
HDBC: -any
yeshql: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
maintainer: tdammers@gmail.com
synopsis: YesQL-style SQL database abstraction
changelog: ''
basic-deps:
base: ! '>=4.6 && <5.0'
HDBC: ! '>=2.4 && <3.0'
parsec: ! '>=3.0 && <4.0'
containers: ! '>=0.5 && <1.0'
template-haskell: -any
all-versions:
- '0.1.0.0'
author: Tobias Dammers
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 3f7e0f8c79b39a7b1da5702b7f84fcfbac49112df3b56932d7da978f1d74d163
test-bench-deps:
stm: -any
base: ! '>=4.6 && <5.0'
HDBC: -any
yeshql: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
maintainer: tdammers@gmail.com
synopsis: YesQL-style SQL database abstraction
changelog: ''
basic-deps:
base: ! '>=4.6 && <5.0'
HDBC: ! '>=2.4 && <3.0'
filepath: -any
parsec: ! '>=3.0 && <4.0'
containers: ! '>=0.5 && <1.0'
template-haskell: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Tobias Dammers
latest: '0.2.0.0'
description-type: haddock
description: ''
license-name: MIT
| Update from Hackage at 2016-03-16T08:40:58+0000 | Update from Hackage at 2016-03-16T08:40:58+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
1696b03c523b7bbf1f49da4978a04c44f0e9962e | actions/st2_package_test.meta.yaml | actions/st2_package_test.meta.yaml | ---
name: st2_package_test
pack: st2cd
description: End to end test for st2 package
enabled: true
runner_type: mistral-v2
entry_point: workflows/st2_package_test.yaml
parameters:
hostname:
type: string
required: true
dns_zone:
type: string
description: Route53 DNS Zone to add host to
default: uswest2.stackstorm.net
instance_type:
type: string
default: m3.large
environment:
type: string
enum:
- sandbox
- staging
- production
default: sandbox
key_name:
type: string
default: st2_deploy
keyfile:
type: string
default: /home/vagrant/.ssh/stanley_rsa
distro:
type: string
required: true
role:
type: string
default: default
release:
type: string
enum:
- stable
- unstable
default: stable
version:
type: string
bootstrap_branch:
type: string
default: master
bootstrap_script:
type: string
debug:
type: boolean
default: false
| ---
name: st2_package_test
pack: st2cd
description: End to end test for st2 package
enabled: true
runner_type: mistral-v2
entry_point: workflows/st2_package_test.yaml
parameters:
hostname:
type: string
required: true
dns_zone:
type: string
description: Route53 DNS Zone to add host to
default: uswest2.stackstorm.net
instance_type:
type: string
default: m3.large
environment:
type: string
enum:
- sandbox
- staging
- production
default: sandbox
key_name:
type: string
default: st2_deploy
keyfile:
type: string
default: /home/stanley/.ssh/stanley_rsa
distro:
type: string
required: true
role:
type: string
default: default
release:
type: string
enum:
- stable
- unstable
default: stable
version:
type: string
bootstrap_branch:
type: string
default: master
bootstrap_script:
type: string
debug:
type: boolean
default: false
| Fix path to key file in st2_package_test | Fix path to key file in st2_package_test
| YAML | apache-2.0 | StackStorm/st2cd,StackStorm/st2cd |
8954e4ed1ede56b2d80580dbfd50c86a9c725d9a | scripts/people/PickledChicken.yaml | scripts/people/PickledChicken.yaml | # PickledChicken likes to make cool things. Does both design and development.
- blog: http://changbaili.blogspot.com/
feed: http://changbaili.blogspot.com/feeds/posts/default
forges:
- http://github.com/lcb931023
irc: PickledChicken
name: Changbai Li
rit_dce: cxl6359
litreview1: http://changbaili.blogspot.com/2014/02/lit-review-ch3-what-is-open-source-and.html
quiz1: http://changbaili.blogspot.com/2014/02/hfoss-quiz-1-quiz-one.html | # PickledChicken likes to make cool things. Does both design and development.
- blog: http://changbaili.blogspot.com/search/label/HFOSS
feed: http://changbaili.blogspot.com/feeds/posts/default/-/HFOSS
forges:
- http://github.com/lcb931023
irc: PickledChicken
name: Changbai Li
rit_dce: cxl6359
litreview1: http://changbaili.blogspot.com/2014/02/lit-review-ch3-what-is-open-source-and.html
quiz1: http://changbaili.blogspot.com/2014/02/hfoss-quiz-1-quiz-one.html | Change blog and feed to the right subcategory | Change blog and feed to the right subcategory
Former-commit-id: d2baa03262c8ea2691372e4e18b50541d8cf0511 [formerly 41dbdb696693024c947743e67e44434a6a783e1a] [formerly 91548982fccc703acf6d23e79da385ff2c93a0b2]
Former-commit-id: 34e2f60307d91796a0897721d925cf7a55345bb0 [formerly e2663f029b1796bca1f782d72d6b1a6d7fb4d493]
Former-commit-id: fbf530cd9f4e0eb16a33de7e46c8578300456fa1 | YAML | apache-2.0 | sctjkc01/ofCourse,sctjkc01/ofCourse,ryansb/ofCourse,ritjoe/ofCourse,ritjoe/ofCourse,ryansb/ofCourse |
9be8ef42e4c1c292fa26debcf6d94a82a0a927e0 | data/transition-sites/phe_erpho.yml | data/transition-sites/phe_erpho.yml | ---
site: phe_erpho
whitehall_slug: public-health-england
homepage: www.apho.org.uk
tna_timestamp: 20151111133042
host: www.erpho.org.uk
aliases:
- erpho.org.uk
global: =410
| ---
site: phe_erpho
whitehall_slug: public-health-england
homepage: http://www.apho.org.uk
tna_timestamp: 20151111133042
host: www.erpho.org.uk
aliases:
- erpho.org.uk
global: =410
| Add missing protocol for ERPHO homepage | Add missing protocol for ERPHO homepage
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
4ee93e3516c175b86871302cef35320a5f483031 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future
-d _site
| ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future
-d _site
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | JacksonBates/blog,JacksonBates/blog,JacksonBates/blog,JacksonBates/blog |
f99ce1a29523a25a0157216a7dccb2f551395294 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
| ---
new_page_extension: md
auto_deploy: true
admin_path: ''
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | tonusp/tonusp.github.io |
444fef55acd88046b8240de3d63bcc68bf154758 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
- type: directory
path: _books2
label: Books2
create: all
match: "**/*"
- type: directory
path: _media
label: Media
create: all
match: "**/*"
upload_dir: assets/uploads
public_path: assets/uploads
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
output_directory: _site
| ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
- type: directory
path: _books2
label: Books2
create: all
match: "**/*"
- type: directory
path: _media
label: Media
create: all
match: "**/*"
upload_dir: assets/uploads
public_path: assets/uploads
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_command: bundle exec jekyll build --drafts --unpublished --future -d _site
publish_command: bundle exec jekyll build -d _site
preview_env:
- JEKYLL_ENV=staging
publish_env:
- JEKYLL_ENV=production
preview_output_directory: _site
output_directory: _site
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | johnpitchko/johnpitchko.github.io,johnpitchko/johnpitchko.github.io,johnpitchko/johnpitchko.github.io |
9f099657ee6c48a86e1d3a8755be3cfa25e3964c | .forestry/settings.yml | .forestry/settings.yml | ---
upload_path: "/static/images/"
frontmatter_file_url_template: "/images/"
body_file_url_template: "/images/"
new_page_extension: md
auto_deploy: false
admin_path: admin
webhook_url:
sections:
article:
default_front_matter_template: article
tools:
default_front_matter_template: tools
tool:
default_front_matter_template: tool
showcase:
default_front_matter_template: showcase
meetup:
default_front_matter_template: the-new-dynamic-meetup-group
link:
default_front_matter_template: link
event:
default_front_matter_template: event
version: 0.31.1
| ---
upload_path: "/static/uploads/"
frontmatter_file_url_template: "/uploads/"
body_file_url_template: "/uploads/"
new_page_extension: md
auto_deploy: false
admin_path: admin
webhook_url:
sections:
article:
default_front_matter_template: article
tools:
default_front_matter_template: tools
tool:
default_front_matter_template: tool
showcase:
default_front_matter_template: showcase
meetup:
default_front_matter_template: the-new-dynamic-meetup-group
link:
default_front_matter_template: link
event:
default_front_matter_template: event
version: 0.31.1
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | budparr/thenewdynamic,budparr/thenewdynamic,budparr/thenewdynamic,thenewdynamic-org/thenewdynamic.org,thenewdynamic-org/thenewdynamic.org |
f15b41b9d81ff1e4cd8d5bf62dacb9470d205fb1 | .github/github-bot.yml | .github/github-bot.yml | _extends: probot-settings
project-board:
name: 'Pipeline for QA'
tested-pr-label-name: 'Tested - Issues'
contributor-column-name: 'CONTRIBUTOR'
review-column-name: 'REVIEW'
test-column-name: 'TO TEST'
automated-tests:
repo-full-name: 'status-im/status-react'
job-full-name: 'end-to-end-tests/status-app-end-to-end-tests'
github-team:
slug: 'clojure'
prchecklist:
title: Pull Request Checklist
checklist:
- 'Have you updated the documentation, if impacted (e.g. [docs.status.im](https://docs.status.im/docs/build_status.html))?'
stale:
daysUntilStale: 90
daysUntilClose: 7
exemptLabels:
- 'wall of shame'
- security
staleLabel: stale
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
closeComment: >
This issue has been automatically closed. Please re-open if this issue
is important to you.
| _extends: probot-settings
project-board:
name: 'Pipeline for QA'
tested-pr-label-name: 'Tested - Issues'
contributor-column-name: 'CONTRIBUTOR'
review-column-name: 'REVIEW'
test-column-name: 'TO TEST'
automated-tests:
repo-full-name: 'status-im/status-react'
job-full-name: 'end-to-end-tests/status-app-end-to-end-tests'
github-team:
slug: 'clojure'
prchecklist:
title: Pull Request Checklist
checklist:
- 'Have you updated the documentation, if impacted (e.g. [docs.status.im](https://docs.status.im/docs/build_status.html))?'
stale:
daysUntilStale: 90
daysUntilPullRequestStale: 14
daysUntilClose: 7
exemptLabels:
- 'wall of shame'
- security
staleLabel: stale
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
closeComment: >
This issue has been automatically closed. Please re-open if this issue
is important to you.
| Reduce number of days required to consider a PR stale to 14 | Reduce number of days required to consider a PR stale to 14
Signed-off-by: Pedro Pombeiro <f8c34e1c5d363d76a4b9e8313641f62c1029c3e7@users.noreply.github.com>
| YAML | mpl-2.0 | status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react |
3d1392fb3efd0cd37451ea701b3597f3cd8ab258 | languages/zh-TW.yml | languages/zh-TW.yml | categories: 分類
search: 搜尋
tags: 標籤
tagcloud: 標籤雲
tweets: 推文
prev: 上一頁
next: 下一頁
comment: 留言
archive_a: 彙整
archive_b: 彙整:%s
page: 第 %d 頁
recent_posts: 最新文章 | categories: '分類'
search: '搜尋'
tags: '標籤'
tagcloud: '標籤雲'
tweets: '推文'
prev: '上一頁'
next: '下一頁'
comment: '留言'
archive_a: '彙整'
archive_b: '彙整:%s'
page: '第 %d 頁'
recent_posts: '最新文章'
| Fix yml: Add quotes to translation text | Fix yml: Add quotes to translation text | YAML | mit | daisygao/hexo-themes-cover,daisygao/hexo-themes-cover |
01546f71b2c33795b920bff09bece517c3d3250a | .pre-commit-hooks.yaml | .pre-commit-hooks.yaml | - id: isort
name: isort
entry: isort
require_serial: true
language: python
language_version: python3
types_or: [cython, pyi, python]
args: ['--filter-files']
minimum_pre_commit_version: '2.9.0'
| - id: isort
name: isort
entry: isort
require_serial: true
language: python
language_version: python3
types_or: [cython, pyi, python]
args: ['--filter-files']
minimum_pre_commit_version: '2.9.2'
| Update minimum pre-commit version to 2.9.2 | Update minimum pre-commit version to 2.9.2
The PR which led to 2.9.0 was made by a data scientist and so it contains a bug in the default types for `types_or`, it'd be better to have 2.9.2 as the minimum version - at least, that's what Anthony Sottile suggested be done in `black` https://github.com/psf/black/pull/1875#discussion_r550571589 | YAML | mit | PyCQA/isort,PyCQA/isort |
ff3412c8e252e366c65ac0020f37c871e9a43fb0 | .github/workflows/testrunner.yml | .github/workflows/testrunner.yml | name: Testrunner
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout source
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
ini-values: memory_limit=2048M
- name: Install dependencies
run: composer install --prefer-source
- name: Check code standards
run: vendor/bin/phpcs --standard=PSR1,PSR2 -n src
- name: Run useragent string tests
run: php bin/runner.php --show check
- name: Run unit tests
run: vendor/bin/phpunit --no-coverage tests/unit
| name: Testrunner
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout source
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
ini-values: memory_limit=2048M
- name: Install dependencies
run: composer install --prefer-source
- name: Check code standards
run: vendor/bin/phpcs --standard=PSR1,PSR2 -n src
- name: Run useragent string tests
run: php bin/runner.php --show check
- name: Run unit tests
run: vendor/bin/phpunit --no-coverage tests/unit
| Remove PHP 5 from testing | Remove PHP 5 from testing
| YAML | mit | WhichBrowser/Parser |
a2f51914e5e8133e329061d6426efb2758e317f2 | .github/workflows/typescript.yml | .github/workflows/typescript.yml | name: TypeScript
on:
push:
branches:
- master
pull_request:
jobs:
tsc:
name: "TSC"
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Set up node.js
uses: actions/setup-node@v1
with:
node-version: "12"
- uses: actions/checkout@v2
- run: npm install
- run: echo "::add-matcher::.github/typescript-tsc.json"
- run: npx tsc --noEmit
javascript_sync:
name: "Check for outdated JavaScript"
needs: tsc
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Set up node.js
uses: actions/setup-node@v1
with:
node-version: "12"
- uses: actions/checkout@v2
- run: npm install
- run: npx tsc
- run: echo "::add-matcher::.github/typescript-tsc_not_run.json"
- run: |
git diff --exit-code
| name: TypeScript
on:
push:
branches:
- master
pull_request:
jobs:
tsc:
name: "TSC"
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Set up node.js
uses: actions/setup-node@v1
with:
node-version: "12"
- uses: actions/checkout@v2
- run: npm install
- run: echo "::add-matcher::.github/typescript-tsc.json"
- run: npx tsc --noEmit
- name: Check that tslib is in sync.
run: diff -wu wcfsetup/install/files/js/3rdParty/tslib.js node_modules/tslib/tslib.js
javascript_sync:
name: "Check for outdated JavaScript"
needs: tsc
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Set up node.js
uses: actions/setup-node@v1
with:
node-version: "12"
- uses: actions/checkout@v2
- run: npm install
- run: npx tsc
- run: echo "::add-matcher::.github/typescript-tsc_not_run.json"
- run: |
git diff --exit-code
| Check that the vendored tslib is up to date | Check that the vendored tslib is up to date
Resolves #3659
| YAML | lgpl-2.1 | SoftCreatR/WCF,Cyperghost/WCF,WoltLab/WCF,Cyperghost/WCF,Cyperghost/WCF,SoftCreatR/WCF,Cyperghost/WCF,SoftCreatR/WCF,WoltLab/WCF,WoltLab/WCF,WoltLab/WCF,Cyperghost/WCF,SoftCreatR/WCF |
e150ce993f8a2f6b0fbe392295f442015b240c55 | src/gcloudbuild.yaml | src/gcloudbuild.yaml | # Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
steps:
# Deploy code to Google App Engine
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
entrypoint: 'gcloud'
args: ['app', 'deploy', './src/app.yaml']
timeout: '1200s'
# Schedule all tasks via Google Cloud Scheduler
- name: python
entrypoint: 'bash'
dir: './src'
args:
- '-c'
- |
pip install -r requirements.txt
python3 ./scripts/setup_scheduler.py
# Define global timeout
timeout: '1800s'
| # Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
steps:
# Deploy code to Google App Engine
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
entrypoint: 'gcloud'
args: ['app', 'deploy', './src/app.yaml']
timeout: 1200s
# Schedule all tasks via Google Cloud Scheduler
- name: python
entrypoint: 'bash'
dir: './src'
args:
- '-c'
- |
pip install -r requirements.txt
python3 ./scripts/setup_scheduler.py
# Define global timeout
timeout: 1800s
| Remove quotes in timeout field | Remove quotes in timeout field
| YAML | apache-2.0 | GoogleCloudPlatform/covid-19-open-data,GoogleCloudPlatform/covid-19-open-data |
b59e8e341a34d724bdfca7b1a28bd7e03cb75ac3 | packages/sy/syb-with-class.yaml | packages/sy/syb-with-class.yaml | homepage: ''
changelog-type: ''
hash: e894d322dfc9c36c33058bfcbecbe6d36e620556a9713108b008120f7981cd7c
test-bench-deps: {}
maintainer: sanzhiyan@gmail.com
synopsis: Scrap Your Boilerplate With Class
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=3 && <5'
array: -any
containers: -any
template-haskell: ! '>=2.4 && <2.11'
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4'
- '0.5'
- '0.5.1'
- '0.6'
- '0.6.1'
- '0.6.1.1'
- '0.6.1.2'
- '0.6.1.3'
- '0.6.1.4'
- '0.6.1.5'
- '0.6.1.6'
author: Simon Peyton Jones, Ralf Laemmel
latest: '0.6.1.6'
description-type: haddock
description: ! 'Classes, and Template Haskell code to generate instances, for the
Scrap Your Boilerplate With Class system.'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: adece1ced20a1b3b73b51fe2b2b96f78686d781a5f4941bed71014101659ffa0
test-bench-deps: {}
maintainer: sanzhiyan@gmail.com
synopsis: Scrap Your Boilerplate With Class
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=3 && <5'
array: -any
containers: -any
template-haskell: ! '>=2.4 && <2.12'
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4'
- '0.5'
- '0.5.1'
- '0.6'
- '0.6.1'
- '0.6.1.1'
- '0.6.1.2'
- '0.6.1.3'
- '0.6.1.4'
- '0.6.1.5'
- '0.6.1.6'
- '0.6.1.7'
author: Simon Peyton Jones, Ralf Laemmel
latest: '0.6.1.7'
description-type: haddock
description: ! 'Classes, and Template Haskell code to generate instances, for the
Scrap Your Boilerplate With Class system.'
license-name: BSD3
| Update from Hackage at 2016-06-22T18:43:48+0000 | Update from Hackage at 2016-06-22T18:43:48+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
a910838af8a842ed6d8a15b68325109449f09391 | ab_tests/ab_tests.yaml | ab_tests/ab_tests.yaml | # List the variants for your AB or multivariate test here.
# Please leave the 'Example' test config in place.
---
- Example:
- A
- B
- TopicPagesTest:
- A
- B
- C
- D
- E
- ViewDrivingLicence:
- A
- B
| # List the variants for your AB or multivariate test here.
# Please leave the 'Example' test config in place.
---
- Example:
- A
- B
- TopicPagesTest:
- A
- B
- C
- D
- E
- ViewDrivingLicence:
- A
- B
- RelatedLinksAATest:
- A
- B
| Add related links A/A test | Add related links A/A test
This commit updates the A/B tests config file to add new test `RelatedLinksAATest`.
Solo: da39a3ee5e6b4b0d3255bfef95601890afd80709@karlbaker02
| YAML | mit | alphagov/fastly-configure,alphagov/fastly-configure,alphagov/fastly-configure |
c56f3fe0ba237d9484663bf04706dd7a6261e38b | ansible/build-node.yml | ansible/build-node.yml | ---
- hosts: 127.0.0.1
connection: local
vars:
- cm_buildimage: "caremonkey/cm-builder"
- ecr_image_name: "984601232468.dkr.ecr.us-west-2.amazonaws.com/{{ cm_buildimage }}:latest"
tasks:
- name: Get Login command for private AWS ECR registry
command: aws ecr get-login --region us-west-2
register: docker_login_command
- name: Login to the registry
command: "{{ docker_login_command.stdout_lines.0 }}"
- name: Pull supporting Docker images
become: yes
docker_image:
name: "{{ item }}"
with_items:
- "postgres:9.4"
- "memcached:1.4-alpine"
- "redis:2.8.19"
- "{{ ecr_image_name }}"
- name: Tag the builder image with something easier to work with
become: yes
command: docker tag "{{ ecr_image_name }}" "{{ cm_buildimage }}:latest"
| ---
- hosts: 127.0.0.1
connection: local
vars:
- cm_buildimage: "caremonkey/cm-builder"
- ecr_image_name: "984601232468.dkr.ecr.us-west-2.amazonaws.com/{{ cm_buildimage }}:latest"
tasks:
- name: Get Login command for private AWS ECR registry
command: aws ecr get-login --region us-west-2
register: docker_login_command
- name: Login to the registry
become: yes
command: "{{ docker_login_command.stdout_lines.0 }}"
- name: Pull supporting Docker images
become: yes
docker_image:
name: "{{ item }}"
with_items:
- "postgres:9.4"
- "memcached:1.4-alpine"
- "redis:2.8.19"
- "{{ ecr_image_name }}"
- name: Tag the builder image with something easier to work with
become: yes
command: docker tag "{{ ecr_image_name }}" "{{ cm_buildimage }}:latest"
| Add using sudo to talk to docker for login | Add using sudo to talk to docker for login
| YAML | mit | caremonkey/buildkite-aws-elastic-stack,caremonkey/buildkite-aws-elastic-stack |
951bb2e27bd5cf3661d0c4f9549645e79b4a48e5 | .github/workflows/python-package.yml | .github/workflows/python-package.yml | name: parse_this tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["2.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: test with pytest
run: |
pytest
| name: parse_this tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["2.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: lint with flake8
run: |
flake8 parse_this test --count --show-source --statistics
- name: test with pytest
run: |
pytest
| Add flake8 linting to github action | Add flake8 linting to github action
| YAML | mit | bertrandvidal/parse_this |
09f3d3e893775cc96aa878516ad588e8a7ef3b2d | .github/workflows/security-scan.yml | .github/workflows/security-scan.yml | name: "Security Scan"
# Run workflow each time code is pushed to your repository and on a schedule.
on:
push:
schedule:
- cron: 25 1 * * 1
jobs:
tests:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v2
- uses: securego/gosec@master
with:
# we let the report trigger content trigger a failure using the GitHub Security features.
args: '-no-fail -fmt sarif -out results.sarif -tags fuzz ./...'
- uses: github/codeql-action/upload-sarif@v1
with:
# Path to SARIF file relative to the root of the repository
sarif_file: results.sarif
| name: "Security Scan"
# Run workflow each time code is pushed to your repository and on a schedule.
on:
push:
schedule:
- cron: 25 1 * * 1
jobs:
gosec:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v2
- uses: securego/gosec@master
with:
# we let the report trigger content trigger a failure using the GitHub Security features.
args: '-no-fail -fmt sarif -out results.sarif -tags fuzz ./...'
- uses: github/codeql-action/upload-sarif@v1
with:
# Path to SARIF file relative to the root of the repository
sarif_file: results.sarif
| Fix name of gosec scan job. | Fix name of gosec scan job.
| YAML | apache-2.0 | google/mtail,google/mtail |
81088340156daecd4e478696f31b7616f5fc8262 | .github/workflows/test-and-lint.yml | .github/workflows/test-and-lint.yml | name: Test and lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11.0-beta.1"]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: "**/poetry.lock"
- name: Install poetry
run: pip --disable-pip-version-check install -U poetry
- name: Install Python packages
run: poetry install
- name: Lint with flake8
run: |
poetry run flake8 --version
poetry run flake8 --show-source --statistics rouver rouver_test
- name: Type checking with mypy
run: |
poetry run mypy --version
poetry run mypy rouver rouver_test
- name: Test with unittest
run: poetry run pytest
| name: Test and lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: "**/poetry.lock"
- name: Install poetry
run: pip --disable-pip-version-check install -U poetry
- name: Install Python packages
run: poetry install
- name: Lint with flake8
run: |
poetry run flake8 --version
poetry run flake8 --show-source --statistics rouver rouver_test
- name: Type checking with mypy
run: |
poetry run mypy --version
poetry run mypy rouver rouver_test
- name: Test with unittest
run: poetry run pytest
| Use 3.11-dev in CI, instead of an explicit beta | Use 3.11-dev in CI, instead of an explicit beta
| YAML | mit | srittau/rouver |
376743e3f1aa702da46d4dbf784afa8a13ee9664 | app/config/routing.yml | app/config/routing.yml | #
# 3rd party routes
#
nelmio_api_doc:
resource: "@NelmioApiDocBundle/Resources/config/routing.yml"
prefix: /api/doc
fos_js_routing:
resource: "@FOSJsRoutingBundle/Resources/config/routing/routing.xml"
_imagine:
resource: .
type: imagine
#
# ORO routes
#
oro_default:
pattern: /
defaults:
_controller: OroDashboardBundle:Dashboard:view
oro_auto_routing:
resource: .
type: oro_auto
oro_expose:
resource: .
type: oro_expose
| #
# 3rd party routes
#
nelmio_api_doc:
resource: "@NelmioApiDocBundle/Resources/config/routing.yml"
prefix: /api/doc
fos_js_routing:
resource: "@FOSJsRoutingBundle/Resources/config/routing/routing.xml"
_imagine:
resource: .
type: imagine
#
# ORO routes
#
oro_default:
path: /
defaults:
_controller: OroDashboardBundle:Dashboard:view
oro_auto_routing:
resource: .
type: oro_auto
oro_expose:
resource: .
type: oro_expose
| Install OroCommerce over OroCRM as a package | CRM-6108: Install OroCommerce over OroCRM as a package
- Added application 'commerce-crm'
- Added 'commerce-crm' to the testing matrix
- Added new application `commerce-crm-ee`
- Tests for application `commerce-crm-ee`
- Updated documentations and configs on new applications
- Fixed issue with circular references
- Added 'OroBridgeBundle'
- Fixed issue with broken command "oro:activity-contact:recalculate"
- Fixed broken test in EntityDataControllerTest
- Fixed issue with incorrect url in api tests
- Fixed issue with 302 status
- Fixed exceptions "Serialization of 'Closure' is not allowed"
- Added 'web_backend_prefix' to Behat tests
- Fixed tests in `SegmentBundle` bundle
- Fixed bug with "Can't install package 'oro/crm' on commerce application through Package manager" ( CRM-6151 )
- Moved behat tests that use enterprise components to package 'crm-enterprise'
- Fix issues with "Can't get single identifier" ( CRM-6156 )
- Fix Oro\Bundle\DataAudit\Tests\Functional\ControllersTest::testAuditHistory test ( CRM-6158 )
- Fix issue with killing process on Travis ( testsuite: "functional tests on php 5.x" ) ( CRM-6153 )
- Fix test Oro\Bundle\WorkflowBundle\Tests\Functional\Controller\ProcessDefinitionControllerTest::testIndexAction ( CRM-6161 )
- Fix test Oro\Bundle\WorkflowBundle\Tests\Functional\Controller\ProcessDefinitionControllerTest::testIndexAction ( CRM-6161 )
- Fixed for Oro\Bundle\SoapBundle\Tests\Functional\Routing\FixRestAnnotationsTest::testRestApiRoutes ( CRM-6160 )
- Fixed issue with "Call to undefined method Oro\Component\MessageQueue\Client\TraceableMessageProducer::enable()" ( CRM-6191 )
- Fix issue with killing process on Travis ( testsuite: "functional tests on php 5.x" ) ( CRM-6153 )
- Fix problem with Oro\Bundle\WarehouseBundle\Tests\Functional\Api\WarehouseInventoryLevelApiTest ( CRM-6157 )
- Fixed for Oro\Bundle\SoapBundle\Tests\Functional\Routing\FixRestAnnotationsTest::testRestApiRoutes ( CRM-6160 )
- Fixed functional test Oro\Bundle\UserBundle\Tests\Functional\API\RestRolesTest::testGetRoleById ( CRM-6162 )
- Fix Failed asserting that 401 matches expected 200 ( CRM-6159 )
- Fixed issue with ( "Unable to see content on 'General' tab on config page on CRM+Commerce application" ) ( CRM-6150 )
- Fixed issue with ( Failed asserting that null matches expected 1 (Commerce upgrade specific bug)" ) ( CRM-6188 )
- Fixed issue with "Failed asserting that actual size 0 matches expected size 1" ( CRM-6186 )
- Added build on `commerce-crm-ee` with update from commerce_beta_3
- Fixed issue with broken installer
- Added tests upgrade on application/commerce-enterprise
- Fix issue with "LogicException: Can't read file entity_export_template_to_csv" ( CRM-6210 )
- Removed unneeded code from Behat contexts
- Worked on fixing behat tests ( CRM-6213 )
- Fixed issue with failed command ( CRM-6212 )
- Fix issue with "LogicException: Can't read file entity_export_template_to_csv" ( CRM-6210 )
- Fixed broken authentication on page api/doc ( CRM-6207 )
- Increase execute timeout for sub-commands of `oro:platform:update` ( CRM-6212 )
- Fix issue with failed test `Oro\Bundle\DistributionBundle\Tests\Functional\Script\RunnerTest::testShouldRunUpdatePlatformCommandWithoutErrors` ( CRM-6212 )
- Added parameter 'web_backend_prefix' to CRM and CRM-enterprise
- Rename `Sales Manager` to `Sales Assistent` in Commerce
- Rename all tabs and entities that relate to commerce 'Account' to 'Customer' ( CRM-6270 )
- Fixed broken tests in Oro\Bundle\ApiBundle\Tests\Functional\RestJsonApiFormValidationTest ( CRM-6268 )
| YAML | mit | orocrm/platform-application,orocrm/platform-application |
ae18b59c0bf8ea6f2b859db3126fe279b059207e | lib/data/rates/married_couples_allowance.yml | lib/data/rates/married_couples_allowance.yml | ---
- start_date: 2013-04-06
end_date: 2014-04-05
maximum_married_couple_allowance: 7915
minimum_married_couple_allowance: 3040
- start_date: 2014-04-06
end_date: 2015-04-05
maximum_married_couple_allowance: 8165
minimum_married_couple_allowance: 3140
- start_date: 2015-04-06
end_date: 2016-04-05
maximum_married_couple_allowance: 8355
minimum_married_couple_allowance: 3220
- start_date: 2016-04-06
end_date: 2017-04-05
maximum_married_couple_allowance: 8355
minimum_married_couple_allowance: 3220
- start_date: 2017-04-06
end_date: 2018-04-05
maximum_married_couple_allowance: 8445
minimum_married_couple_allowance: 3260
| ---
- start_date: 2013-04-06
end_date: 2014-04-05
maximum_married_couple_allowance: 7915
minimum_married_couple_allowance: 3040
- start_date: 2014-04-06
end_date: 2015-04-05
maximum_married_couple_allowance: 8165
minimum_married_couple_allowance: 3140
- start_date: 2015-04-06
end_date: 2016-04-05
maximum_married_couple_allowance: 8355
minimum_married_couple_allowance: 3220
- start_date: 2016-04-06
end_date: 2017-04-05
maximum_married_couple_allowance: 8355
minimum_married_couple_allowance: 3220
- start_date: 2017-04-06
end_date: 2018-04-05
maximum_married_couple_allowance: 8445
minimum_married_couple_allowance: 3260
- start_date: 2018-04-06
end_date: 2019-04-05
maximum_married_couple_allowance: 8445
minimum_married_couple_allowance: 3360
| Add 2018-2019 rates for married couple's allowance | Add 2018-2019 rates for married couple's allowance
https://trello.com/c/0BubHO5U/125-1-6-april-calculate-your-married-couples-allowance
| YAML | mit | alphagov/smart-answers,alphagov/smart-answers,alphagov/smart-answers,alphagov/smart-answers |
3f720078796ec79bd23ccdbfd24036a92d6bc206 | api/docker-compose.yml | api/docker-compose.yml | version: '3.0'
services:
fluentd:
image: harrowio/fluentd:latest
container_name: harrow-fluentd
ports:
- "24224:24224"
- "24224:24224/udp"
volumes:
- ./support/fluentd/fluentd.conf:/fluentd/etc/fluentd.conf
- ./logs:/mnt/data/api-logs/
environment:
- FLUENTD_CONF=fluentd.conf
links:
- elasticsearch
elasticsearch:
image: elasticsearch
container_name: harrow_elasticsearch
expose:
- 9200
ports:
- "9200:9200"
kibana:
image: kibana
links:
- elasticsearch
ports:
- "5601:5601"
rabbitmq:
image: rabbitmq:3-management-alpine
container_name: harrow-rabbitmq
restart: always
ports:
- 5672:5672
- 15672:15672
redis:
image: redis:alpine
restart: always
container_name: harrow-redis
ports:
- 6379:6379
postgres:
image: postgres:latest
container_name: harrow-postgres
restart: always
environment:
- POSTGRES_USER=harrow-dev-test
- POSTGRES_PASSWORD=harrow-dev-test
ports:
- 5432:5432
| version: '3.0'
services:
# The Dockerfile for this image can be found in ./support/fluentd
fluentd:
image: harrowio/fluentd:latest
container_name: harrow-fluentd
ports:
- "24224:24224"
- "24224:24224/udp"
volumes:
- ./support/fluentd/fluentd.conf:/fluentd/etc/fluentd.conf
- ./logs:/mnt/data/api-logs/
environment:
- FLUENTD_CONF=fluentd.conf
links:
- elasticsearch
elasticsearch:
image: elasticsearch
container_name: harrow_elasticsearch
expose:
- 9200
ports:
- "9200:9200"
kibana:
image: kibana
links:
- elasticsearch
ports:
- "5601:5601"
rabbitmq:
image: rabbitmq:3-management-alpine
container_name: harrow-rabbitmq
restart: always
ports:
- 5672:5672
- 15672:15672
redis:
image: redis:alpine
restart: always
container_name: harrow-redis
ports:
- 6379:6379
postgres:
image: postgres:latest
container_name: harrow-postgres
restart: always
environment:
- POSTGRES_USER=harrow-dev-test
- POSTGRES_PASSWORD=harrow-dev-test
ports:
- 5432:5432
| Document how to build the correct image for the Fluentd setup we use | Document how to build the correct image for the Fluentd setup we use
| YAML | agpl-3.0 | harrowio/harrow,harrowio/harrow,harrowio/harrow,harrowio/harrow,harrowio/harrow,harrowio/harrow |
41d0435456392c821fc668256fe6b8400048e2a4 | manifests/prometheus/alerts.d/aiven-cost.yml | manifests/prometheus/alerts.d/aiven-cost.yml | # Source: paas-metrics
---
- type: replace
path: /instance_groups/name=prometheus2/jobs/name=prometheus2/properties/prometheus/custom_rules?/-
value:
name: AivenEstimatedCostHigh
rules:
- alert: AivenEstimatedCostHigh
expr: delta(paas_aiven_estimated_cost_pounds[24h]) * 30 > 28500
labels:
severity: critical
annotations:
summary: "Aiven estimated cost is high, possibly need to alert finance."
description: "The estimated monthly cost of Aiven is currently £{{ $value | printf \"%.2f\" }}, possibly need to alert finance."
| # Source: paas-metrics
---
- type: replace
path: /instance_groups/name=prometheus2/jobs/name=prometheus2/properties/prometheus/custom_rules?/-
value:
name: AivenEstimatedCostHigh
rules:
- alert: AivenEstimatedCostHigh
expr: delta(paas_aiven_estimated_cost_pounds[24h]) * 30 > 35000
labels:
severity: critical
annotations:
summary: "Aiven estimated cost is high, possibly need to alert finance."
description: "The estimated monthly cost of Aiven is currently £{{ $value | printf \"%.2f\" }}, possibly need to alert finance."
| Update Aiven cost alert value | Update Aiven cost alert value
Our Aiven spending has increased. We are able to raise the alerting
limit as it is still within the limit of our agreed budget.
| YAML | mit | alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf |
c24afe6d6839786a7624c28fb3c180716d1b2cb1 | ansible/kolla-host.yml | ansible/kolla-host.yml | ---
- name: Apply role baremetal
hosts: baremetal
gather_facts: no
roles:
- { role: baremetal,
tags: baremetal }
| ---
# NOTE(awiddersheim): Gather facts for all hosts as a
# first step since several plays below require them when
# building their configurations. The below 'gather_facts'
# set to 'false' is a bit confusing but this is to avoid
# Ansible gathering facts twice.
- name: Gather facts for all hosts
hosts: all
serial: '{{ serial|default("0") }}'
gather_facts: false
tasks:
- setup:
tags: always
# NOTE(pbourke): This case covers deploying subsets of hosts using --limit. The
# limit arg will cause the first play to gather facts only about that node,
# meaning facts such as IP addresses for rabbitmq nodes etc. will be undefined
# in the case of adding a single compute node.
# We don't want to add the delegate parameters to the above play as it will
# result in ((num_nodes-1)^2) number of SSHs when running for all nodes
# which can be very inefficient.
- name: Gather facts for all hosts (if using --limit)
hosts: all
serial: '{{ serial|default("0") }}'
gather_facts: false
tasks:
- setup:
delegate_facts: True
delegate_to: "{{ item }}"
with_items: "{{ groups['all'] }}"
when:
- (ansible_play_batch | length) != (groups['all'] | length)
- name: Apply role baremetal
hosts: baremetal
gather_facts: no
roles:
- { role: baremetal,
tags: baremetal }
| Enable use of --limit when using bootstrap-servers | Enable use of --limit when using bootstrap-servers
The ansible/kolla-host.yml playbook failed when called with a --limit
flag.
This was due to the fact that only the facts of the subset of hosts
were gathered but the "Generate /etc/hosts for all of the nodes" task
is using the ansible_<IFACE>.ipv4.address variable of all hosts.
The code for this fix is copied from the site.yml playbook
where it was used for the same reason.
Change-Id: I7e70caf750506ad8ab36ec024bd9647dd733fbd0
Closes-Bug: #1713725
| YAML | apache-2.0 | dardelean/kolla-ansible,dardelean/kolla-ansible,dardelean/kolla-ansible |
87c6aaad73ffe301e98be46fdad4497c4c5fcfe4 | app/config/routing.yml | app/config/routing.yml | app:
resource: "@AppBundle/Resources/config/routing.yml"
prefix: /
abc:
resource: "@AbcBundle/Resources/config/routing.yml"
prefix: /
| app:
resource: "@AppBundle/Resources/config/routing.yml"
prefix: /
abc:
resource: "@AbcBundle/Resources/config/routing.yml"
prefix: /
| Check implementation of SSH key after authentication | Check implementation of SSH key after authentication
| YAML | mit | HughChadwick/sheetMusic |
fbb50c418884d80d44815366f2fc0e773744ba2f | contrib/packs/aliases/pack_install.yaml | contrib/packs/aliases/pack_install.yaml | ---
name: "pack_install"
action_ref: "packs.install"
pack: "packs"
description: "Install/upgrade StackStorm packs (pack = name or git URL, gitref = tag/branch/commit)."
formats:
- display: "pack install <pack>[,<pack>]"
- display: "pack install <pack>=<gitref>[,<pack>=<gitref>]"
representation:
- "pack install {{ packs }}"
ack:
enabled: true
append_url: false
format: "Installing the requested pack(s) for you."
result:
format: |
{% if execution.status == "succeeded" %}
Successful deployment of *{{ execution.parameters.packs | join('*, *') }}* pack{% if execution.parameters.packs | length > 1 %}s{% endif %}!
{% else %}
Failed to install `{{ execution.parameters.packs | join('`, `') }}` pack{% if execution.parameters.packs | length > 1 %}s{% endif %}.{~}
Please check `{{ execution.id }}` for details.
{% endif %}
| ---
name: "pack_install"
action_ref: "packs.install"
pack: "packs"
description: "Install/upgrade StackStorm packs."
formats:
- display: "pack install <pack>[,<pack>]"
- display: "pack install <gitUrl>[,<gitUrl>]"
representation:
- "pack install {{ packs }}"
ack:
enabled: true
append_url: false
format: "Installing the requested pack(s) for you."
result:
format: |
{% if execution.status == "succeeded" %}
Successful deployment of *{{ execution.parameters.packs | join('*, *') }}* pack{% if execution.parameters.packs | length > 1 %}s{% endif %}!
{% else %}
Failed to install `{{ execution.parameters.packs | join('`, `') }}` pack{% if execution.parameters.packs | length > 1 %}s{% endif %}.{~}
Please check `{{ execution.id }}` for details.
{% endif %}
| Fix pack install Alias formats | Fix pack install Alias formats
'=' is not acceptable in Action Alias as separator between pack=version
| YAML | apache-2.0 | Plexxi/st2,StackStorm/st2,nzlosh/st2,Plexxi/st2,StackStorm/st2,Plexxi/st2,peak6/st2,lakshmi-kannan/st2,lakshmi-kannan/st2,nzlosh/st2,lakshmi-kannan/st2,tonybaloney/st2,nzlosh/st2,peak6/st2,tonybaloney/st2,StackStorm/st2,tonybaloney/st2,peak6/st2,Plexxi/st2,StackStorm/st2,nzlosh/st2 |
3cd00481bc29497bf9197b4abdcf3b0e000e78fd | .binstar.yml | .binstar.yml | package: nb_anacondacloud
platform:
- linux-64
- osx-64
- win-64
engine:
- python=2.7
- python=3.4
- python=3.5
script:
- conda build conda.recipe -c javascript
build_targets: conda
| package: nb_anacondacloud
platform:
- linux-64
- linux-32
- osx-64
- win-64
- win-32
engine:
- python=2.7
- python=3.4
- python=3.5
script:
- conda build conda.recipe
build_targets: conda
| Use defaults channel for nodejs | Use defaults channel for nodejs | YAML | bsd-2-clause | Anaconda-Server/nb_anacondacloud,Anaconda-Platform/nb_anacondacloud,Anaconda-Platform/nb_anacondacloud,Anaconda-Server/nb_anacondacloud,Anaconda-Server/nb_anacondacloud |
975650fad6639e86b881e011bd9eea5a601e12f3 | .github/workflows/CheckMainFile.yml | .github/workflows/CheckMainFile.yml | name: Check build of CookieMonster.js
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check if CookieMonster.js is built correctly
run: |
npm install
terser ./src/Header.js ./src/Cache.js ./src/Config.js ./src/Data.js ./src/Disp.js ./src/Main.js ./src/Sim.js ./src/Footer.js -o CookieMonsterTest.js
if cmp CookieMonster.js CookieMonsterTest.js; then
echo '### SUCCESS: CookieMonster is correctly built! ###'
else
echo '### WARNING: CookieMonster.js does not seem to be correct. Make sure to run "npm run build" after saving all your changes! ###'
exit 1
fi
| name: Check build of CookieMonster.js
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check if CookieMonster.js is built correctly
run: |
npm install
npx terser ./src/Header.js ./src/Cache.js ./src/Config.js ./src/Data.js ./src/Disp.js ./src/Main.js ./src/Sim.js ./src/Footer.js -o CookieMonsterTest.js
if cmp CookieMonster.js CookieMonsterTest.js; then
echo '### SUCCESS: CookieMonster is correctly built! ###'
else
echo '### WARNING: CookieMonster.js does not seem to be correct. Make sure to run "npm run build" after saving all your changes! ###'
exit 1
fi
| Make terser run from npx | Make terser run from npx
| YAML | mit | Aktanusa/CookieMonster,Aktanusa/CookieMonster |
bf2107438518014bca7d56eb9a61d6000542ecdb | .github/workflows/linux_mkspecs.yml | .github/workflows/linux_mkspecs.yml | name: Linux C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Linux-mkspecs:
uses: steinwurf/linux-mkspecs-action/.github/workflows/action.yml@6.0.0
with:
extra_resolve_options: ${{ github.events.inputs.extra_resolve_options }}
| name: Linux C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Linux-mkspecs:
uses: steinwurf/linux-mkspecs-action/.github/workflows/action.yml@4.0.0
with:
extra_resolve_options: ${{ github.events.inputs.extra_resolve_options }}
| Update Linux C++ make-specs to new version 4.0.0 | Update Linux C++ make-specs to new version 4.0.0 | YAML | bsd-3-clause | steinwurf/stub,steinwurf/stub |
85eef3af171993005300dea52bdb05c164680c2b | .github/workflows/windows_cmake.yml | .github/workflows/windows_cmake.yml | name: Windows Cmake
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
env:
EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }}
jobs:
Windows-cmake:
name: Windows Cmake
uses: steinwurf/windows-cmake-action/.github/workflows/action.yml@2.0.0
with:
extra_resolve_options: $EXTRA_RESOLVE_OPTIONS
| name: Windows Cmake
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
env:
EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }}
jobs:
Windows-cmake:
name: Windows Cmake
uses: steinwurf/windows-cmake-action/.github/workflows/action.yml@3.0.0
with:
extra_resolve_options: $EXTRA_RESOLVE_OPTIONS
| Update Windows Cmake to new version 3.0.0 | Update Windows Cmake to new version 3.0.0 | YAML | bsd-3-clause | steinwurf/bourne,steinwurf/bourne |
4102bd07212eeb84e18e7bdf2bcd3d3130377289 | roles/kubernetes/tasks/main.yml | roles/kubernetes/tasks/main.yml | ---
- name: Install kubernetes
yum: pkg=kubernetes enablerepo=virt7-testing state=latest
notify:
- restart daemons
- name: write the global config file
template: src=config.j2 dest=/etc/kubernetes/config
notify:
- restart daemons
- name: collect facts about the version of kubernetes
kube-caps:
| ---
- name: Install kubernetes
yum: pkg=kubernetes enablerepo=virt7-testing state=latest
notify:
- restart daemons
- name: write the global config file
template: src=config.j2 dest=/etc/kubernetes/config
notify:
- restart daemons
| Fix task that uses absent script | Fix task that uses absent script
| YAML | apache-2.0 | kenjones-cisco/kubernetes-ansible,CiscoCloud/kubernetes-ansible,xshyamx/mantl-kubernetes,ldejager/kubernetes-ansible,ldejager/kubernetes-ansible,CiscoCloud/mantl-kubernetes,kenjones-cisco/kubernetes-ansible,xshyamx/mantl-kubernetes,CiscoCloud/mantl-kubernetes,CiscoCloud/kubernetes-ansible,CiscoCloud/kubernetes-ansible,xshyamx/mantl-kubernetes,CiscoCloud/mantl-kubernetes |
9ab5cd9f427ff25e65d14ddcd88b23d2e963d006 | charts/terra-argocd-env/Chart.yaml | charts/terra-argocd-env/Chart.yaml | apiVersion: v2
name: terra-argocd-apps
description: A Helm chart for generating environment-wide ArgoCD resources for Terra environments
type: application
version: 0.0.2
dependencies:
- name: terra-argocd-templates
version: 0.0.1
repository: https://broadinstitute.github.io/terra-helm
| apiVersion: v2
name: terra-argocd-env
description: A Helm chart for generating environment-wide ArgoCD resources for Terra environments
type: application
version: 0.0.2
dependencies:
- name: terra-argocd-templates
version: 0.0.1
repository: https://broadinstitute.github.io/terra-helm
| Fix typo in chart name | Fix typo in chart name
| YAML | bsd-3-clause | broadinstitute/terra-helm,broadinstitute/terra-helm,broadinstitute/terra-helm |
432ff06957b2042f9585ef5694cdd6b9b4fc0fdf | azure-pipelines.yml | azure-pipelines.yml | variables:
buildConfiguration: 'Release'
artifactName: 'webapiDrop'
steps:
- task: DotNetCoreInstaller@0
displayName: 'Use .NET Core SDK 2.1.403'
inputs:
version: 2.1.403
- task: DotNetCoreCLI@2
displayName: 'Restore dependencies'
inputs:
command: restore
verbosityRestore: minimal
arguments: '--no-cache'
- task: DotNetCoreCLI@2
displayName: 'Build solution'
inputs:
command: build
arguments: '--configuration $(buildConfiguration) --no-restore --no-incremental'
# - task: DotNetCoreCLI@2
# displayName: 'Run tests'
# inputs:
# command: test
# projects: '**/*.Tests/*.csproj'
# arguments: '--configuration $(buildConfiguration) --no-build'
- task: DotNetCoreCLI@2
displayName: 'Publish solution'
inputs:
command: publish
projects: 'TestWebApi/TestWebApi.csproj'
publishWebProjects: false
zipAfterPublish: false
arguments: '--configuration $(buildConfiguration) --no-build --output $(build.artifactstagingdirectory)'
# - task: PublishSymbols@2
# displayName: 'Publish symbols path'
# inputs:
# SearchPattern: '$(build.artifactstagingdirectory)/**/*.pdb'
# PublishSymbols: false
# continueOnError: true
- task: PublishBuildArtifacts@1
displayName: 'Publish artifact'
inputs:
PathtoPublish: '$(build.artifactstagingdirectory)'
ArtifactName: '$(artifactName)'
| variables:
buildConfiguration: 'Release'
artifactName: 'webapiDrop'
steps:
- task: DotNetCoreInstaller@0
displayName: 'Use .NET Core SDK 2.1.403'
inputs:
version: 2.1.403
- task: DotNetCoreCLI@2
displayName: 'Restore dependencies'
inputs:
command: restore
verbosityRestore: minimal
arguments: '--no-cache'
- task: DotNetCoreCLI@2
displayName: 'Build solution'
inputs:
command: build
arguments: '--configuration $(buildConfiguration) --no-restore --no-incremental --version-suffix $(Build.BuildNumber)'
# - task: DotNetCoreCLI@2
# displayName: 'Run tests'
# inputs:
# command: test
# projects: '**/*.Tests/*.csproj'
# arguments: '--configuration $(buildConfiguration) --no-build'
- task: DotNetCoreCLI@2
displayName: 'Publish solution'
inputs:
command: publish
projects: 'TestWebApi/TestWebApi.csproj'
publishWebProjects: false
zipAfterPublish: false
arguments: '--configuration $(buildConfiguration) --no-build --output $(build.artifactstagingdirectory)'
# - task: PublishSymbols@2
# displayName: 'Publish symbols path'
# inputs:
# SearchPattern: '$(build.artifactstagingdirectory)/**/*.pdb'
# PublishSymbols: false
# continueOnError: true
- task: PublishBuildArtifacts@1
displayName: 'Publish artifact'
inputs:
PathtoPublish: '$(build.artifactstagingdirectory)'
ArtifactName: '$(artifactName)'
| Build numbers in azure pipeline. | Build numbers in azure pipeline.
| YAML | apache-2.0 | eserozvataf/tassle |
d5fc288ed47d13979bb62e292e8c44bd1ca53bc9 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:6541a5bd51fd81f362dac9dd78cb9a5fc1d08bb46691bdca24e98558eba48276
- image: circleci/mongo:3@sha256:01437c21a1bd1b9346ba4a0fabf95b9bd5b37b3764b0d585db87003dd4e097fe
steps:
- checkout
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn codecov
| version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:41517eb04d4fe284b93ae3a132a8dca0e2433ca7043d8a0bf809d3fb10a6a416
- image: circleci/mongo:3@sha256:01437c21a1bd1b9346ba4a0fabf95b9bd5b37b3764b0d585db87003dd4e097fe
steps:
- checkout
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn codecov
| Update circleci/node:8 Docker digest to 41517e | Update circleci/node:8 Docker digest to 41517e | YAML | mit | js-accounts/accounts |
ea52b6a294bc499804a9971d4f57e7c21cc370e6 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: /tmp/vendored
docker:
- image: clburlison/pycodestyle:latest
steps:
- checkout
- run: pycodestyle --exclude=_src,_patch,payload,build .
| version: 2
jobs:
build:
working_directory: /tmp/vendored
docker:
- image: clburlison/pylint:py2-alpine
steps:
- checkout
- run: flake8 --exclude=_src,_patch,payload,build .
| Change CI to use flake8 | Change CI to use flake8
| YAML | mit | clburlison/vendored,clburlison/vendored |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.