URL: http://github.com/pypa/packaging.python.org/commit/617f04be2d66496d584349e51d1171559e8e34d8
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92759ce commit 617f04bCopy full SHA for 617f04b
.github/workflows/cron.yml
@@ -0,0 +1,14 @@
1
+---
2
+
3
+name: Cron
4
5
+on:
6
+ schedule:
7
+ - cron: "0 6 * * *" # daily at 6am
8
9
+jobs:
10
+ test:
11
+ if: github.repository_owner == 'pypa' # suppress noise in forks
12
+ uses: ./.github/workflows/test.yml
13
14
+...
.github/workflows/test.yml
@@ -6,8 +6,7 @@ on:
branches-ignore:
- gh-readonly-queue/** # Temporary merge queue-related GH-made branches
pull_request:
- schedule:
- - cron: "0 6 * * *" # daily at 6am
+ workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
0 commit comments