| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- name: generate_issues
- on:
- workflow_dispatch:
- pull_request:
- paths:
- - '.github/workflows/generate_issues.yml'
- - '.github/actions/testing_report_generation**'
- schedule:
- # Run every day at 5am (PDT) / 8am (EDT) - cron uses UTC times
- - cron: '0 12 * * *'
- permissions:
- issues: write
- 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, dependabot-updates'
- 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, dependabot-updates'
- issue-labels: 'nightly-testing-report-generation-test'
- issue-title: 'Nightly Testing Report For Presubmit Testing'
|