Skip to content

Commit 396e11f

Browse files
Merge pull request #86 from codefresh-io/CR-13687
CR-13687
2 parents e12ff07 + 8185f59 commit 396e11f

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Commit that resulted in the image being built
4949
# Documentation - https://docs.github.com/en/actions/security-guides/encrypted-secrets
5050
CF_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5151
52-
# Name of Jira integration
53-
CF_JIRA_INTEGRATION: 'eti-jira'
52+
# Name of Issue Tracking integration
53+
CF_ISSUE_TRACKING_INTEGRATION: 'eti-jira'
5454
5555
# Jira project filter
5656
CF_JIRA_PROJECT_PREFIX: 'CR'

action.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,14 @@ inputs:
2121
description: "verbose output"
2222
required: false
2323
CF_IMAGE:
24-
description: image reported, quay.io/codefresh/newly-built-image:0.0.1
24+
description: "image reported, quay.io/codefresh/newly-built-image:0.0.1"
2525
required: true
2626
CF_CONTAINER_REGISTRY_INTEGRATION:
2727
required: false
28-
description: "list of container integration"
28+
description: "The container registry integration name"
29+
CF_ISSUE_TRACKING_INTEGRATION:
30+
required: false
31+
description: "The issue tracking integration name"
2932
CF_DOCKERHUB_USERNAME:
3033
required: false
3134
description: "Dockerhub username"
@@ -56,11 +59,11 @@ inputs:
5659
# Enrichers
5760
CF_ENRICHERS:
5861
required: false
59-
description: "list of integrations separated by commas: jira, github"
62+
description: "*deprecated* list of integrations separated by commas: Acceptable values are git, jira. ex: 'jira, git'"
6063
# GIT
6164
CF_GIT_PROVIDER:
6265
required: false
63-
description: "Git provider"
66+
description: "The Git provider: Acceptable values are github, gitlab, bitbucket, or bitbucket-server. In case this not provided git credentials will be taken form your runtime git context"
6467
CF_GIT_REPO:
6568
required: false
6669
description: "The GitHub repo to use to enrich"
@@ -123,6 +126,7 @@ runs:
123126
CF_IMAGE: "${{ inputs.CF_IMAGE }}"
124127
CF_VERBOSE: "${{ inputs.CF_VERBOSE }}"
125128
CF_CONTAINER_REGISTRY_INTEGRATION: "${{ inputs.CF_CONTAINER_REGISTRY_INTEGRATION }}"
129+
CF_ISSUE_TRACKING_INTEGRATION: "${{ inputs.CF_ISSUE_TRACKING_INTEGRATION }}"
126130
CF_DOCKERHUB_USERNAME: "${{ inputs.CF_DOCKERHUB_USERNAME }}"
127131
CF_DOCKERHUB_PASSWORD: "${{ inputs.CF_DOCKERHUB_PASSWORD }}"
128132
CF_REGISTRY_USERNAME: "${{ inputs.CF_REGISTRY_USERNAME }}"

service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
name: codefresh-report-image
2-
version: 0.0.157
2+
version: 0.0.158

0 commit comments

Comments
 (0)