Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
mkdir my-runner
cd my-runner
npm install go-cicd
vi app.js
const GoCICDServer = require('go-cicd');
const config = {
namespace: "",//name space for hook router. Eg: "v1" => http://localhost:9119/v1/hooks
log: {
stores: ['file'] // if use stores: ['file'], process logs are write to log file, you can access to file via http://localhost:9119/logs
},
http: {
port: 9191
},
// Multi project per hook
projects: [
{
git_http_url: 'https://github.com/hunglsxx/gocicd.git', // your git
git_branch: 'master', // your git branch
dir: '/var/www/html/cicd' //your code dir
},
]
};
var goci = new GoCICDServer(config);
goci.run();
node app.js
Add your hook to gitlab webhook:
http://localhost:9191/hooks
Copy yml template file to your project dir and change file name to .go-ci.yml
cp node_modules/go-cicd/go-ci.template.yml your/project/dir/.go-ci.yml
Define your scripts in .go-ci.yml by yourself.
FAQs
A webhook for gitlab to CICD
We found that go-cicd demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.