Update test-monitor-issues.yml #5
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: Test Monitor Issues | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| operations-per-run: | ||
| description: 'Number of operations per run' | ||
| required: false | ||
| default: '30' | ||
| schedule: | ||
| - cron: "0 0 * * *" # Runs once a day at midnight | ||
| jobs: | ||
| workflow_call: | ||
| uses: ./.github/actions/monitor-issues | ||
| with: | ||
| repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
| operations-per-run: 10 | ||