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
| import React from "react"; | |
| import { List, ListItem, TextBlock } from "@shopify/ui-extensions-react/checkout"; | |
| /** | |
| * Represents open tag. | |
| * @typedef {Object} OpenTag | |
| * @property {number} start - Indicates the start position of the open tag. | |
| * @property {number} end - Indicates the end position of the open tag. | |
| * @property {string} name - Name of the tag. | |
| * @property {string[]} classes - Classes of the tag. |
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
| ## | |
| ## Example: | |
| ## [your-repo] $ python ../path/to/script/git_release_branches.py | |
| ## | |
| import subprocess | |
| import re | |
| from typing import List, Dict | |
| def get_branch_list() -> List[str]: |