Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
VALIDATE_PYTHON: false | |
VALIDATE_JSON: true | |
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 "action@github.com" | |
git add . # Specify the README file or use . for all changes | |
git commit -m "Update README from GitHub Actions" || echo "No changes to commit" | |
- name: Commit changed files | |
uses: stefanzweifel/git-auto-commit-action@v2.3.0 | |
with: | |
commit_message: Generate README Table | |
branch: ${{ github.head_ref }} | |
commit_options: "--no-verify --signoff" | |
file_pattern: README.md | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |