We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70e4ad0 commit b56a9d3Copy full SHA for b56a9d3
.github/workflows/minimum-open-time.yml
@@ -2,12 +2,13 @@ name: PR Policy
2
on:
3
- pull_request
4
- workflow_dispatch
5
- # not sure about scheduling only on PRs. See https://github.com/orgs/community/discussions/49960
6
- # - schedule
7
- # - cron: '0 * * * *'
+ # scheduling only on PRs is not directly supported. See https://github.com/orgs/community/discussions/49960
+ - schedule
+ - cron: '0 0 * * *' # once daily
8
9
jobs:
10
require-minimum-open-time:
11
+ if: github.event_name == 'pull_request'
12
runs-on: ubuntu-latest
13
name: Require Minimum Open Time
14
steps:
0 commit comments