### Executing Flutter Release Report Shell Script with Date Source: https://github.com/flutter/flutter-github-scripts.dart/blob/master/README.md An example command demonstrating how to run the `run_release_report.sh` script with a specific end date in ISO-8601 format. This generates a report spanning from a default start date (Flutter 2.2) up to the specified date. The script relies on `pandoc` and underlying Dart scripts. Requires `pandoc` installed. ```Shell ./run-release-reports.sh 2021-06-25T09:24:00-0700 ``` -------------------------------- ### Running Flutter Release Report Shell Script Source: https://github.com/flutter/flutter-github-scripts.dart/blob/master/README.md This is the primary shell script for generating a comprehensive release report for the Flutter repository. It orchestrates the execution of several underlying Dart scripts and uses `pandoc` to convert generated Markdown files into DOCX and HTML formats. It requires the `GITHUB_TOKEN` environment variable and potentially a `go_flutter_org_members.csv` file (not included). Requires `pandoc` installed. ```Shell run_release_report.sh [to-date] ``` -------------------------------- ### Getting Issue Summary Dart Script Source: https://github.com/flutter/flutter-github-scripts.dart/blob/master/README.md This Dart script retrieves and returns a summary of a specific GitHub issue. It requires the issue number as an argument and can optionally output the summary in TSV format using the `--tsv` flag. Requires the `GITHUB_TOKEN` environment variable to access GitHub data. ```Shell dart bin/issue.dart [--tsv] issue-number ``` -------------------------------- ### Getting Pull Request Summary Dart Script Source: https://github.com/flutter/flutter-github-scripts.dart/blob/master/README.md This Dart script retrieves and returns a summary of a specific GitHub Pull Request. It requires the PR number as an argument and can optionally output the summary in TSV format using the `--tsv` flag. Requires the `GITHUB_TOKEN` environment variable to access GitHub data. ```Shell dart bin/pr.dart [--tsv] pr-number ``` -------------------------------- ### Running Daily P0 Issue Report Dart Script Source: https://github.com/flutter/flutter-github-scripts.dart/blob/master/README.md This Dart script generates a Markdown report summarizing the status of `P0` issues (open, opened in period, closed in period). It accepts optional `from-date` and `to-date` arguments, defaulting to the previous week if none are provided. The output is formatted for potential conversion to other formats like DOCX via `pandoc`. Requires the `GITHUB_TOKEN` environment variable to access GitHub data. ```Shell dart bin/today_report.dart [-f from-date] [-t to-date] ``` -------------------------------- ### Running General Report Tool Dart Script Source: https://github.com/flutter/flutter-github-scripts.dart/blob/master/README.md This Dart script acts as a wrapper for several sub-tools (`commit-activity`, `release`, `weekly`) used for querying GitHub information related to commit activity, release reports, and weekly issue/PR reports. Specific usage depends on the chosen subcommand, e.g., `dart bin/report.dart weekly`. Requires the `GITHUB_TOKEN` environment variable to access GitHub data. ```Shell dart bin/report.dart [subcommand] [options] ``` -------------------------------- ### Running Performance Issue Report Dart Script Source: https://github.com/flutter/flutter-github-scripts.dart/blob/master/README.md This Dart script generates a Markdown report summarizing the status of `severe: performance` issues (open, opened in period, closed in period). It accepts optional `from-date` and `to-date` arguments, defaulting to the previous week. The output is formatted for potential conversion to other formats like DOCX via `pandoc`. Requires the `GITHUB_TOKEN` environment variable to access GitHub data. ```Shell dart bin/performance_report.dart [-f from-date] [-t to-date] ``` -------------------------------- ### Running Regression Issue Report Dart Script Source: https://github.com/flutter/flutter-github-scripts.dart/blob/master/README.md This Dart script generates a Markdown report summarizing the status of `severe: regression` issues (open, opened in period, closed in period). It accepts optional `from-date` and `to-date` arguments, defaulting to the previous week. The output is formatted for potential conversion to other formats like DOCX via `pandoc`. Requires the `GITHUB_TOKEN` environment variable to access GitHub data. ```Shell dart bin/regression_report.dart [-f from-date] [-t to-date] ``` -------------------------------- ### Running Open Issue Count by Week Dart Script Source: https://github.com/flutter/flutter-github-scripts.dart/blob/master/README.md This Dart script generates a TSV document listing the number of issues opened each week. It accepts optional `from-date` and `to-date` arguments, defaulting to the previous week. Weeks are defined as ending on Saturday. Requires the `GITHUB_TOKEN` environment variable to access GitHub data. ```Shell dart bin/open_issue_count_by_week.dart [-f from-date] [-t to-date] ``` -------------------------------- ### Running Weekly PR Landed Dart Script Source: https://github.com/flutter/flutter-github-scripts.dart/blob/master/README.md This Dart script generates a CSV report of the number of Pull Requests merged into Flutter repositories each week. It can optionally take `from-date` and `to-date` arguments to specify the reporting period; otherwise, it defaults to 2019-11-01 to the current date. Requires the `GITHUB_TOKEN` environment variable to access GitHub data. ```Shell dart bin/prs_landed_weekly.dart [-f from-date] [-t to-date] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.