diff --git a/plugins/jenkins/README.md b/plugins/jenkins/README.md
index 2a0ec451c8..d21fee2b8a 100644
--- a/plugins/jenkins/README.md
+++ b/plugins/jenkins/README.md
@@ -5,7 +5,7 @@ Website: [https://jenkins.io/](https://jenkins.io/)
-
+
## Setup
1. If you have a standalone app (you didn't clone this repo), then do
@@ -97,3 +97,30 @@ spec:
- Only works with organization folder projects backed by GitHub
- No pagination support currently, limited to 50 projects - don't run this on a
Jenkins instance with lots of builds
+
+## Modify Columns of EntityJenkinsContent
+
+- now you can pass down column props to show the columns/metadata as per your use case.
+
+```tsx
+export const generatedColumns: TableColumn[] = [
+ {
+ title: 'Timestamp',
+ field: 'lastBuild.timestamp',
+ render: (row: Partial) => (
+ <>
+
+ {`
+ ${new Date(row.lastBuild?.timestamp).toLocaleDateString()}
+ ${new Date(row.lastBuild?.timestamp).toLocaleTimeString()}
+ `}
+
+ >
+ ),
+ },
+]
+
+// ...
+
+// ...
+```
diff --git a/plugins/jenkins/src/assets/dynamic-columns.png b/plugins/jenkins/src/assets/dynamic-columns.png
new file mode 100644
index 0000000000..1a85257403
Binary files /dev/null and b/plugins/jenkins/src/assets/dynamic-columns.png differ