--- title: wp-github-comment --- [![Build Status](https://img.shields.io/wp/build/thegeeklab/wp-github-comment?logo=wp&server=https%3A%2F%2Fwp.thegeeklab.de)](https://wp.thegeeklab.de/thegeeklab/wp-github-comment) [![Docker Hub](https://img.shields.io/badge/dockerhub-latest-blue.svg?logo=docker&logoColor=white)](https://hub.docker.com/r/thegeeklab/wp-github-comment) [![Quay.io](https://img.shields.io/badge/quay-latest-blue.svg?logo=docker&logoColor=white)](https://quay.io/repository/thegeeklab/wp-github-comment) [![Go Report Card](https://goreportcard.com/badge/github.com/thegeeklab/wp-github-comment)](https://goreportcard.com/report/github.com/thegeeklab/wp-github-comment) [![GitHub contributors](https://img.shields.io/github/contributors/thegeeklab/wp-github-comment)](https://github.com/thegeeklab/wp-github-comment/graphs/contributors) [![Source: GitHub](https://img.shields.io/badge/source-github-blue.svg?logo=github&logoColor=white)](https://github.com/thegeeklab/wp-github-comment) [![License: MIT](https://img.shields.io/github/license/thegeeklab/wp-github-comment)](https://github.com/thegeeklab/wp-github-comment/blob/main/LICENSE) Woodpecker CI plugin to add comments to GitHub Issues and Pull Requests. {{< toc >}} ## Usage {{< hint type=note >}} Only pull request events are supported by this plugin. Running the plugin on other events will result in an error. {{< /hint >}} ```YAML kind: pipeline name: default steps: - name: pr-comment image: thegeeklab/wp-github-comment settings: api_key: ghp_3LbMg9Kncpdkhjp3bh3dMnKNXLjVMTsXk4sM message: "CI run completed successfully" update: true ``` ### Parameters {{< propertylist name=wp-github-comment.data sort=name >}} ## Build Build the binary with the following command: ```shell make build ``` Build the container image with the following command: ```shell docker build --file Containerfile.multiarch --tag thegeeklab/wp-github-comment . ``` ## Test ```Shell docker run --rm \ -e CI_PIPELINE_EVENT=pull_request \ -e CI_REPO_OWNER=octocat \ -e CI_REPO_NAME=foo \ -e CI_COMMIT_PULL_REQUEST=1 -e PLUGIN_API_KEY=abc123 \ -e PLUGIN_MESSAGE="Demo comment" \ -v $(pwd):/build:z \ -w /build \ thegeeklab/wp-github-comment ```