Skip to content

HSK AMA Updated, Moved Quarry defs to Core SK #84

HSK AMA Updated, Moved Quarry defs to Core SK

HSK AMA Updated, Moved Quarry defs to Core SK #84

name: Update Git Attributes
on:
push:
branches:
- alpha
- development
jobs:
update_gitattributes:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run update_gitattribute.py
run: |
ls -la
python update_gitattribute.py
- name: Update .gitattributes
run: |
git config user.name "GitHub Actions"
git config user.email "<>"
git add .gitattributes
git commit -m "Update .gitattributes" || echo "No changes to commit"
git push