Github Issues Digest
ActionsTags
(2)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.
- included basic files
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]
Github Issues Digest is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.