-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d67154a
commit df5aac8
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Elastic docs | ||
|
||
on: | ||
pull_request_target: | ||
# The paths property can be omitted entirely if the repo is mainly used for docs. Leaving it in can result in builds that | ||
# have branch protection checks in place lose the ability to merge because the workflow is not starting. If this property | ||
# is included, please ensure that branch protection checks are disabled for the repo. | ||
paths: | ||
# Preface with your docs dir if you need further specificity (optional) | ||
- 'docs/en/serverless/**.mdx' | ||
- 'docs/en/serverless/**.docnav.json' | ||
- 'docs/en/serverless/**.docapi.json' | ||
- 'docs/en/serverless/**.devdocs.json' | ||
- 'docs/en/serverless/**.jpg' | ||
- 'docs/en/serverless/**.jpeg' | ||
- 'docs/en/serverless/**.svg' | ||
- 'docs/en/serverless/**.png' | ||
- 'docs/en/serverless/**.gif' | ||
types: [closed, opened, synchronize, labeled] | ||
|
||
jobs: | ||
publish: | ||
if: contains(github.event.pull_request.labels.*.name, 'ci:doc-build') | ||
uses: elastic/workflows/.github/workflows/docs-elastic-co-publish.yml@main | ||
secrets: | ||
VERCEL_GITHUB_TOKEN: ${{ secrets.VERCEL_GITHUB_TOKEN_PUBLIC }} | ||
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN_PUBLIC }} | ||
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID_PUBLIC }} | ||
VERCEL_PROJECT_ID_DOCS_CO: ${{ secrets.VERCEL_PROJECT_ID_DOCS_CO }} |