Skip to content

Commit 317af12

Browse files
committed
copy from pymc-marketing
1 parent 231a977 commit 317af12

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 }}

0 commit comments

Comments
 (0)