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

GitHub Action

Publish event

v1

Publish event

tag

Publish event

Publishes an event to Fiberplane

Installation

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

              

- name: Publish event

uses: fiberplane/publish-event@v1

Learn more about this action in fiberplane/publish-event

Choose a version

Fiberplane publish event action

This GitHub action will allow you to post an event to Fiberplane

Usage

First, create a Fiberplane API token and set it up as a GitHub secret named FIBERPLANE_TOKEN in your GitHub repository or organization.

Then add the following step to a workflow of your choice:

    # ...
    steps:
      # ...
      - uses: fiberplane/publish-event@v1
        with:
          # Required. Do *not* put your plaintext secret here
          api-token: ${{ secrets.FIBERPLANE_TOKEN }}
          # Required
          title: "API Deployment using GitHub Actions"
          # Format: key=optional value, separated with |. At least one label is required
          labels: "product=api|type=deploy"