Skip to content

Discord event sync #295

Discord event sync

Discord event sync #295

name: Discord event sync
on:
workflow_dispatch:
schedule:
- cron: '0 8 * * *' #Runs every day at 2:00 AM CST
jobs:
my_job:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
token: ${{ secrets.GH_PAT }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Set up Git user
run: |
git config user.name "GitHub Actions"
git config user.email "github-actions@github.com"
- name: Set up cache for pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run script
run: python discord_event_syncing.py
env:
DISCORD_BOT_TOKEN: ${{ secrets.DISCORD_BOT_TOKEN }}
SERVER_ID: ${{ secrets.SERVER_ID }}
CHANNEL_ID: ${{ secrets.CHANNEL_ID }}
WA_API_KEY: ${{ secrets.WA_API_KEY }}