Latest tweets including attachments #82881
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: Latest tweets including attachments | |
on: | |
# Schedule updates (each hour) | |
schedule: [{cron: "* * * * *"}] | |
# Lines below let you run workflow manually and on each commit | |
workflow_dispatch: | |
push: {branches: ["master", "main"]} | |
jobs: | |
github-metrics: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
filename: metrics.plugin.tweets.attachments.svg | |
token: NOT_NEEDED | |
base: "" | |
plugin_tweets: yes | |
plugin_tweets_token: ${{ secrets.TWITTER_TOKEN }} | |
plugin_tweets_attachments: yes | |
plugin_tweets_user: BaranovLab | |
plugin_tweets_limit: 3 |