Skip to content

Update super-linter.yml #5

Update super-linter.yml

Update super-linter.yml #5

Workflow file for this run

name: Lint Code Base
on:
push:
branches: [ "hyde-gallery" ]
pull_request:
branches: [ "hyde-gallery" ]
jobs:
run-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: "hyde-gallery"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # Specify the Python version you need
- name: Run generate_readme.py
run: python generate_readme.py # Run the script from the root directory
- name: Commit changes
run: |
git config --local user.name "GitHub Action"
git config --local user.email "[email protected]"
git add README.md # Specify the README file or use . for all changes
git commit -m "Update README from GitHub Actions" || echo "No changes to commit"
- name: Push changes
run: git push origin hyde-gallery # Push changes back to the branch
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Use the GitHub token for authentication