Skip to content

mikaelvesavuori/dorametrix-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

Dorametrix GitHub action

Conveniently call Dorametrix to create a deployment event.

Looking for a demo? In that case you might be interested in the Dorametrix Pipe demo.

Setup and usage

You need to set two required secrets—DORAMETRIX_ENDPOINT and DORAMETRIX_API_KEY—in accordance with the overall Dorametrix requirements.

Remember...

  • Always ensure you have secure settings regarding what actions you allow.
  • Note that Dorametrix will not work without access to the Git history (i.e. with.fetch-depth: 0).

Required input and output arguments

endpoint

Dorametrix API endpoint, in the format https://mydomain.com/stagename.

api-key

Dorametrix API token.

Optional input and output arguments

product

The product name can be optionally set. If not, it will default to the repository name.

Secrets the action uses

This Action uses two secrets: DORAMETRIX_ENDPOINT and DORAMETRIX_API_KEY, as described above.

Environment variables the action uses

If the product name is not set, Dorametrix will use ${{ github.event.repository.name }} to grab the repository name.

An example of how to use this action in a workflow

on: [push]

jobs:
  dorametrix:
    runs-on: ubuntu-latest
    name: Dorametrix
    steps:
      - name: Checkout
        uses: actions/checkout@v2
        with:
          fetch-depth: 0

      - name: dorametrix
        uses: mikaelvesavuori/dorametrix-action@v3
        with:
          endpoint: ${{ secrets.DORAMETRIX_ENDPOINT }}
          api-key: ${{ secrets.DORAMETRIX_API_KEY }}