-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drop! use a temp channel for testing
- Loading branch information
1 parent
34cc63c
commit 0ec334b
Showing
1 changed file
with
1 addition
and
16 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,21 +28,6 @@ jobs: | |
sudo pip install ansi2html | ||
- name: Start Trino | ||
run: ./bin/run-trino.sh | ||
- name: Execute queries | ||
run: | | ||
./bin/reports.sh reports/ci-cd/index.md "Trino CI/CD Reports" sql/ci-cd/{health,failing-jobs,success-ratio-per-day,runs-queue-time-per-day,runs-duration-per-day,runs-job-cumulative-duration-per-day,jobs-duration}.sql | ||
./bin/reports.sh reports/flaky/index.md "Trino Flaky Tests" sql/flaky/{jobs,jobs-week,tests,classes}.sql | ||
./bin/reports.sh reports/pr/index.md "Trino PR Reports" sql/pr/{idents,burndown,authors-per-month,changes-per-month,prs-per-author,reviewers-per-pr,reviews-per-author-assoc,top-reviewers,top-authors,top-mergers,sith-lords,mergers-authors,reviewers-top-authors,time-to-merge,time-to-merge-per-size,avg-time-to-merge,time-to-first-review,avg-time-to-first-review,reviewer-responsiveness,author-responsiveness,open-pr-age,awaiting-review,inactivity-on-prs,abandoned-prs,running-prs,stale-prs}.sql | ||
- name: Commit report | ||
run: | | ||
# pull in case someone pushed commits during reports generation, which can take a while | ||
# if there are conflicts, this will fail | ||
git pull --ff-only | ||
git config user.name 'GitHub Automation' | ||
git config user.email '' | ||
git add --all reports/ | ||
git commit -m "Automated report" | ||
git push | ||
- name: Dump Trino logs | ||
if: always() | ||
run: | | ||
|
@@ -62,7 +47,7 @@ jobs: | |
id: slack | ||
uses: slackapi/[email protected] | ||
with: | ||
channel-id: 'core-dev' | ||
channel-id: 'tmp-reports' | ||
slack-message: | | ||
CI Health: | ||
``` | ||
|