Skip to content

Commit 38646d6

Browse files
authored
fix
1 parent f35fdad commit 38646d6

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/actions/testing_report_generation/app.rb

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
TESTS_TIME_INTERVAL_IN_HOURS = 24
2525
TESTS_TIME_INTERVAL_IN_SECS = TESTS_TIME_INTERVAL_IN_HOURS * 3600
2626
NO_WORKFLOW_RUNNING_INFO = "All nightly cron job were not run in the last #{TESTS_TIME_INTERVAL_IN_HOURS} hrs. Please review [log](#{GITHUB_WORKFLOW_URL}) make sure there at least exists one cron job running.".freeze
27-
EXCLUDED_WORKFLOWS = ["dependabot-updates"]
27+
EXCLUDED_WORKFLOWS = []
2828
ISSUE_LABELS = ""
2929
ISSUE_TITLE = "Auto-Generated Testing Report"
3030

@@ -101,10 +101,6 @@ def get_workflows(client, repo_name)
101101
workflow_file = File.basename(wf.path)
102102
puts "------------"
103103
puts "workflow_file: %s" % [workflow_file]
104-
puts "mango"
105-
puts EXCLUDED_WORKFLOWS
106-
puts EXCLUDED_WORKFLOWS.include?(workflow_file)
107-
puts "banana"
108104
if EXCLUDED_WORKFLOWS.include?(workflow_file)
109105
puts workflow_file + " is excluded in the report."
110106
next

.github/workflows/generate_issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
access-token: '${{ secrets.GITHUB_TOKEN }}'
2727
# This is to exclude workflows that will be searched in the nightly report.
28-
exclude-workflow-files: 'performance-integration-tests.yml, sessions-integration-tests.yml, codeql'
28+
exclude-workflow-files: 'performance-integration-tests.yml, sessions-integration-tests.yml, codeql, dependabot-updates'
2929

3030
test_generate_an_issue:
3131
# Don't run on private repo.
@@ -39,6 +39,6 @@ jobs:
3939
with:
4040
access-token: '${{ secrets.GITHUB_TOKEN }}'
4141
# This is to exclude workflows that will be searched in the nightly report.
42-
exclude-workflow-files: 'performance-integration-tests.yml, sessions-integration-tests.yml, codeql'
42+
exclude-workflow-files: 'performance-integration-tests.yml, sessions-integration-tests.yml, codeql, dependabot-updates'
4343
issue-labels: 'nightly-testing-report-generation-test'
4444
issue-title: 'Nightly Testing Report For Presubmit Testing'

0 commit comments

Comments
 (0)