Improve the daily.yml workflow (#8737)

This commit is contained in:
Alex Waygood
2022-09-15 05:46:18 +01:00
committed by GitHub
parent 246f7e7720
commit 3e71efbc73

View File

@@ -15,7 +15,7 @@ env:
jobs:
stubtest-stdlib:
name: Check stdlib with stubtest
if: github.repository == 'python/typeshed'
if: ${{ github.repository == 'python/typeshed' || github.event_name == 'workflow_dispatch' }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
@@ -38,7 +38,7 @@ jobs:
stubtest-third-party:
name: Check third party stubs with stubtest
if: github.repository == 'python/typeshed'
if: ${{ github.repository == 'python/typeshed' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-20.04
strategy:
matrix:
@@ -76,4 +76,5 @@ jobs:
repo: "typeshed",
title: `Stubtest failed on ${new Date().toDateString()}`,
body: "Stubtest runs are listed here: https://github.com/python/typeshed/actions/workflows/daily.yml",
labels: ["help wanted"],
})