diff --git a/CHANGELOG.md b/CHANGELOG.md index ba8d908..36a93ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,14 @@ All notable changes to this project are documented here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.0.0] — Unreleased +## [1.0.1] — Unreleased + +### Changed + +- Marketplace display name from **Conviso GitHub Sync Task** to **Sync External Scans with Conviso**. + Workflows keep using `convisoappsec/github-sync-task@v1`. + +## [1.0.0] — 2026-08-10 First release. diff --git a/README.md b/README.md index 42de031..ef13f32 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ Conviso Application Security -# Conviso GitHub Sync Task +# Sync External Scans with Conviso A GitHub Action, written in TypeScript, that associates a project with the Conviso GraphQL API. It triggers a sync to Conviso Platform for a project held by an external scanner (Fortify, @@ -9,25 +9,27 @@ repository and branch the scan came from. ## Table of Contents -- [Features](#features) -- [Quick start](#quick-start) -- [Inputs](#inputs) -- [Outputs](#outputs) -- [Usage](#usage) +- [Sync External Scans with Conviso](#sync-external-scans-with-conviso) + - [Table of Contents](#table-of-contents) + - [Features](#features) + - [Quick start](#quick-start) + - [Inputs](#inputs) + - [Outputs](#outputs) + - [Usage](#usage) - [Associating a branch](#associating-a-branch) - [Pull requests](#pull-requests) - [Using the outputs](#using-the-outputs) -- [Prerequisites](#prerequisites) -- [Project structure](#project-structure) -- [Development](#development) + - [Prerequisites](#prerequisites) + - [Project structure](#project-structure) + - [Development](#development) - [Building the bundle](#building-the-bundle) - [Running tests](#running-tests) - [Trying the action locally](#trying-the-action-locally) -- [Publishing](#publishing) + - [Publishing](#publishing) - [Releasing a version](#releasing-a-version) - [Publishing to the GitHub Marketplace](#publishing-to-the-github-marketplace) -- [Contributing](#contributing) -- [License](#license) + - [Contributing](#contributing) + - [License](#license) ## Features diff --git a/action.yml b/action.yml index 910a692..40ff232 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,4 @@ -name: 'Conviso GitHub Sync Task' +name: 'Sync External Scans with Conviso' description: 'Triggers a sync to Conviso Platform for a given project of a scanner (e.g.: Fortify, Checkmarx, Dependency Track).' author: 'Conviso Application Security' diff --git a/docs/publishing-marketplace.md b/docs/publishing-marketplace.md index e97bd18..2290bfb 100644 --- a/docs/publishing-marketplace.md +++ b/docs/publishing-marketplace.md @@ -1,6 +1,6 @@ # Publishing to the GitHub Marketplace -Everything needed to get **Conviso GitHub Sync Task** listed on the +Everything needed to get **Sync External Scans with Conviso** listed on the [GitHub Marketplace](https://github.com/marketplace?type=actions), and to keep it updated afterwards. @@ -52,9 +52,10 @@ in this repository; the rest is account configuration that only a person can do. - [ ] **The repository is public.** Private repositories cannot be listed. - [ ] **The `name` in `action.yml` is unique across the Marketplace.** GitHub rejects a name that another listing already uses, that matches an existing GitHub user or organization, or that - collides with a Marketplace category. `Conviso GitHub Sync Task` is specific enough to be - safe, but the check happens at publish time — if it fails, change `name` in `action.yml` - (the `uses:` reference is the repository path, so renaming does not break consumers). + collides with a Marketplace category. `Sync External Scans with Conviso` is specific enough + to be safe, but the check happens at publish time — if it fails, change `name` in + `action.yml` (the `uses:` reference is the repository path, so renaming does not break + consumers). - [ ] **Two-factor authentication is enabled** for the account that owns the repository. For `convisoappsec`, that means 2FA on the organization; an owner enables it under *Organization settings → Authentication security*. diff --git a/package.json b/package.json index 61dfbc3..c38e8d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "conviso-github-sync-task", - "version": "1.0.0", + "version": "1.0.1", "description": "GitHub Action that triggers a sync to Conviso Platform for a given project of a scanner (e.g.: Fortify, Checkmarx, Dependency Track).", "main": "dist/index.js", "license": "MIT",