diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 000000000..322062548 --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,51 @@ +name: docs + +on: + push: + branches: + - master + - v[0-9]+.[0-9]+ + tags: + - "*" + pull_request: + branches: + - master + - v[0-9]+.[0-9]+ + + +jobs: + main: + runs-on: ubuntu-20.04 + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Check + run: | + source ci/env.sh + ci/channel_restriction.sh edge beta + + - name: Get specific changed files + id: changed-files-specific + uses: tj-actions/changed-files@v19 + with: + files: | + docs/** + + - name: Exit if no file changes in docs/ + if: steps.changed-files-specific.outputs.any_changed != 'true' + run: | + exit 1 + + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: 14 + + - name: Build + working-directory: docs + run: | + npm install + ./build.sh diff --git a/.mergify.yml b/.mergify.yml index e47e92dcc..c9b8e2f66 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -37,10 +37,10 @@ pull_request_rules: - label=automerge - label!=no-automerge - author≠@dont-squash-my-commits - # - or: + - or: # only require docs checks if docs files changed - # - status-success= - # - -files~=^docs/ + - status-success=docs + - -files~=^docs/ - or: # only require explorer checks if explorer files changed - status-success=check-explorer @@ -63,10 +63,10 @@ pull_request_rules: - label=automerge - label!=no-automerge - author=@dont-squash-my-commits - # - or: + - or: # only require docs checks if docs files changed - # - status-success= - # - -files~=^docs/ + - status-success=docs + - -files~=^docs/ - or: # only require explorer checks if explorer files changed - status-success=check-explorer diff --git a/.travis/affects.sh b/ci/affects.sh similarity index 100% rename from .travis/affects.sh rename to ci/affects.sh diff --git a/.travis/channel_restriction.sh b/ci/channel_restriction.sh similarity index 100% rename from .travis/channel_restriction.sh rename to ci/channel_restriction.sh