Correct WIP and no ci label usage #68
Workflow file for this run
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
name: Build Docs | ||
on: | ||
workflow_dispatch: {} | ||
push: | ||
branches: [main, develop] | ||
pull_request: | ||
types: [opened, synchronize, edited, labeled, unlabeled] | ||
branches: [main, develop] | ||
jobs: | ||
docs: | ||
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'no ci') && !(contains(github.event.pull_request.labels.*.name, 'lint-only')) }} | ||
Check failure on line 13 in .github/workflows/docs.yml
|
||
name: Build Docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install BEE and Build Docs | ||
run: ./ci/docs.sh |