> ## Documentation Index
> Fetch the complete documentation index at: https://v0.x-docs.novu.co/llms.txt
> Use this file to discover all available pages before exploring further.

# GitHub Actions

You can also deploy the workflow state with our built-in GitHub Action command:

```yaml theme={null}
name: Deploy Workflow State to Novu

on:
  push:
    branches:
      - main
jobs:
  deploy:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v2
		  - name: Sync State to Novu
		    uses: novuhq/actions-novu-sync@v0.0.4
		    with:
		      novu-api-key: ${{secrets.NOVU_API_KEY}} # Your Dev or Prod API Key to Novu
		      bridge-url: "" # This will be your target environment bridge url
```
