Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions content/en/docs/plugins/autodiscovery/bazel.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: "Bazel"
description: "Discover Bazel update"
lead: "kind: bazel"
draft: false
images: []
menu:
docs:
parent: "plugin-autodiscovery"
weight: 130
toc: true
plugins:
- autodiscovery
---

== Description

The `bazel` Autodiscovery plugin allows to automatically search and update content in Bazel configuration file.

=== Manifests
==== Parameters

{{< autodiscoveryparameters "bazel" >}}

==== Example

[source,yaml]
----
autodiscovery:
crawlers:
bazel:
----

33 changes: 33 additions & 0 deletions content/en/docs/plugins/autodiscovery/woodpecker.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: "Woodpecker"
description: "Woodpecker CI/CD autodiscovery "
lead: "kind: woodpecker"
draft: false
images: []
menu:
docs:
parent: "plugin-autodiscovery"
weight: 130
toc: true
plugins:
- autodiscovery
---

== Description

The `woodpecker` Autodiscovery plugin allows to automatically search and update content in Woodpecker CI/CD configuration file.

=== Manifests
==== Parameters

{{< autodiscoveryparameters "woodpecker" >}}

==== Example

[source,yaml]
----
autodiscovery:
crawlers:
woodpecker:
----

57 changes: 57 additions & 0 deletions content/en/docs/plugins/resource/bazelmod.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
---
title: Bazelmod
description: "Manipulate bazelmod information"
lead: "kind: bazelmod"
date: 2026-02-02T12:00:00+02:00
draft: false
images: []
menu:
docs:
parent: "plugin-resource"
toc: true
plugins:
- source
- condition
- target
---
// <!-- Required for asciidoctor -->
:toc:
// Set toclevels to be at least your hugo [markup.tableOfContents.endLevel] config key
:toclevels: 4

[cols="1^,1^,1^",options=header]
|===
| source | condition | target
| &#10004; | &#10004; | &#10004;
|===

== Description

**source**

The Bazelmod "source" retrieves an information from a bazelmod file.

**condition**

The Bazelmod "condition" tests that an information exist in a bazelmod file.

**target**

The Bazelmod "target" ensures that a bazelmod file content a specific value at

== Parameters

{{< resourceparameters "sources" "bazelmod" >}}

== Example

[source,yaml]
----
targets:
rules_python:
name: Bump Bazel module rules_python
kind: bazelmod
spec:
file: project2/MODULE.bazel
module: rules_python
----
58 changes: 58 additions & 0 deletions content/en/docs/plugins/resource/bazelregistry.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
---
title: Bazelregistry
description: "Manipulate bazelregistry information"
lead: "kind: bazelregistry"
date: 2026-02-02T12:00:00+02:00
draft: false
images: []
menu:
docs:
parent: "plugin-resource"
toc: true
plugins:
- source
- condition
---
// <!-- Required for asciidoctor -->
:toc:
// Set toclevels to be at least your hugo [markup.tableOfContents.endLevel] config key
:toclevels: 4

[cols="1^,1^,1^",options=header]
|===
| source | condition | target
| &#10004; | &#10004; | &#10007;
|===

== Description

**source**

The Bazelregistry "source" retrieves an information from a bazelregistry file.

**condition**

The Bazelregistry "condition" tests that an information exist in a bazelregistry file.

**target**

Not supported. Feel free to open an issue if you want to see this implemented.

== Parameters

{{< resourceparameters "sources" "bazelregistry" >}}

== Example

[source,yaml]
----
sources:
rules_python:
name: Get latest version of Bazel module rules_python
kind: bazelregistry
spec:
module: rules_python
versionfilter:
kind: semver
pattern: '>=0.25.0'
----
Loading