Skip to content

Merge pull request #73 from dewantawsif/chore/remove-discontinued-domain #5

Merge pull request #73 from dewantawsif/chore/remove-discontinued-domain

Merge pull request #73 from dewantawsif/chore/remove-discontinued-domain #5

Workflow file for this run

name: README
on:
push:
branches: [main]
paths:
- "data/*"
workflow_dispatch: {}
jobs:
update:
name: Update
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update README
run: |
chmod +x scripts/update-readme.sh
./scripts/update-readme.sh
- name: Commit
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git pull
git add README.md
git commit -m "chore: update readme"
git push