Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Bradley (0.22 sec)

  1. .cm/plugins/filters/isEnabledUser/index.js

    /**
     * @module isEnabledUser
     * @description Returns true if the username that is passed to this function is a member of the Gradle BT Team who has opted into gitStream automations.
     * @param {string} Input - The GitHub username to check.
     * @returns {boolean} Returns true if the user is specified in any of the lists of Gradle BT team members above, otherwise false.
     * @example {{ pr.author | isEnabledUser }}
     */
    function isEnabledUser(username) {
    JavaScript
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Mon Feb 05 22:00:34 GMT 2024
    - 923 bytes
    - Viewed (0)
  2. .cm/plugins/filters/byCodeowner/index.js

                const owners = resolveCodeowners(mapping, f);
                console.log("Owners for: " + f + " are: " + owners);
                owners.filter(i => typeof i === 'string')
                    .map(u => u.replace(/^@gradle\//, ""))
                    .forEach(owner => {
                        if (!result.has(owner)) {
                            result.set(owner, []);
                        }
                        result.get(owner).push(f);
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 19:12:32 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  3. .cm/plugins/filters/isEnabledAutomation/index.js

     * </ul>
     *
     * or
     *
     * <ul>
     *     <li>The author is a member of the Gradle organization,</li>
     *     <li>and has opted into the automation by adding their username to the appropriate map entry above.</li>
     * </ul>
     *
     * or
     *
     * <ul>
     *     <li>The author is NOT a member of the Gradle organization,</li>
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.1K bytes
    - Viewed (0)
Back to top