generate_issues.yml 722 B

12345678910111213141516171819
  1. name: generate_issues
  2. on:
  3. schedule:
  4. # Run every day at 5am (PST) - cron uses UTC times
  5. - cron: '0 13 * * *'
  6. jobs:
  7. generate_an_issue:
  8. # Don't run on private repo.
  9. if: github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule'
  10. runs-on: ubuntu-latest
  11. name: Generate a nightly testing report issue
  12. steps:
  13. - uses: actions/checkout@v2
  14. - name: Create a nightly report
  15. uses: ./.github/actions/testing_report_generation/
  16. with:
  17. access-token: '${{ secrets.GITHUB_TOKEN }}'
  18. # This is to exclude workflows that will be searched in the nightly report.
  19. exclude-workflow-files: 'performance-integration-tests.yml,mlmodeldownloader.yml'