Bot Controller #80
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: Bot Controller | |
on: | |
schedule: | |
- cron: '0 12 * * *' | |
workflow_dispatch: | |
jobs: | |
controller: | |
name: Controller | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run BotController | |
run: dotnet run --project src/BotController/BotController.csproj --configuration Release -- --token ${{ secrets.REPOSITORY_TOKEN }} --test-mode false |