Skip to content

Commit e1ceff6

Browse files
Add branding info to action.yml
1 parent 1f7e823 commit e1ceff6

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

action.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
1-
name: 'Dive Action'
2-
description: 'Run Dive to analyze the container image efficiency'
1+
name: "Dive Action"
2+
description: "Run Dive to analyze the container image efficiency"
3+
author: "@yuichielectric"
4+
branding:
5+
icon: "aperture"
6+
color: "green"
37
inputs:
48
image:
5-
description: 'Image to analyze'
9+
description: "Image to analyze"
610
required: true
711
config-file:
8-
description: 'Path to dive config file'
12+
description: "Path to dive config file"
913
required: false
1014
default: ${{ github.workspace }}/.dive.yaml
1115
runs:
12-
using: 'composite'
16+
using: "composite"
1317
steps:
1418
- run: docker run -e CI=true -e DOCKER_API_VERSION=1.37 --rm --mount type=bind,source=${{ inputs.config-file }},target=/.dive-ci -v /var/run/docker.sock:/var/run/docker.sock wagoodman/dive:v0.9 --ci-config /.dive-ci ${{ inputs.image }}
1519
shell: bash

0 commit comments

Comments
 (0)