Upgrade ego to version 1.5.3 #9
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
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
name: Check Documentation | |
on: | |
push: | |
paths: | |
- '**.md' | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: read | |
jobs: | |
check-md-only: | |
name: This job was triggered | |
runs-on: ubuntu-latest | |
outputs: | |
md-only: ${{ steps.test-md-only.outputs.md-only }} | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 # required to compare HEAD^ | |
- run: git diff --name-only HEAD^..HEAD | |
- name: Test MD only | |
id: test-md-only | |
run: >- | |
[ -z "$(git diff --name-only HEAD^..HEAD | grep -ve "\.md$")" ] && | |
echo "md-only=${{toJSON(true)}}" >> $GITHUB_OUTPUT || | |
echo "md-only=${{toJSON(false)}}" >> $GITHUB_OUTPUT | |
build: | |
name: Run if only MD files | |
needs: ['check-md-only'] | |
runs-on: ubuntu-latest | |
if: ${{ fromJSON(needs.check-md-only.outputs.md-only) == true }} | |
steps: | |
- run: echo ran | |