Review completed for all artifact groups, without truncation:
- en-US: D001-D425, I001-I152
- es: D001-D161, I001-I021
- fr: D001-D438, I001-I052
- ja: D001-D421, I001-I048
- ko: D001-D117, I001
- pt-BR: D001-D077, I001-I003
| name: Report build issues | |
| on: | |
| workflow_call: | |
| inputs: | |
| build-issues-artifact-id: | |
| description: The ID of the artifact containing the issues.json file | |
| required: true | |
| type: string | |
| content-path: |
| git-bisect-search() { | |
| if [ -z "$1" ]; then | |
| echo "Usage: $0 <pattern>" | |
| return 1 | |
| fi | |
| local pattern="$1" | |
| git bisect start | |
| git bisect bad HEAD |
| #!/usr/bin/env sh | |
| if [[ -z "$1" ]]; then | |
| echo "Usage: $0 <test> [<expected>]" | |
| exit 1 | |
| fi | |
| test=$1; | |
| expected=$2; |
| #!/usr/bin/env sh | |
| gh run list -c `git rev-parse HEAD` --status=failure --json 'databaseId' | jq -r '.[] | .databaseId' | xargs -n1 gh run rerun --failed |
| #!/usr/bin/env sh | |
| gh run list --workflow 'auto-merge' --status=failure --json 'databaseId' | jq -r '.[] | .databaseId' | xargs -n1 gh run rerun --failed |
| import { writeFileSync } from "node:fs"; | |
| import { octokit } from "./lib.js"; | |
| async function pullRequests(login, repo, limit, { columns }) { | |
| const items = []; | |
| let after = null; | |
| let hasNextPage = false; | |
| do { |
| function recordVariableTypes(name: string, variables: Record<string, any>) { | |
| const types = Object.entries(variables).reduce( | |
| (obj, [key, value]) => ({ ...obj, [key]: typeOf(value) }), | |
| {} | |
| ); | |
| recordTypes(name, types); | |
| } | |
| function recordTypes(name: string, types: Record<string, string>) { | |
| const path = `types_${name}.json`; |
| <?php | |
| // Usage: | |
| // 1. Clone: https://github.com/vimeo/psalm.git | |
| // 2. Run this script inside the repository. | |
| $dir = __DIR__ . '/docs/running_psalm/'; | |
| $issues = glob($dir . 'issues/*.md'); | |
| $docs = file_get_contents($dir . 'error_levels.md'); | |
| foreach ($issues as $issue) { |