Skip to content

A GitHub action to register a deploy to Sleuth

License

Notifications You must be signed in to change notification settings

sleuth-io/sleuth-action

 
 

Repository files navigation

sleuth-action

A GitHub action to register a deploy to Sleuth

Usage

An example might look something like this:

# This is a basic workflow to help you get started with Actions

name: CD

# Controls when the workflow will run
on:
  # Triggers the workflow on push but only for the main branch
  push:
    branches: [ main ]
 
  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  # This workflow contains a single job called "deploy"
  deploy:
    # The type of runner that the job will run on
    runs-on: ubuntu-latest

    # Steps represent a sequence of tasks that will be executed as part of the job
    steps:
      - name: Register deploy to Sleuth
        id: sleuth
        uses: baratrion/sleuth-action@main  # This should be a version tag
        with:
          organization-slug: 'your-sleuth-organization'
          deployment-slug: 'your-deployment-slug'
          environment: staging
          sha: ${{ github.sha }}
          email: ${{ github.event.pusher.email }}
          api-key: ${{ secrets.SLEUTH_API_KEY }}
      # Use the output from the `sleuth` step
      - name: Get the response status
        run: echo "Status code ${{ steps.sleuth.outputs.status }}"

Note You can ontain the deployment-slug parameter by ensuring your code deployment is configured to track deploys using webhooks and then clicking on Get Setup Instructions from the gear icon menu when viewing a code deployment

About

A GitHub action to register a deploy to Sleuth

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%