https://github.com/bufferapp/github-action-bufferbot-helper
A simple GitHub action that automatically adds helpful context to PRs.
https://github.com/bufferapp/github-action-bufferbot-helper
Last synced: 3 months ago
JSON representation
A simple GitHub action that automatically adds helpful context to PRs.
- Host: GitHub
- URL: https://github.com/bufferapp/github-action-bufferbot-helper
- Owner: bufferapp
- Created: 2020-02-05T05:39:48.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-18T19:21:48.000Z (over 3 years ago)
- Last Synced: 2025-02-21T07:27:52.169Z (11 months ago)
- Language: JavaScript
- Size: 258 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bufferbot Helper
A simple [GitHub Action](https://help.github.com/en/actions/automating-your-workflow-with-github-actions) for Bufferbot to add helpful context and links to your PRs.
## How to use
Here's an example using this to comment on PRs with helpful links and context:
```yml
name: Bufferbot Helper
on:
pull_request:
types: [opened]
branches:
- master
jobs:
pr_comment:
runs-on: ubuntu-latest
name: PR Comment
steps:
- uses: bufferapp/github-action-bufferbot-helper@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
action: "pr-comment"
staging-url-template: "https://{{placeholder}}-publish.dev.buffer.com"
service-name: "buffer-publish"
```