Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 681 Bytes

File metadata and controls

37 lines (28 loc) · 681 Bytes

Plan on GChat Action

This GitHub action plans a release on GChat.

Inputs

Input Description Required

gchat-webhook-url

The GChat Webhook to POST the announcement message to.

true

version-date

The version’s scheduled release date.

true

version

The planned version.

true

project-name

The project name (for example, spring-security); will use repo name if not provided.

false

Example Usage

- name: Plan on GChat
  uses: spring-io/spring-release-actions/plan-on-gchat@main
  with:
    gchat-webhook-url: ${{ secrets.GCHAT_WEBHOOK_URL }}
    version-date: '2023-01-01'
    version: '1.2.3'