forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 1.57 KB
/
generate_issues.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: generate_issues
on:
pull_request:
paths:
- '.github/workflows/generate_issues.yml'
- '.github/actions/testing_report_generation**'
schedule:
# Run every day at 4am (PST) - cron uses UTC times
- cron: '0 12 * * *'
jobs:
generate_an_issue:
# Don't run on private repo.
if: github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule'
runs-on: ubuntu-latest
name: Generate a nightly testing report issue
steps:
- uses: actions/checkout@v4
- name: Create a nightly report
uses: ./.github/actions/testing_report_generation/
with:
access-token: '${{ secrets.GITHUB_TOKEN }}'
# This is to exclude workflows that will be searched in the nightly report.
exclude-workflow-files: 'performance-integration-tests.yml, sessions-integration-tests.yml, codeql'
test_generate_an_issue:
# Don't run on private repo.
if: github.repository == 'Firebase/firebase-ios-sdk' && github.event_name != 'schedule'
runs-on: ubuntu-latest
name: Test nightly report generations
steps:
- uses: actions/checkout@v4
- name: Create a nightly report
uses: ./.github/actions/testing_report_generation/
with:
access-token: '${{ secrets.GITHUB_TOKEN }}'
# This is to exclude workflows that will be searched in the nightly report.
exclude-workflow-files: 'performance-integration-tests.yml, sessions-integration-tests.yml, codeql'
issue-labels: 'nightly-testing-report-generation-test'
issue-title: 'Nightly Testing Report For Presubmit Testing'