Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Merge pull request #5 from HosseinYousefi/main #12

Merge pull request #5 from HosseinYousefi/main

Merge pull request #5 from HosseinYousefi/main #12

Workflow file for this run

name: Generate README
on:
push:
paths:
- 'talks/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Dart
uses: dart-lang/setup-dart@v1
- name: Generate README
run: dart .automation/generate_markdowns.dart
- name: Commit and push changes
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git add .
git commit -m 'Update files'
git push