Bump the all group with 3 updates (#43) #35
This file contains hidden or 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
| # This is a basic workflow to help you get started with Actions | |
| name: 🔨 Auto Generating Tasks | |
| # Controls when the workflow will run | |
| on: | |
| # Triggers the workflow on push or pull request events but only for the main branch | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'Benchmark/**' | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| concurrency: | |
| group: commit-work | |
| cancel-in-progress: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| jobs: | |
| linking: | |
| runs-on: ubuntu-latest | |
| name: Markdown files | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - name: 📦 Checkout Repository | |
| uses: actions/checkout@v5 | |
| # Runs a single command using the runners shell | |
| - name: 📓 Create Readmes | |
| uses: DaanV2/[email protected] | |
| with: | |
| folder: ${{github.workspace}}/Benchmark | |
| filename: README.md | |
| - name: 📖 Commit changes | |
| continue-on-error: true | |
| run: | | |
| cd $GITHUB_WORKSPACE | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "github" | |
| git add . | |
| git commit -m "auto: Generated Readmes" || echo "No changes to commit" | |
| - name: 🚚 Push | |
| continue-on-error: true | |
| run: git push |