on: schedule: - cron: '22 22 * * *' env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} concurrency: group: ${{ github.ref }} cancel-in-progress: true jobs: test_schedule: 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 - run: make url_check