Setup and delete universes #18776
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
on: | |
schedule: | |
- cron: '30 0 * * *' | |
workflow_dispatch: | |
inputs: | |
FORCE_DELETE: | |
description: 'Ignore safety limits on deleting repos' | |
required: false | |
repository_dispatch: | |
types: [created] | |
name: Setup and delete universes | |
concurrency: | |
group: ${{ github.workflow }} | |
jobs: | |
update: | |
name: Check for new app installations | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for new app installations | |
uses: r-universe-org/setup-universes@master | |
env: | |
GH_APP_ID: ${{ secrets.GH_APP_ID }} | |
GH_APP_KEY: ${{ secrets.GH_APP_KEY }} | |
GITHUB_PAT: ${{ secrets.GHPAT }} | |
CRANLIKEPWD: ${{ secrets.CRANLIKEPWD }} | |
FORCE_DELETE: ${{ github.event.inputs.FORCE_DELETE }} |