2021-09-12 13:16:43 +00:00
---
2023-08-17 11:22:46 +00:00
title: wp-github-comment
2021-09-12 13:16:43 +00:00
---
2023-08-17 11:33:30 +00:00
[![Build Status ](https://ci.thegeeklab.de/api/badges/thegeeklab/wp-github-comment/status.svg )](https://ci.thegeeklab.de/repos/thegeeklab/wp-github-comment)
2023-08-17 11:22:46 +00:00
[![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)
2021-09-12 13:16:43 +00:00
2023-08-17 11:22:46 +00:00
Woodpecker CI plugin to add comments to GitHub Issues and Pull Requests.
2021-09-12 13:16:43 +00:00
<!-- prettier - ignore - start -->
<!-- spellchecker - disable -->
{{< toc > }}
<!-- spellchecker - enable -->
<!-- prettier - ignore - end -->
2022-05-29 20:06:59 +00:00
## Usage
2023-08-17 11:41:15 +00:00
{{< hint type = important > }}
2023-08-17 13:12:59 +00:00
Due to the nature of this plugin, a secret for the GitHub token may need to be exposed for pull request events in Woodpecker. Please be careful with this option, as a malicious actor may submit a pull request that exposes your secrets. Do not disclose secrets to pull requests in public environments without further protection.
2023-08-17 11:41:15 +00:00
{{< / hint > }}
2023-02-08 09:13:43 +00:00
{{< hint type = note > }}
Only pull request events are supported by this plugin. Running the plugin on other events will result in an error.
{{< / hint > }}
2022-05-29 20:06:59 +00:00
```YAML
steps:
- name: pr-comment
2024-01-03 22:10:08 +00:00
image: quay.io/thegeeklab/wp-github-comment
2022-05-29 20:06:59 +00:00
settings:
2024-03-12 19:43:36 +00:00
api_key: ghp_randomstring
2022-05-29 20:06:59 +00:00
message: "CI run completed successfully"
update: true
```
### Parameters
<!-- prettier - ignore - start -->
<!-- spellchecker - disable -->
2023-08-17 11:22:46 +00:00
{{< propertylist name = wp-github-comment.data sort = name > }}
2022-05-29 20:06:59 +00:00
<!-- spellchecker - enable -->
<!-- prettier - ignore - end -->
2021-09-12 13:16:43 +00:00
## Build
Build the binary with the following command:
2023-08-17 11:22:46 +00:00
```shell
2022-04-25 10:53:45 +00:00
make build
2021-09-12 13:16:43 +00:00
```
2023-08-17 11:22:46 +00:00
Build the container image with the following command:
2021-09-12 13:16:43 +00:00
2023-08-17 11:22:46 +00:00
```shell
docker build --file Containerfile.multiarch --tag thegeeklab/wp-github-comment .
2021-09-12 13:16:43 +00:00
```
2022-05-29 20:06:59 +00:00
## Test
2021-09-12 13:16:43 +00:00
```Shell
docker run --rm \
2023-08-17 11:22:46 +00:00
-e CI_PIPELINE_EVENT=pull_request \
-e CI_REPO_OWNER=octocat \
-e CI_REPO_NAME=foo \
-e CI_COMMIT_PULL_REQUEST=1
2024-03-12 19:43:36 +00:00
-e PLUGIN_API_KEY=ghp_randomstring \
2021-09-12 13:16:43 +00:00
-e PLUGIN_MESSAGE="Demo comment" \
2023-08-17 11:22:46 +00:00
-v $(pwd):/build:z \
-w /build \
thegeeklab/wp-github-comment
2021-09-12 13:16:43 +00:00
```