generate_issues #1501
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
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' |