mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-22 09:47:47 +00:00
30 lines
797 B
YAML
30 lines
797 B
YAML
name: Qwen Scheduled PR Triage 🚀
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '*/15 * * * *' # Runs every 15 minutes
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
audit-prs:
|
|
timeout-minutes: 15
|
|
if: ${{ github.repository == 'QwenLM/qwen-code' }}
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
issues: write
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
prs_needing_comment: ${{ steps.run_triage.outputs.prs_needing_comment }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
|
|
- name: Run PR Triage Script
|
|
id: run_triage
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITHUB_REPOSITORY: ${{ github.repository }}
|
|
run: ./.github/scripts/pr-triage.sh
|