Discord Rich Presence Activity Badge #13048
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: Discord Rich Presence Activity Badge | |
on: | |
schedule: # Scheduling with Github Actions is inconsistent. | |
- cron: "*/5 * * * *" # Construct your Cronjob Schedule at https://crontab.guru/. | |
workflow_dispatch: # Enables you to dispatch the workflow at your click. | |
jobs: | |
BadgeUpdater: | |
name: Static Badge Updater | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update README Discord Badge to Latest Upstream | |
uses: CodexLink/[email protected] # Choose your own version by picking a tag or a branch name. Using a tag is recommended. | |
with: | |
DISCORD_USER_ID: ${{ secrets.DISCORD_USER_ID }} | |
DISCORD_BOT_TOKEN: ${{ secrets.DISCORD_BOT_TOKEN }} | |
env: | |
DISCORD_USER_ID: ${{ secrets.DISCORD_USER_ID }} | |
DISCORD_BOT_TOKEN: ${{ secrets.DISCORD_BOT_TOKEN }} |