restart application #116330
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: restart application | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
schedule: | |
- cron: '7/15 * * * *' # every 15 mins | |
jobs: | |
restart-staging: | |
name: restart (staging) | |
uses: gsa/data.gov/.github/workflows/app-restart-template.yml@main | |
with: | |
environ: staging | |
app_names: "{\"include\":[{\"app\":\"inventory\"},{\"app\":\"inventory-proxy\"},]}" | |
secrets: inherit | |
restart-prod: | |
name: restart (prod) | |
uses: gsa/data.gov/.github/workflows/app-restart-template.yml@main | |
with: | |
environ: prod | |
app_names: "{\"include\":[{\"app\":\"inventory\"},{\"app\":\"inventory-proxy\"},]}" | |
secrets: inherit |