Browse Source

👷 Make cron jobs run only on main repo, not on forks, to avoid error notifications from missing tokens (#9735)

pull/9736/head
Sebastián Ramírez 2 years ago
committed by GitHub
parent
commit
dfa56f743a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .github/workflows/issue-manager.yml
  2. 1
      .github/workflows/label-approved.yml
  3. 1
      .github/workflows/people.yml

3
.github/workflows/issue-manager.yml

@ -2,7 +2,7 @@ name: Issue Manager
on:
schedule:
- cron: "0 0 * * *"
- cron: "10 3 * * *"
issue_comment:
types:
- created
@ -16,6 +16,7 @@ on:
jobs:
issue-manager:
if: github.repository_owner == 'tiangolo'
runs-on: ubuntu-latest
steps:
- uses: tiangolo/[email protected]

1
.github/workflows/label-approved.yml

@ -6,6 +6,7 @@ on:
jobs:
label-approved:
if: github.repository_owner == 'tiangolo'
runs-on: ubuntu-latest
steps:
- uses: docker://tiangolo/label-approved:0.0.2

1
.github/workflows/people.yml

@ -12,6 +12,7 @@ on:
jobs:
fastapi-people:
if: github.repository_owner == 'tiangolo'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

Loading…
Cancel
Save