Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 70 for stessi (0.03 seconds)

  1. .teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt

        init {
            id("Promotion_AllBranchesStartReleaseCycleTest")
            name = "Start Release Cycle Test"
            description = "Test for Start Release Cycle pipeline"
    
            steps {
                gradleWrapper {
                    name = "PromoteTest"
                    tasks = "clean promoteStartReleaseCycle"
                    useGradleWrapper = true
                    gradleParams =
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Dec 29 08:57:18 GMT 2025
    - 2K bytes
    - Click Count (0)
  2. .github/workflows/release-notes.yml

    name: Check closed issue release notes
    
    on:
      issues:
        types: [ closed ]
    
    permissions: {}
    
    jobs:
      check_release_notes:
        permissions:
          issues: write
        runs-on: ubuntu-latest
        steps:
          # Check that release-note-worthy issues have a PR with release notes attached
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jul 04 15:13:53 GMT 2024
    - 344 bytes
    - Click Count (0)
  3. .github/workflows/auto-assign-pr-to-author.yml

      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:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 20 22:04:14 GMT 2026
    - 381 bytes
    - Click Count (0)
  4. .github/workflows/pull-metadata.yml

        types: [ closed, unlabeled, milestoned, demilestoned ]
    
    permissions: {}
    
    jobs:
      check_pull_metadata:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          # Check that PRs have proper metadata: labels and milestone
          # https://github.com/gradle/issue-management-action/blob/main/src/pull-metadata.ts
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Aug 11 09:00:56 GMT 2025
    - 480 bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/configurations/Gradleception.kt

                    separator = " ",
                )
    
            params {
                // Override the default commit id so the build steps produce reproducible distribution
                param("env.BUILD_COMMIT_ID", "HEAD")
            }
    
            if (buildJvm.version != BuildToolBuildJvm.version) {
                steps.gradleWrapper {
                    name = "UPDATE_DAEMON_JVM_CRITERIA_FILE"
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  6. .teamcity/src/main/kotlin/promotion/SanityCheck.kt

        id("Promotion_SanityCheck")
        name = "SanityCheck"
        description = "Sanity check for promotion project"
    
        vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().gradlePromoteVcsRootId())
    
        steps {
            gradleWrapper {
                tasks = "tasks"
                gradleParams = ""
            }
        }
    
        triggers {
            vcs {
                branchFilter = ""
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 18 14:06:58 GMT 2026
    - 866 bytes
    - Click Count (0)
  7. .github/workflows/issue-comment-triage.yml

    name: Comment on a closed issue
    
    on:
      issue_comment:
        types: [created]
    
    jobs:
      reconsider_closed_issue:
        runs-on: ubuntu-latest
        permissions:
          issues: write
        steps:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 18 13:38:51 GMT 2026
    - 253 bytes
    - Click Count (0)
  8. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

                    onDependencyCancel = FailureAction.FAIL_TO_START
                }
            }
    
            if (******@****.***sk != null) {
                steps {
                    buildStep(
                        ******@****.***arameters,
                        ******@****.***rName,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Dec 22 07:15:16 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  9. .github/workflows/validate-codeowners.yml

          - master
      pull_request:
      workflow_dispatch:
    
    permissions: { }
    
    jobs:
      code-owners-validation:
        permissions:
          contents: read
          id-token: write
        runs-on: ubuntu-latest
        steps:
          - name: Get Secrets
            uses: gradle/actions-internal/get-aws-secrets@v1
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Nov 20 22:15:20 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  10. .github/workflows/feedback.yml

      schedule:
        - cron: '0 * * * *' # every hour
      workflow_dispatch:
    
    permissions: {}
    
    jobs:
      feedback:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          # Feedback loop: ask for something on PR/Issue and close if not provided or return to the queue on update.
          # https://github.com/gradle/issue-management-action/blob/main/src/feedback.ts
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jun 17 13:58:59 GMT 2024
    - 482 bytes
    - Click Count (0)
Back to Top