• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1name: Update viable/strict
2
3on:
4  schedule:
5    - cron: 17,47 * * * *
6  workflow_dispatch:
7
8concurrency:
9  group: ${{ github.workflow }}
10  cancel-in-progress: false
11
12jobs:
13  do_update_viablestrict:
14    if: ${{ github.repository_owner == 'pytorch' }}
15    runs-on: ubuntu-20.04
16    environment: ${{ (github.event_name == 'schedule') && 'update-viable-strict' || '' }}
17    steps:
18      - name: Update viable/strict
19        uses: pytorch/test-infra/.github/actions/update-viablestrict@release/2.5
20        with:
21          repository: pytorch/executorch
22          stable-branch: viable/strict
23          requires: '[\"pull\", \"lint\", \"trunk\", \"Build documentation\", \"^Apple$\"]'
24          secret-bot-token: ${{ secrets.UPDATEBOT_TOKEN }}
25          clickhouse-url: ${{ secrets.CLICKHOUSE_URL }}
26          clickhouse-username: ${{ secrets.CLICKHOUSE_VIABLESTRICT_USERNAME }}
27          clickhouse-password: ${{ secrets.CLICKHOUSE_VIABLESTRICT_PASSWORD }}
28