atom-feed generate #6234
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: atom-feed generate | |
on: | |
schedule: | |
- cron: '* 3 * * *' | |
# issues: | |
# types: [opened, edited, closed, deleted] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: node ./main.js | |
- run: | | |
git config --global user.name angeal185 | |
git config --global user.email angeal185@users.noreply.github.com | |
git add * | |
git commit -m "update" | |
git push |