feat(locale): add id_ID translation for animal, color, commerce, and word also add country to location id_ID translation. #9300
Workflow file for this run
This file contains hidden or 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
name: PR Labels | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- edited | |
- labeled | |
- unlabeled | |
merge_group: | |
permissions: {} | |
jobs: | |
fail-by-blocking-label: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name != 'merge_group' }} | |
steps: | |
- name: Check for blocking labels | |
run: | | |
BLOCKING_LABELS=("do NOT merge yet" "s: on hold") | |
PR_LABELS=$(jq -r '.pull_request.labels[].name' "$GITHUB_EVENT_PATH") | |
for LABEL in "${BLOCKING_LABELS[@]}"; do | |
if [[ "$PR_LABELS" == *"$LABEL"* ]]; then | |
echo "This PR has a blocking label: $LABEL" | |
exit 1 | |
fi | |
done | |
echo "No blocking labels found" |