From ec9ae84c921fe17b77ba51fa9c5557d459b42d8e Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 19 Aug 2023 15:54:37 +0200 Subject: [PATCH] use consistent wording (#8) --- .github/settings.yml | 2 +- .woodpecker/docs.yml | 6 +++--- README.md | 4 ++-- _docs/content/_index.md | 2 +- cmd/wp-git-action/main.go | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/settings.yml b/.github/settings.yml index f87e773..c9f223f 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -1,6 +1,6 @@ repository: name: wp-git-action - description: Woodpecker CI plugin to execute git actions + description: Woodpecker CI plugin to perform git actions homepage: https://wp-plugin-index.geekdocs.de/plugins/wp-git-action topics: woodpecker-ci, woodpecker, woodpecker-plugin diff --git a/.woodpecker/docs.yml b/.woodpecker/docs.yml index 6558efa..e3fed07 100644 --- a/.woodpecker/docs.yml +++ b/.woodpecker/docs.yml @@ -40,12 +40,12 @@ steps: image: docker.io/chko/docker-pushrm:1 secrets: - source: docker_password - target: DOCKER_PASS + target: DOCKER_PASS - source: docker_username - target: DOCKER_USER + target: DOCKER_USER environment: PUSHRM_FILE: README.md - PUSHRM_SHORT: Woodpecker CI plugin to execute git actions + PUSHRM_SHORT: Woodpecker CI plugin to perform git actions PUSHRM_TARGET: ${CI_REPO} when: - event: [push, manual] diff --git a/README.md b/README.md index 34e7389..92ad784 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # wp-git-action -Woodpecker CI plugin to execute git actions +Woodpecker CI plugin to perform git actions [![Build Status](https://ci.thegeeklab.de/api/badges/thegeeklab/wp-git-action/status.svg)](https://ci.thegeeklab.de/repos/thegeeklab/wp-git-action) [![Docker Hub](https://img.shields.io/badge/dockerhub-latest-blue.svg?logo=docker&logoColor=white)](https://hub.docker.com/r/thegeeklab/wp-git-action) @@ -10,7 +10,7 @@ Woodpecker CI plugin to execute git actions [![Source: GitHub](https://img.shields.io/badge/source-github-blue.svg?logo=github&logoColor=white)](https://github.com/thegeeklab/wp-git-action) [![License: Apache-2.0](https://img.shields.io/github/license/thegeeklab/wp-git-action)](https://github.com/thegeeklab/wp-git-action/blob/main/LICENSE) -Woodpecker CI plugin to execute git actions. You can find the full documentation at [https://wp-plugin-index.geekdocs.de](https://wp-plugin-index.geekdocs.de/plugins/wp-git-action). +Woodpecker CI plugin to perform git actions. You can find the full documentation at [https://wp-plugin-index.geekdocs.de](https://wp-plugin-index.geekdocs.de/plugins/wp-git-action). ## Contributors diff --git a/_docs/content/_index.md b/_docs/content/_index.md index dd4602c..2403df5 100644 --- a/_docs/content/_index.md +++ b/_docs/content/_index.md @@ -10,7 +10,7 @@ title: wp-git-action [![Source: GitHub](https://img.shields.io/badge/source-github-blue.svg?logo=github&logoColor=white)](https://github.com/thegeeklab/wp-git-action) [![License: MIT](https://img.shields.io/github/license/thegeeklab/wp-git-action)](https://github.com/thegeeklab/wp-git-action/blob/main/LICENSE) -Woodpecker CI plugin to execute git actions. +Woodpecker CI plugin to perform git actions. diff --git a/cmd/wp-git-action/main.go b/cmd/wp-git-action/main.go index a65e17d..25bf344 100644 --- a/cmd/wp-git-action/main.go +++ b/cmd/wp-git-action/main.go @@ -17,7 +17,7 @@ func main() { settings := &plugin.Settings{} options := wp.Options{ Name: "wp-git-action", - Description: "Perform git operations.", + Description: "Perform git actions.", Version: BuildVersion, VersionMetadata: fmt.Sprintf("date=%s", BuildDate), Flags: settingsFlags(settings, wp.FlagsPluginCategory),