mirror of
https://github.com/github/awesome-copilot.git
synced 2026-03-23 09:35:13 +00:00
* chore: publish from staged * fix: pin GitHub Actions to immutable SHA hashes to prevent supply chain attacks Co-authored-by: simonkurtz-MSFT <84809797+simonkurtz-MSFT@users.noreply.github.com> * chore: publish from staged * Clean plugins * Clean plugins * Clean plugins * Fix gem-team plugin * Reset README.plugins.md --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
30 lines
733 B
YAML
30 lines
733 B
YAML
name: Check Line Endings
|
|
|
|
on:
|
|
push:
|
|
branches: [staged]
|
|
pull_request:
|
|
branches: [staged]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check-line-endings:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
|
|
- name: Check for CRLF line endings in markdown files
|
|
run: |
|
|
! grep -l $'\r' $(find . -name "*.md")
|
|
if [ $? -eq 0 ]; then
|
|
echo "✅ No CRLF line endings found in markdown files"
|
|
exit 0
|
|
else
|
|
echo "❌ CRLF line endings found in markdown files"
|
|
echo "Files with CRLF line endings:"
|
|
grep -l $'\r' $(find . -name "*.md")
|
|
exit 1
|
|
fi
|