Skip to content

.github/workflows/update-metadata.yml #330

.github/workflows/update-metadata.yml

.github/workflows/update-metadata.yml #330

on:
schedule:
- cron: '22 22 * * *'
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
update-metadata:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make update_metadata
- run: make awesome_lint
- run: make export
- name: commit and push changes
run: |
git config user.name awesome-selfhosted-bot
git config user.email github-actions@github.com
git add software/ tags/ platforms/ licenses*.yml
git diff-index --quiet HEAD || git commit -m "[bot] update projects metadata"
git push
url-check:
runs-on: ubuntu-latest
steps:
- run: make url_check