Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 364 for Runs (0.02 seconds)

  1. .github/workflows/helm-lint.yml

    # updated.
    concurrency:
      group: ${{ github.workflow }}-${{ github.head_ref }}
      cancel-in-progress: true
    
    permissions:
      contents: read
    
    jobs:
      release:
        runs-on: ubuntu-latest
        steps:
          - name: Checkout
            uses: actions/checkout@v4
    
          - name: Install Helm
            uses: azure/setup-helm@v4
    
          - name: Run helm lint
            run: |
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Jun 09 09:13:09 GMT 2024
    - 551 bytes
    - Click Count (0)
  2. .github/workflows/sync-main-branch.yml

    # Synchronize all pushes to 'master' branch with 'main' branch to facilitate migration
    name: "Sync main branch"
    on:
      push:
        branches:
          - master
    
    jobs:
      sync_latest_from_upstream:
        runs-on: ubuntu-latest
        name: Sync latest commits from master branch
    
        steps:
          - name: Checkout target repo
            uses: actions/checkout@v2
            with:
              ref: main
    
          - name: Sync upstream changes
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 22:51:33 GMT 2021
    - 689 bytes
    - Click Count (0)
  3. .github/workflows/depsreview.yaml

    name: 'Dependency Review'
    on: [pull_request]
    
    permissions:
      contents: read
    
    jobs:
      dependency-review:
        runs-on: ubuntu-latest
        steps:
          - name: 'Checkout Repository'
            uses: actions/checkout@v4
          - name: 'Dependency Review'
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Mar 28 23:44:49 GMT 2024
    - 296 bytes
    - Click Count (0)
  4. .github/workflows/publish.yml

    name: Publish
    
    on:
      release:
        types:
          - created
    
    jobs:
      publish:
        runs-on: ubuntu-latest
        permissions:
          id-token: write
          contents: read
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v6
          - name: Set up Python
            uses: actions/setup-python@v6
            with:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 21 16:45:15 GMT 2026
    - 629 bytes
    - Click Count (0)
  5. .github/workflows/notify-translations.yml

          debug_enabled:
            description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
            required: false
            default: 'false'
    
    jobs:
      job:
        runs-on: ubuntu-latest
        permissions:
          discussions: write
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:02:57 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  6. .github/workflows/smokeshow.yml

    name: Smokeshow
    
    on:
      workflow_run:
        workflows: [Test]
        types: [completed]
    
    permissions:
      statuses: write
    
    jobs:
      smokeshow:
        runs-on: ubuntu-latest
    
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v6
          - uses: actions/setup-python@v6
            with:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Mar 03 00:12:02 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  7. .github/workflows/maven.yml

    name: Java CI with Maven
    
    on:
      push:
        branches: [ master ]
      pull_request:
        branches: [ master ]
    
    jobs:
      build:
    
        runs-on: ubuntu-latest
    
        steps:
        - uses: actions/checkout@v4
        - name: Set up JDK 17
          uses: actions/setup-java@v4
          with:
            java-version: '17'
            distribution: 'temurin'
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Jul 31 06:32:26 GMT 2025
    - 574 bytes
    - Click Count (0)
  8. src/test/java/jcifs/AllTestsSuite.java

    package jcifs;
    
    import org.junit.platform.suite.api.SelectPackages;
    import org.junit.platform.suite.api.Suite;
    import org.junit.platform.suite.api.SuiteDisplayName;
    
    /**
     * Test suite that runs all JCIFS tests
     */
    @Suite
    @SuiteDisplayName("JCIFS Complete Test Suite")
    @SelectPackages({ "jcifs.util", "jcifs.smb", "jcifs.config", "jcifs.internal.smb2", "jcifs.ntlmssp" })
    public class AllTestsSuite {
        // Test suite configuration
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 433 bytes
    - Click Count (0)
  9. .github/workflows/issues.yaml

    # @format
    
    name: Issue Workflow
    
    on:
      issues:
        types:
          - opened
    
    jobs:
      add-to-project:
        name: Add issue to project
        runs-on: ubuntu-latest
        steps:
          - uses: actions/add-to-project@v0.5.0
            with:
              project-url: https://github.com/orgs/miniohq/projects/2
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Jan 11 07:02:00 GMT 2024
    - 338 bytes
    - Click Count (0)
  10. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/precommit/PrecommitTaskPlugin.java

            TaskProvider<Task> precommit = project.getTasks().register(PrecommitPlugin.PRECOMMIT_TASK_NAME, t -> {
                t.setGroup(JavaBasePlugin.VERIFICATION_GROUP);
                t.setDescription("Runs all non-test checks");
            });
    
            project.getPluginManager()
                    .withPlugin(
                            "lifecycle-base",
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 23 09:36:58 GMT 2021
    - 1.8K bytes
    - Click Count (0)
Back to Top