132047b4c0
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
22 lines
626 B
YAML
22 lines
626 B
YAML
name: Cron
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '*/5 * * * *'
|
|
|
|
jobs:
|
|
cron:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@58077d3c7e43986b6b15fba718e8ea69e387dfcc # v2.15.1
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- uses: backstage/actions/cron@2cd6978b476cbdc39fec48346f8b6ca13199dd6a # v0.7.8
|
|
with:
|
|
app-id: ${{ secrets.BACKSTAGE_GOALIE_APPLICATION_ID }}
|
|
private-key: ${{ secrets.BACKSTAGE_GOALIE_PRIVATE_KEY }}
|
|
installation-id: ${{ secrets.BACKSTAGE_GOALIE_INSTALLATION_ID }}
|