├── README.md ├── images ├── WMDEGitHubBanner.png ├── WMDEGitHubOrgLogo.png └── WMDEGitHubPreview.png ├── workflow-templates ├── dependabot-gerrit.properties.json ├── dependabot-gerrit.yml └── dependabot-gerrit.svg ├── LICENSE.md └── profile └── README.md /README.md: -------------------------------------------------------------------------------- 1 | # .github 2 | 3 | Community health files for [@wmde](https://github.com/wmde). -------------------------------------------------------------------------------- /images/WMDEGitHubBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/.github/main/images/WMDEGitHubBanner.png -------------------------------------------------------------------------------- /images/WMDEGitHubOrgLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/.github/main/images/WMDEGitHubOrgLogo.png -------------------------------------------------------------------------------- /images/WMDEGitHubPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/.github/main/images/WMDEGitHubPreview.png -------------------------------------------------------------------------------- /workflow-templates/dependabot-gerrit.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WMDE Dependabot workflow", 3 | "description": "Adds a dependabot workflow that pushes dependabot pullrequests to gerrit.", 4 | "iconName": "dependabot-gerrit", 5 | "categories": [ 6 | "Dependabot", 7 | "Gerrit" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /workflow-templates/dependabot-gerrit.yml: -------------------------------------------------------------------------------- 1 | name: Dependabot to Gerrit 2 | on: 3 | pull_request_target: 4 | types: [opened, reopened, synchronize, closed] 5 | jobs: 6 | open-or-update-change: 7 | runs-on: ubuntu-latest 8 | if: github.actor == 'dependabot[bot]' 9 | steps: 10 | - name: Run dependabot gerrit action 11 | uses: wmde/dependabot-gerrit-action@main 12 | with: 13 | password: ${{ secrets.DEPENDABOT_GERRIT_PASSWORD }} 14 | user: Addbot 15 | email: addshorewiki+addbot-dependabot@gmail.com 16 | -------------------------------------------------------------------------------- /workflow-templates/dependabot-gerrit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | BSD 3-Clause License 2 | 3 | Copyright (c) 2021, Wikimedia Deutschland e. V. 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | 1. Redistributions of source code must retain the above copyright notice, this 10 | list of conditions and the following disclaimer. 11 | 12 | 2. Redistributions in binary form must reproduce the above copyright notice, 13 | this list of conditions and the following disclaimer in the documentation 14 | and/or other materials provided with the distribution. 15 | 16 | 3. Neither the name of the copyright holder nor the names of its 17 | contributors may be used to endorse or promote products derived from 18 | this software without specific prior written permission. 19 | 20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | -------------------------------------------------------------------------------- /profile/README.md: -------------------------------------------------------------------------------- 1 | [![logo](https://raw.githubusercontent.com/wmde/.github/main/images/WMDEGitHubBanner.png)](https://github.com/wmde) 2 | 3 | Wikimedia Deutschland is the German chapter of the global [Wikimedia movement](https://www.wikimedia.org/). Our technical focus is on [Wikidata](https://www.wikidata.org/), the [Wikibase ecosystem](https://wikiba.se/) and software that serves the German-speaking and the wider Wikimedia community. 4 | 5 | ## Our projects 6 | 7 | ### Wikidata 8 | 9 | A collaboratively edited multilingual knowledge graph that powers Wikipedia, Wikivoyage, Wiktionary, Wikisource and many other sites and services beyond Wikimedia projects. See [wikidata.org](https://www.wikidata.org). 10 | 11 | ### Wikibase Suite 12 | 13 | A dockerized deployment of Wikibase, the technology behind Wikidata. It allows you to host your own linked open data knowledge base. See [our installation guide](https://github.com/wmde/wikibase-release-pipeline/tree/main/deploy). 14 | 15 | ### Wikibase Cloud 16 | A fully managed Wikibase instance made available quickly and easily for those who want their own knowledge graph. See [wikibase.cloud](https://www.wikibase.cloud). 17 | 18 | ### Fundraising Tech 19 | 20 | Software that powers Wikimedia Deutschland's fundraising efforts including APIs, user interfaces, banners and more. See [spenden.wikimedia.de](https://spenden.wikimedia.de/). 21 | 22 | ### Technical Wishes 23 | 24 | A dedicated team that builds new and improved features for the MediaWiki community. Our code is hosted on [GitLab](https://gitlab.com/wmde) and Gerrit. See [our page on Meta-Wiki](https://meta.wikimedia.org/wiki/WMDE_Technical_Wishes). 25 | 26 | ## Our movement 27 | 28 | The Wikimedia Movement is a global community of contributors to the Wikimedia projects, including Wikipedia, Wikidata and many others. There are chapters across the world that maintain the projects for their communities and create software and tools for all to benefit from. For those looking to learn more about software in the Wikimedia movement, please see the [Wikimedia Foundation](https://github.com/wikimedia) and [Wikidata](https://github.com/Wikidata) GitHub organizations. 29 | --------------------------------------------------------------------------------