Commit a973ccb1 authored by Aurelien's avatar Aurelien
Browse files

Merge branch '165-add-an-image-in-the-first-line-of-stages-tables-in-index' into 'latest'

Resolve "Add an image in the first line of stages tables in index"

Closes #165

See merge request r2devops/hub!83
parents 60b74a6c 454b7a96
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ Jobs index. They are sorted using the [hub default stages](/use-the-hub#stages).

## 🔎 Static tests

| Name | Description |
| Name <img width=200/> | Description |
| ---- | ----------- |
{% for job in index["static_tests"] -%}
  | {% if job.icon is defined -%} {{ job.icon }} {% endif %}[{{- job.name }}](static_tests/{{ job.name }}/) | {{ job.description }} |
@@ -12,7 +12,7 @@ Jobs index. They are sorted using the [hub default stages](/use-the-hub#stages).

## 📦 Build

| Name | Description |
| Name <img width=220/> | Description |
| ---- | ----------- |
{% for job in index["build"] -%}
  | {% if job.icon is defined -%} {{ job.icon }} {% endif %}[{{- job.name }}](build/{{ job.name }}/) | {{ job.description }} |
@@ -20,7 +20,7 @@ Jobs index. They are sorted using the [hub default stages](/use-the-hub#stages).

## 🛡 Dynamic tests

| Name | Description |
| Name <img width=220/> | Description |
| ---- | ----------- |
{% for job in index["dynamic_tests"] -%}
  | {% if job.icon is defined -%} {{ job.icon }} {% endif %}[{{- job.name }}](dynamic_tests/{{ job.name }}/) | {{ job.description }} |
@@ -28,7 +28,7 @@ Jobs index. They are sorted using the [hub default stages](/use-the-hub#stages).

## 🙋 Review

| Name | Description |
| Name <img width=180/> | Description |
| ---- | ----------- |
{% for job in index["review"] -%}
  | {% if job.icon is defined -%} {{ job.icon }} {% endif %}[{{- job.name }}](review/{{ job.name }}/) | {{ job.description }} |
@@ -36,7 +36,7 @@ Jobs index. They are sorted using the [hub default stages](/use-the-hub#stages).

## 🚀 Deployment

| Name | Description |
| Name <img width=170/> | Description |
| ---- | ----------- |
{% for job in index["deployment"] -%}
  | {% if job.icon is defined -%} {{ job.icon }} {% endif %}[{{- job.name }}](deployment/{{ job.name }}/) | {{ job.description }} |
+1 −1
Original line number Diff line number Diff line
name: pages
description: A ready-to-use gitlab pages job to deploy your static pages from gitlab
description: A ready-to-use gitlab pages job to deploy your html static pages from gitlab
default_stage: deployment
icon: 🦊
maintainer: thomasboni
+1 −1
Original line number Diff line number Diff line
name: trivy_image
description: A ready-to-use trivy job to scan your docker images
description: A ready-to-use trivy job to scan your docker images and discover dependency vulnerabilities
default_stage: dynamic_tests
icon: 🧱
maintainer: paulrgnt