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 ab0453e commit b5ca871Copy full SHA for b5ca871
.github/workflows/minimum-open-time.yml
@@ -0,0 +1,18 @@
1
+on:
2
+ - pull_request
3
+ - workflow_dispatch
4
+ # not sure about scheduling only on PRs. See https://github.com/orgs/community/discussions/49960
5
+ # - schedule
6
+ # - cron: '0 * * * *'
7
+
8
+jobs:
9
+ require-minimum-open-time:
10
+ runs-on: ubuntu-latest
11
+ name: Require Minimum Open Time
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: gregsdennis/minimum-open-time@main
15
+ with:
16
+ time: 2w # see below for options
17
+ env:
18
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments