blob: fb027c56496252eb6615a14564b24ab2b408d7ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---
name: iOS end-to-end nightly tests
on:
workflow_dispatch:
schedule:
# At midnight every day.
# Notifications for scheduled workflows are sent to the user who last modified the cron
# syntax in the workflow file. If you update this you must have notifications for
# Github Actions enabled, so these don't go unnoticed.
# https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/notifications-for-workflow-runs
- cron: '0 0 * * *'
permissions: {}
jobs:
reuse-e2e-workflow:
permissions:
contents: read
issues: write
pull-requests: write
uses: ./.github/workflows/ios-end-to-end-tests.yml
with:
arg_tests_json_key: "nightly"
secrets: inherit
|