Skip to content

techulus/changes-page-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

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'