Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
align-justify

GitHub Action

Github Issues Digest

v0.1.3d-alpha Pre-release

Github Issues Digest

align-justify

Github Issues Digest

Provide a summary of Github issues for a repository

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Github Issues Digest

uses: nus-oss/[email protected]

Learn more about this action in nus-oss/GithubDigest

Choose a version

Github Digester @ V0.1.0

This GitHub Action generates a summary of changes to the issues in your repository and adds the summary as a comment to a digest issue. It is designed to be used as a scheduled cron job to provide scheduled summaries of issue changes. Of course, it can also be called on other events as well.

The changes reflected in the digest will be the last comment by the digest to the current time.

What's New

  • included basic files

Usage

To use this action in your workflow, you can add the following step:

steps:
  - name: Create digest
    uses: Eclipse-Dominator/[email protected]
    with:
      secret: PAT/Github Token (default to secrets.GITHUB_TOKEN)
      repo: repository to monitor (default to the current repo)
      save: folder where digest settings are saved (defaut to .github/digests)

To run the action daily or on manually, you can add the following action:

name: Issue Digest

on:
  schedule:
    - cron: '0 0 * * *'  # runs once at 00:00 daily
  workflow_dispatch:

jobs:
  issue-digest:
    runs-on: ubuntu-latest

    steps:
      - name: Run Issue Digest Action
        uses: Eclipse-Dominator/[email protected]