
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@codefresh-io/pipeline-autobot
Advanced tools
Component for analyze github repository use github statistic API and generate codefresh steps according repo info.
Examples how use repo analyzer
Run test.js with envs
PASSWORD=****2
REPO_OWNER=codefresh-io
REPO_NAME=pipeline-manager
GIT_CONTEXT=github
https://codefresh-io.github.io/cli/analyzer/
analyzer
.step(clone)
.step(build)
.step(push)
.step(packageJson)
.header(stages)
.enrich(stagesEnricher)
.transform(codefreshYaml)
.resolve()
Transformers - ability to transform from some info to whole yaml file , use cases :
Headers - ability to add some yaml parts before steps key
use cases:
Steps - ability to add some step to generated pipeline, like git clone, build, notifications, etc
Enricher - ability to enrich each step some additional information, like stage for each step
For add new handler you should create .js in related folder (like analyzer.steps)
Each step has as input analyzer.context (you can access from it githup api, credentials, everything that you need)
module.exports = (context) => {
const { repo: { repoOwner, repoName, branch } , git } = context.getContext();
return {
step : {
type: 'git-clone',
description: 'Cloning main repository...',
repo: `${repoOwner}/${repoName}`,
revision: branch,
git
},
key: 'clone',
group: 'clone'
};
};
Where
key - it is step name
group - logical group, like test, linters, etc, will be helpful in future . (For now using it for stages)
FAQs
Generate yaml depend on repo context
We found that @codefresh-io/pipeline-autobot demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.