Tutorial Updates #607
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: Tutorial Pull Requests | |
on: | |
pull_request: | |
paths: | |
- guides/release/tutorial/**/*.md | |
jobs: | |
do-no-edit: | |
name: Do Not Edit Generated Files | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.head.ref != 'super-rentals-tutorial' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Fetch | |
env: | |
BASE_REF: ${{ github.event.pull_request.base.ref }} | |
run: git fetch origin "${BASE_REF}" | |
- name: Annotate | |
env: | |
BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
run: | | |
STATUS="0" | |
for FILE in $(git diff --name-only "${BASE_SHA}"); do | |
LINE=$(sed -n "\|<\!-- Heads up\!|=" "${FILE}") | |
if [[ ! -z "$LINE" ]]; then | |
STATUS="1" | |
echo "::error file=${FILE},line=${LINE}::This is a generated file, do not edit directly. Follow the URL above to edit the source file instead." | |
fi | |
done | |
exit "${STATUS}" |