File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ # Taken from https://github.com/pymc-labs/pymc-marketing/tree/main/.github/workflows/slow-tests-issue.yml
2+ ---
3+ name : Slow Tests Issue Body
4+
5+ on :
6+ workflow_dispatch :
7+ schedule :
8+ - cron : ' 0 */6 * * *'
9+
10+ permissions :
11+ issues : write
12+
13+ jobs :
14+ update-comment :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - name : Install ZSH
18+ run : sudo apt-get update && sudo apt-get install -y zsh
19+ - name : Checkout code
20+ uses : actions/checkout@v4
21+ - name : Set up Python
22+ uses : actions/setup-python@v5
23+ with :
24+ python-version : " 3.11"
25+ - name : Trigger the script
26+ working-directory : scripts/slowest_tests
27+ shell : zsh {0}
28+ run : source update-slowest-times-issue.sh
29+ env :
30+ GITHUB_TOKEN : ${{ github.token }}
You can’t perform that action at this time.
0 commit comments