Skip to content

Switch from actions/checkout to tianon/actions/checkout #3012

Switch from actions/checkout to tianon/actions/checkout

Switch from actions/checkout to tianon/actions/checkout #3012

name: Verify Templating
on:
pull_request:
push:
defaults:
run:
shell: 'bash -Eeuo pipefail -x {0}'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
apply-templates:
name: Check For Uncomitted Changes
runs-on: ubuntu-latest
steps:
- uses: tianon/actions/checkout@HEAD
- name: Apply Templates
run: ./parallel.sh apply-templates.sh
- name: Git Diff (informational)
run: |
git diff || :
- name: Check Git Status
run: |
status="$(git status --short)"
[ -z "$status" ]