post triage issues on Zulip #1323
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: post triage issues on Zulip | |
on: | |
schedule: | |
- cron: '0 14 * * *' | |
workflow_dispatch: | |
jobs: | |
post_issues: | |
runs-on: ubuntu-latest | |
name: Post random issue to zulip for triage | |
steps: | |
- name: Checkout scripts | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install python packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install PyGithub zulip | |
- name: Post issue on Zulip | |
run: python post_issue_on_zulip.py "${{ secrets.RANDOM_ISSUE_BOT_ZULIP_TOKEN }}" "${{ secrets.LCB_TOKEN }}" |