Flomo Reminder #181
This file contains hidden or 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: Flomo Reminder | |
| on: | |
| schedule: | |
| - cron: "0 1,4,10 * * *" | |
| jobs: | |
| run_flomo_reminder: | |
| name: Run Flomo Reminder | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v3 | |
| - run: npm install | |
| - env: | |
| FLOMO_AUTHORIZATION: ${{ secrets.FLOMO_AUTHORIZATION }} | |
| BARK_TOKEN: ${{ secrets.BARK_TOKEN }} | |
| PUSHDEER_TOKEN: ${{ secrets.PUSHDEER_TOKEN }} | |
| PUSH_TAGS: ${{ vars.PUSH_TAGS }} | |
| run: npm start |