/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/trigger-doc-build.yml
25 строк
774 B
Shay Rojansky
Add empty permissions block in Github Actions configs (#3694) (#6392)
25 дек 2025, 13:16
Не верифицирован
25 дек 2025, 13:16
7751d2e
Код
Авторство
О чём код?
# This workflow triggers a rebuild of the Npgsql documentation site whenever changes are made to master, which represents our latest released version. # This pulls in the newest source code for API doc generation. name: Trigger Documentation Build on: push: branches: - docs permissions: contents: read jobs: build: runs-on: ubuntu-latest steps: - name: Trigger documentation build run: | curl -X POST \ -H "Authorization: token ${{ secrets.DOC_MGMT_TOKEN }}" \ -H "Accept: application/vnd.github.everest-preview+json" \ -H "Content-Type: application/json" \ --data '{ "event_type": "Npgsql push to stable" }' \ https://api.github.com/repos/npgsql/doc/dispatches