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

GitHub Action

Github Action Notify Release

v1.2.7

Github Action Notify Release

play

Github Action Notify Release

Create an issue if there is a release pending

Installation

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

              

- name: Github Action Notify Release

uses: nearform-actions/[email protected]

Learn more about this action in nearform-actions/github-action-notify-release

Choose a version

github-action-notify-release

GitHub Action that automatically creates an issue with an overview of the commits that are waiting to be released. After creating the release, the issue will be automatically closed during next action run.

Usage

Configure this action in your workflows providing the inputs described below in order to get notified in x days after the repo has been updated but no npm release has happened.

github-token

Required A GitHub token. See below for additional information.

stale-days: 7

Optional The number of days after which unreleased commits should be considered stale and should notify for a release. Default is 7.

commit-messages-lines: 1

Optional Limit the number of first x lines from commit messages that will be added in the issue description. No truncation when set to 0. Default is 1.

Notes

  • Checks and compares npm last modified date and git latest repo update.
  • If the repo doesn't have an npm package linked the run will exit with a warning log.
  • A GitHub token is automatically provided by Github Actions, which can be accessed using secrets.GITHUB_TOKEN and supplied to the action as an input github-token.
  • The example below sets a scheduled job to happen once a day that checks for a stale release. Adjust to the desired frequency.

Example

name: notify-release
on:
  workflow_dispatch:
  schedule:
    - cron: '30 8 * * *'
jobs:
  setup:
    runs-on: ubuntu-latest
    steps:
      - name: Notify release
        uses: nearform/github-action-notify-release@main
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          stale-days: 7