Skip to content

Most Popular tweet #135

Most Popular tweet

Most Popular tweet #135

Workflow file for this run

name: Most Popular tweet
on:
schedule:
- cron: "0 15 * * 0"
workflow_dispatch:
jobs:
build:
name: Tweet most popular categories
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Install Dependencies
run: yarn install
- name: Run Twitter bot
run: yarn twitter:popular
env:
PLAUSIBLE_API_KEY: ${{ secrets.PLAUSIBLE_API_KEY }}
TWITTER_CONSUMER_KEY: ${{ secrets.TWITTER_CONSUMER_KEY }}
TWITTER_CONSUMER_SECRET: ${{ secrets.TWITTER_CONSUMER_SECRET }}
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}