Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for PR (0.04 sec)

  1. .github/workflows/pr-automation.yml

    # specific language governing permissions and limitations
    # under the License.
    
    name: PR Automation
    on:
      pull_request_target:
        types:
          - closed
    
    jobs:
      pr-automation:
        name: PR Automation
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-15 08:33
    - 991 bytes
    - Viewed (0)
  2. .github/workflows/contributor-pr.yml

    concurrency:
      # On master/release, we don't want any jobs cancelled so the sha is used to name the group
      group: ${{ (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/release' ) && format('contributor-pr-base-{0}', github.sha) || format('contributor-pr-{0}', github.ref) }}
      cancel-in-progress: false
    
    env:
      # Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated
      DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-03-11 09:47
    - 4.1K bytes
    - Viewed (0)
  3. .github/workflows/stale-pr.yml

              close-issue-reason: not_planned
    
              # PULL REQUESTS -----------------------------------------------------
              days-before-pr-stale: 30
              exempt-pr-labels: "from:contributor"
              stale-pr-label: stale
              stale-pr-message: >
                This pull request has been automatically marked as stale because it has not had recent activity.
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-05-02 09:13
    - 1.7K bytes
    - Viewed (0)
  4. .github/workflows/issue-on-pr-rollback.yml

    # limitations under the License.
    # ==============================================================================
    
    name: Creates a GitHub Issue when a PR Rolled back via Commit to Master
    on:
      push:
        branches:
          - master
          
    permissions: {}
    
    jobs:
      create-issue-on-pr-rollback:
        runs-on: ubuntu-latest
        permissions:
          contents: read
          issues: write
          pull-requests: read
        if: |
    Registered: 2025-05-27 12:39
    - Last Modified: 2024-11-01 08:40
    - 1.5K bytes
    - Viewed (0)
  5. .github/workflows/auto-assign-pr-to-author.yml

    name: 'Auto Assign PR to Author'
    on:
      pull_request:
        types: [opened]
    
    permissions: {}
    
    jobs:
      add-reviews:
        permissions:
          contents: read  # for kentaro-m/auto-assign-action to fetch config file
          pull-requests: write  # for kentaro-m/auto-assign-action to assign PR reviewers
        runs-on: ubuntu-latest
        steps:
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-11-12 13:13
    - 381 bytes
    - Viewed (0)
  6. scripts/notify_translations.py

        label_strs = {label.name for label in pr.get_labels()}
        langs = []
        for label in label_strs:
            if label.startswith("lang-") and not label == lang_all_label:
                langs.append(label[5:])
        logging.info(f"PR #{pr.number} has labels: {label_strs}")
        if not langs or lang_all_label not in label_strs:
            logging.info(f"PR #{pr.number} doesn't seem to be a translation PR, skipping")
            sys.exit(0)
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-01-28 22:30
    - 12.7K bytes
    - Viewed (0)
  7. docs/en/docs/management-tasks.md

    * Before the PR is applied, the new tests should fail.
    * After applying the PR, the new tests should pass.
    * Coverage should stay at 100%.
    * If you see the PR makes sense, or we discussed it and considered it should be accepted, you can add commits on top of the PR to tweak it, to add docs, tests, format, refactor, remove extra files, etc.
    * Feel free to comment in the PR to ask for more information, to suggest changes, etc.
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 16:39
    - 14.2K bytes
    - Viewed (0)
  8. scripts/contributors.py

        translators = Counter[str]()
        authors: dict[str, Author] = {}
    
        for pr in pr_nodes:
            if pr.author:
                authors[pr.author.login] = pr.author
            is_lang = False
            for label in pr.labels.nodes:
                if label.name == "lang-all":
                    is_lang = True
                    break
            for review in pr.reviews.nodes:
                if review.author:
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-01-02 17:03
    - 8.6K bytes
    - Viewed (0)
  9. .github/workflows/create_issue.js

     * limitations under the License.
     * =============================================================================
     */
    
    /** Extracts PR from commit message and creates a GitHub Issue on Rollback of PR
      Created issue is assigned to original PR owner and reviewer.
    
      @param {!object}
        github enables querying for PR and also create issue using rest endpoint
        context has the commit message details in the payload
    Registered: 2025-05-27 12:39
    - Last Modified: 2021-10-18 23:04
    - 2.8K bytes
    - Viewed (0)
  10. scripts/label_approved.py

                logging.debug(f"Processable PR: {pr.number}")
                if len(approved_reviews) >= conf.number:
                    logging.info(f"Adding label to PR: {pr.number}")
                    pr.add_to_labels(approved_label)
                    if conf.await_label:
                        logging.info(f"Removing label from PR: {pr.number}")
                        pr.remove_from_labels(conf.await_label)
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-10-12 13:58
    - 2.2K bytes
    - Viewed (0)
Back to top