docs.yml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. name: Docs
  17. on:
  18. pull_request:
  19. paths:
  20. - '.github/workflows/docs.yml'
  21. - '**/*.md'
  22. - 'docs/**'
  23. - '.dlc.json'
  24. schedule:
  25. - cron: '0 18 * * *' # TimeZone: UTC 0
  26. concurrency:
  27. group: doc-${{ github.event.pull_request.number || github.ref }}
  28. cancel-in-progress: true
  29. jobs:
  30. img-check:
  31. name: Image Check
  32. timeout-minutes: 15
  33. runs-on: ubuntu-latest
  34. defaults:
  35. run:
  36. working-directory: docs
  37. steps:
  38. - uses: actions/checkout@v2
  39. - name: Set up Python 3.9
  40. uses: actions/setup-python@v2
  41. with:
  42. python-version: 3.9
  43. - name: Run Dev Relative Reference
  44. run: python img_utils.py -v dev-syntax
  45. - name: Run Image Check
  46. run: python img_utils.py -v check
  47. dead-link:
  48. name: Dead Link
  49. if: (github.event_name == 'schedule' && github.repository == 'apache/dolphinscheduler') || (github.event_name != 'schedule')
  50. runs-on: ubuntu-latest
  51. timeout-minutes: 30
  52. steps:
  53. - uses: actions/checkout@v2
  54. - run: sudo npm install -g markdown-link-check@3.10.0
  55. # NOTE: Change command from `find . -name "*.md"` to `find . -not -path "*/node_modules/*" -not -path "*/.tox/*" -name "*.md"`
  56. # if you want to run check locally
  57. - run: |
  58. for file in $(find . -name "*.md"); do
  59. markdown-link-check -c .dlc.json -q "$file"
  60. done