code.gitea.io/gitea@v1.22.3/docs/content/development/integrations.en-us.md (about)

     1  ---
     2  date: "2019-04-15T17:29:00+08:00"
     3  title: "Integrations"
     4  slug: "integrations"
     5  sidebar_position: 65
     6  toc: false
     7  draft: false
     8  aliases:
     9    - /en-us/integrations
    10  menu:
    11    sidebar:
    12      parent: "development"
    13      name: "Integrations"
    14      sidebar_position: 65
    15      identifier: "integrations"
    16  ---
    17  
    18  # Integrations
    19  
    20  Gitea has a wonderful community of third-party integrations, as well as first-class support in various other
    21  projects.
    22  
    23  We are curating a list over at [awesome-gitea](https://gitea.com/gitea/awesome-gitea) to track these!
    24  
    25  If you are looking for [CI/CD](https://gitea.com/gitea/awesome-gitea#user-content-devops),
    26  an [SDK](https://gitea.com/gitea/awesome-gitea#user-content-sdk),
    27  or even some extra [themes](https://gitea.com/gitea/awesome-gitea#user-content-themes),
    28  you can find them listed in the [awesome-gitea](https://gitea.com/gitea/awesome-gitea) repository!
    29  
    30  ## Pre-Fill New File name and contents
    31  
    32  If you'd like to open a new file with a given name and contents,
    33  you can do so with query parameters:
    34  
    35  ```txt
    36  GET /{{org}}/{{repo}}/_new/{{filepath}}
    37      ?filename={{filename}}
    38      &value={{content}}
    39  ```
    40  
    41  For example:
    42  
    43  ```txt
    44  GET https://git.example.com/johndoe/bliss/_new/articles/
    45      ?filename=hello-world.md
    46      &value=Hello%2C%20World!
    47  ```