diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index f1e0d00b9..d0fe6f6cb 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -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"], })