Skip to content

Normalize timeseries values #8

Normalize timeseries values

Normalize timeseries values #8

Workflow file for this run

name: Deploy docs
on:
pull_request:
branches: [ main ]
types: [ closed ]
paths:
- "docs/**"
jobs:
trigger_docs_website_deploy:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
# Checkout the merge commit on the base branch
ref: ${{ github.event.pull_request.merge_commit_sha }}
- name: Trigger website deploy
env:
DOCS_REPO_TOKEN: ${{ secrets.DOCS_REPO_TOKEN }}
run: |
set -euo pipefail
curl -sS -L --fail-with-body \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${DOCS_REPO_TOKEN}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/ozontech/seq-db-docs/dispatches \
-d '{"event_type":"dispatch-event"}'