Add tests for XREADGROUP vs XAUTOCLAIM selection based on min_idle_time #83
Workflow file for this run
This file contains hidden or 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: Event Notifier | |
| on: | |
| issues: | |
| types: [opened, labeled, reopened] | |
| pull_request_target: | |
| types: [opened, reopened] # zizmor: ignore[dangerous-triggers] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.issue.number || github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| permissions: | |
| issues: read | |
| pull-requests: read | |
| jobs: | |
| notify: | |
| name: "Send Telegram notification for new issue or opened pull request" | |
| runs-on: ubuntu-latest | |
| if: github.actor != 'dependabot[bot]' && (github.event.action == 'opened' || github.event.action == 'reopened') | |
| steps: | |
| - name: Send Telegram notification for new issue or opened pull request | |
| uses: reagento/relator@919d3a1593a3ed3e8b8f2f39013cc6f5498241da # v1.6.0 | |
| with: | |
| tg-bot-token: ${{ secrets.TELEGRAM_TOKEN }} | |
| tg-chat-id: ${{ secrets.TELEGRAM_TO }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| join-input-with-list: "1" | |
| notify-oss-board: | |
| name: "Send Telegram notification to OSS board" | |
| runs-on: ubuntu-latest | |
| if: | | |
| github.event_name == 'issues' && | |
| contains(github.event.issue.labels.*.name, 'good first issue') | |
| steps: | |
| - name: Send Telegram notification to OSS board | |
| uses: reagento/relator@919d3a1593a3ed3e8b8f2f39013cc6f5498241da # v1.6.0 | |
| with: | |
| tg-bot-token: ${{ secrets.TELEGRAM_TOKEN }} | |
| tg-chat-id: ${{ secrets.GFI_CHAT }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| join-input-with-list: "1" | |
| custom-labels: "faststream,ag2ai" |