Skip to content

changing CovStats outfile ending #10

changing CovStats outfile ending

changing CovStats outfile ending #10

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
paths: ["R/**"]
name: dos2unix
jobs:
line-break-fix:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Set up dos2unix
run: sudo apt-get install dos2unix
- name: Run dos2unix
run: find ./R -type f -name "*.R" -exec dos2unix {} \;
- name: Commit and push changes
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
git add ./R/*.R
git commit -m "Conversion of R files from CRLF to LF" || echo "No changes to commit"
git pull --ff-only
git push origin