From 7e40bb1c08496f1146a250148649822dfcfee63c Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 9 Sep 2019 16:38:39 +0300 Subject: [PATCH] Create generate.yml --- .github/workflows/generate.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/generate.yml diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml new file mode 100644 index 000000000..7581905cb --- /dev/null +++ b/.github/workflows/generate.yml @@ -0,0 +1,29 @@ +name: Generate grouped playlists + +on: + schedule: + - cron: '0 0 * * *' + +jobs: + generate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + + - name: "git checkout master" + run: git checkout master + + - name: "npm install" + run: npm install + + - name: "npm run generate" + run: npm run generate + + - name: Commit all changes + uses: stefanzweifel/git-auto-commit-action@v2.0.0 + with: + commit_author_email: free.arhey@gmail.com + commit_author_name: Arhey + commit_message: Generated grouped playlists + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}