Skip to content
book-open

GitHub Action

Create changelog

v1.0.0 Latest version

Create changelog

book-open

Create changelog

Create a post in changes.page

Installation

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

              

- name: Create changelog

uses: techulus/[email protected]

Learn more about this action in techulus/changes-page-action

Choose a version

Action to create a changes.page post

To get started, create an account at changes.page and create a page. Once you have set up your page, you can obtain your integration secret from the page settings. Keep this secret handy, as we will use it during the setup of the action.

Then you can setup your workflow as shown below:

update-changelog:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: techulus/[email protected]
        with:
          page_secret: ${{ secrets.PAGE_SECRET }}
          post_title: "Your post title"
          post_content: "Markdown post content"
          post_type: "Post type enum"
          post_status: "Post status enum"

Note.

  • Type of the post, can be 'fix', 'new', 'improvement', 'announcement' or 'alert'"
  • Status of the post, can be 'draft' or 'published'