Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

articulate/aws-eventbridge-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

aws-eventbridge-action

Warning

This project is no longer active.

Send events to AWS EventBridge from your GitHub Action workflow.

Usage

See action.yml for a detailed list of inputs and outputs.

- uses: articulate/aws-eventbridge-action@v2
  with:
    event-bus-name: my-bus-name-or-arn
    source: github.actions
    detail-type: ci
    detail: ${{ toJSON(github.event) }}

To send events, you'll need to configure AWS credentials. You can either set environment variables AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, and optionally AWS_SESSION_TOKEN. Or we recommend using aws-actions/configure-aws-credentials.

Development / Publishing

See CONTRIBUTING for more information