Skip to content

added ffmpeg, mongoose and vagrant icons #15

added ffmpeg, mongoose and vagrant icons

added ffmpeg, mongoose and vagrant icons #15

Workflow file for this run

name: Generate Readme
on:
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Set Permissions to script
run: chmod +x ./.github/readme-format.sh
- name: Run Readme Script
run: ./.github/readme-format.sh
- name: Commit changes
run: |
git config --global user.name 'CI'
git config --global user.email 'noreply@github.com'
git add .
git commit -m "formatting the readme file"
git push