Sebastián Ramírez
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
13 additions and
0 deletions
-
.github/workflows/people.yml
|
@ -4,12 +4,25 @@ on: |
|
|
schedule: |
|
|
schedule: |
|
|
- cron: "0 14 1 * *" |
|
|
- cron: "0 14 1 * *" |
|
|
workflow_dispatch: |
|
|
workflow_dispatch: |
|
|
|
|
|
inputs: |
|
|
|
|
|
debug_enabled: |
|
|
|
|
|
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' |
|
|
|
|
|
required: false |
|
|
|
|
|
default: false |
|
|
|
|
|
|
|
|
jobs: |
|
|
jobs: |
|
|
fastapi-people: |
|
|
fastapi-people: |
|
|
runs-on: ubuntu-latest |
|
|
runs-on: ubuntu-latest |
|
|
steps: |
|
|
steps: |
|
|
- uses: actions/checkout@v2 |
|
|
- uses: actions/checkout@v2 |
|
|
|
|
|
# Allow debugging with tmate |
|
|
|
|
|
- name: Setup tmate session |
|
|
|
|
|
uses: mxschmitt/action-tmate@v3 |
|
|
|
|
|
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }} |
|
|
|
|
|
with: |
|
|
|
|
|
limit-access-to-actor: true |
|
|
|
|
|
token: ${{ secrets.ACTIONS_TOKEN }} |
|
|
|
|
|
standard_token: ${{ secrets.GITHUB_TOKEN }} |
|
|
- uses: ./.github/actions/people |
|
|
- uses: ./.github/actions/people |
|
|
with: |
|
|
with: |
|
|
token: ${{ secrets.ACTIONS_TOKEN }} |
|
|
token: ${{ secrets.ACTIONS_TOKEN }} |
|
|