Code Monkey home page Code Monkey logo

pr-commenter-action's Introduction

PR Commenter Action

This GitHub action posts comments on a PR that can vary depending on which files are being changed in the PR.

Getting Started

Create workflow

Create your workflow file .github/workflows/pr-commenter.yml as follows.

name: "PR Commenter"
on:
  - pull_request_target

jobs:
  pr-comment:
    runs-on: ubuntu-latest
    steps:
      - uses: exercism/[email protected]
        with:
          github-token: "${{ github.token }}"
          config-file: ".github/pr-commenter.yml"

Create configuration file

Create your action configuration file .github/pr-commenter.yml as follows.

comment:
  on-update: recreate
  header: |
    Thank you for contributing to this repository :tada:.

  footer: |
    ---
    Automated comment created by [PR Commenter](https://github.com/exercism/pr-commenter-action) :robot:.

  snippets:
    - id: any-markdown-file-changed
      files:
        - '*.md'
        - '**/*.md'
      body: |
        It looks like you're changing a Markdown file.
        Make sure your changes follow our [language guidelines](some-link) when writing documentation.

Reference

Workflow inputs

github-token

Auth token used to manage issues or pull requests.

Required: true

Default: ${{ github.token }}

config-file

Required: true

Default: .github/pr-commenter.yml

Configuration file

comment.on-update

Dictates what should happen if a comment was already created on this PR, but more changes were pushed to the PR and the comment needs to change.

  • recreate - delete the old comment and create a new one
  • edit - edit the old comment
  • nothing - leave the old comment unchanged

Required: true

Default: recreate

comment.header

An optional text to be included at the beginning of each comment.

Required: false

comment.footer

An optional text to be included at the end of each comment.

Required: false

comment.snippets

A list of comment snippet configurations. At least one snippet is required. Note that a PR comment will only be created if at least one of the snippets match, even if comment.header and/or comment.footer are given.

Required: true

comment.snippets[].id

A string consisting of letters, numbers, -, and _ or a Mustache template that evaluates to such a string.

Snippet ids are used to check whether a comment's content changed. If you're using a template variable in the snippets's body and you want to recreate the whole comment when that variable changes value, use it in the snippet's id too.

Required: true

comment.snippets[].body

The text to be included in the PR comment.

Required: true

Templates

Comment snippet bodies (as well as comment.header and comment.footer) are Mustache templates.

Variables for the template can be provided via the template-variables input which should be a string containing a valid JSON.

You can use the context and expression syntax to assemble the JSON and set-output to calculate data for the template in separate steps.

Example 1
name: "PR Commenter"
on:
  - pull_request_target

jobs:
  pr-comment:
    runs-on: ubuntu-latest
    steps:
      - name: Calculate some template variables
        id: vars
        run: |
          echo ::set-output name=today::"$(date +%d-%m-%Y)"

      - uses: exercism/[email protected]
        with:
          template-variables: |
            {
              "today": "${{ steps.vars.outputs.today }}",
              "prAuthor": "${{ github.event.pull_request.user.login }}",
              "branchNamePrefix": ${{ startsWith(github.event.pull_request.head.ref, 'ref-') }}
            }
comment:
  header: |
    Hi {{ prAuthor }}! Thank you for your contribution.

    {{^branchNamePrefix}}Your branch name doesn't start with the required prefix 'ref-'.{{/branchNamePrefix}}

Note that values such as the PR's title, body, or branch name should be considered unsafe user input.

Example 2

Here's a more complex example of using template variables. Let's say you have a multiline file that changes often, and you want to always include the newest content of the file in the snippet.

To ensure the comment will be recreated when the file changes, use the file's hash in the snippet's id.

To ensure that newline characters are handled correctly, use environment variables instead of job outputs and toJSON.

name: "PR Commenter"
on:
  - pull_request_target

jobs:
  pr-comment:
    runs-on: ubuntu-latest
    steps:
      - name: Set environment variables
        run: |
          IMPORTANT_FILE_CONTENT=$(cat important_file)
          echo "IMPORTANT_FILE_CONTENT<<EOF" >> $GITHUB_ENV
          echo "$IMPORTANT_FILE_CONTENT" >> $GITHUB_ENV
          echo "EOF" >> $GITHUB_ENV

      - uses: exercism/[email protected]
        with:
          template-variables: |
            {
              "importantFileContent": ${{ toJSON(env.IMPORTANT_FILE_CONTENT) }},
              "importnatFileHash": ${{ toJSON(hashFiles('important_file.txt')) }}
            }
comment:
  snippets:
    - id: snippet_{{ importnatFileHash }}}
    - files:
      - 'important_file.txt'
    - body: |
        This is very important:
        {{ importantFileContent }}

comment.snippets[].files

A list of globs (strings) and/or match objects. If at least one file changed in the PR matches at least one of the globs or match objects, this snippet's body will be included in the comment.

Globs

Example:

# any markdown file changed in any directory
comment:
  snippets:
    - id: any-markdown-file-changed
      files:
        - '*.md'
        - '**/*.md'
Match objects

A match object contains the keys any and/or all with a list of globs.

  • all - every file changed in this PR must match every glob in this list
  • any - at least one file changed in this PR must match every glob in this list

Example:

# at least one root-level markdown file changed
# and none of the changed files is the README.md
comment:
  snippets:
    - id: any-markdown-file-changed-but-readme
      files:
        - any: ['*.md']
          all: ['!README.md']

Required: true

comment.glob-options

This GitHub action uses the minimatch library for glob matching. A object with options can be provided under comment.glob-options to modify the behavior of this library. See the list of minimatch options for the list of supported options.

Example:

# Make all globs also match hidden files and directories
comment:
  glob-options:
    dot: true

Development

Setup

  • Install the required NodeJS version as specified in .tool-versions. The recommended way to manage multiple NodeJS versions is to use asdf.
  • Install the dependencies with npm install.
  • Run the tests with npm run test and the linter with npm run lint.

Authors

This library was originally created by @angelikatyborska. It is maintained by @angelikatyborska and the Exercism team. See the GitHub contributors graph for a full list of contributors.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.