Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 1.75 KB

README.md

File metadata and controls

56 lines (41 loc) · 1.75 KB

build-test

Comment Failure Action

Add comments for what workflows and jobs failed in pull request.

Demo

Please see quipper#6.

Usage

on:
  workflow_run:
    workflows:
      - your-workflow  # Replace with your test workflow's name
    types: [ completed ]

jobs:
  comment-failure:
    runs-on: ubuntu-latest
    steps:
      - uses: quipper/[email protected]

If you want to use your own personal access token, specify it with api-token:

on:
  workflow_run:
    workflows:
      - your-workflow  # Replace with your test workflow's name
    types: [ completed ]

jobs:
  comment-failure:
    runs-on: ubuntu-latest
    steps:
      - uses: quipper/[email protected]
        with:
          api-token: ${{ secrets.YOUR_GITHUB_TOKEN }} # Replace with your secret's name

Inputs

Name Required Default Description
api-token true ${{ github.token }} GitHub API token granted repo or public_repo

Regarding api-token, we recommend you to use the default value because github.token is regenerated for each run, and its permission is limited to the repository that contains the workflow. For more information, please see https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#github-context and https://docs.github.com/en/actions/reference/authentication-in-a-workflow.

Notice

This repository was initially cloned from https://github.com/actions/typescript-action.