Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,061 for issues (0.2 sec)

  1. .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
    Others
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Jan 11 07:02:00 GMT 2024
    - 338 bytes
    - Viewed (0)
  2. ISSUES.md

    If you open a GitHub Issue, here is our policy:
    
    1.  It must be a bug/performance issue or a feature request or a build issue or
        a documentation issue (for small doc fixes please send a PR instead).
    1.  Make sure the Issue Template is filled out.
    1.  The issue should be related to the repo it is created in.
    
    **Here's why we have this policy:** We want to focus on the work that benefits
    the whole community, e.g., fixing bugs and adding features. Individual support
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Thu Feb 11 22:37:27 GMT 2021
    - 606 bytes
    - Viewed (0)
  3. .github/workflows/stale-issues.yml

              days-before-issue-close: 7
              stale-issue-label: "stale"
              # reason for closed the issue default value is not_planned
              close-issue-reason: completed
              # List of labels to remove when issues/PRs unstale. 
              labels-to-remove-when-unstale: 'stat:awaiting response'
              only-labels: "stat:awaiting response"
              stale-issue-message: > 
    Others
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Thu Nov 23 20:04:38 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  4. .github/workflows/issue-metadata.yml

    name: Check issues metadata
    
    on:
      issues:
        types: [ opened, unlabeled, closed ]
    
    jobs:
      check_issue_metadata:
        runs-on: ubuntu-latest
        permissions:
          issues: write
        steps:
          # Check that issues have proper metadata: labels and milestone
          # https://github.com/gradle/issue-management-action/blob/main/src/issue-metadata.ts
          - uses: gradle/issue-management-action@v1
            with:
    Others
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Mon Jan 22 06:29:03 GMT 2024
    - 446 bytes
    - Viewed (0)
  5. .github/workflows/issue-manager.yml

    name: Issue Manager
    
    on:
      schedule:
        - cron: "10 3 * * *"
      issue_comment:
        types:
          - created
      issues:
        types:
          - labeled
      pull_request_target:
        types:
          - labeled
      workflow_dispatch:
    
    jobs:
      issue-manager:
        if: github.repository_owner == 'tiangolo'
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
    Others
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Tue Jan 30 18:46:56 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  6. .github/workflows/slack-notifier.yml

            with:
              payload: |
                {
                  "text": "<https://github.com/gradle/gradle/issues/${{ github.event.issue.number }}|[gradle/gradle#${{ github.event.issue.number }}]> `${{ github.event.issue.title }}` has label `${{ github.event.label.name }}`",
                  "blocks": [
                    {
                      "type": "section",
                      "text": {
    Others
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Tue Apr 04 06:43:15 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  7. .github/workflows/stale.yml

    jobs:
      stale:
        permissions:
          issues: write  # for actions/stale to close stale issues
          pull-requests: write  # for actions/stale to close stale PRs
        runs-on: ubuntu-latest
        env:
          ACTIONS_STEP_DEBUG: true
        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
            repo-token: ${{ secrets.GITHUB_TOKEN }}
    Others
    - Registered: Sun Apr 14 09:35:11 GMT 2024
    - Last Modified: Tue Apr 11 02:27:05 GMT 2023
    - 972 bytes
    - Viewed (0)
  8. .github/workflows/invalid_question.yml

    name: "Close invalid questions issues"
    on:
      schedule:
      - cron: "*/10 * * * *"
    
    permissions:
      contents: read
    
    jobs:
      stale:
        permissions:
          issues: write  # for actions/stale to close stale issues
          pull-requests: write  # for actions/stale to close stale PRs
        runs-on: ubuntu-latest
        env:
          ACTIONS_STEP_DEBUG: true
        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
    Others
    - Registered: Sun Apr 14 09:35:11 GMT 2024
    - Last Modified: Tue Apr 11 02:27:05 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/tensorflow_issue_template.yaml

    name: TensorFlow Issue Template
    description: Use this template to report TensorFlow-related issues
    body:
      - type: dropdown
        id: issue-type
        attributes:
          label: Issue type
          description: What type of issue would you like to report?
          multiple: false
          options:
            - Bug
            - Build/Install
            - Performance
            - Support
            - Feature Request
            - Documentation Feature Request
    Others
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Wed Jun 28 18:25:42 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  10. common/config/.golangci-format.yml

      # Default: 50
      max-issues-per-linter: 0
      # Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
    Others
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Fri Apr 05 03:02:37 GMT 2024
    - 2K bytes
    - Viewed (0)
Back to top