Initial commit

This commit is contained in:
deepin-community-ci-bot[bot] 2023-02-15 04:54:53 +00:00 committed by GitHub
commit 3beed837f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 156 additions and 0 deletions

12
.github/workflows/backup-to-gitlab.yml vendored Normal file

@ -0,0 +1,12 @@
name: backup to gitlab
on: [push]
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
backup-to-gitlabwh:
uses: deepin-community/.github/.github/workflows/backup-to-gitlabwh.yml@master
secrets:
BRIDGETOKEN: ${{ secrets.BRIDGETOKEN }}

17
.github/workflows/call-auto-tag.yml vendored Normal file

@ -0,0 +1,17 @@
name: auto tag
on:
pull_request_target:
types: [opened, synchronize, closed]
paths:
- "debian/changelog"
concurrency:
group: ${{ github.workflow }}-pull/${{ github.event.number }}
cancel-in-progress: true
jobs:
auto_tag:
uses: deepin-community/.github/.github/workflows/auto-tag.yml@master
secrets:
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}

17
.github/workflows/call-build-deb.yml vendored Normal file

@ -0,0 +1,17 @@
name: Call build-deb
on:
pull_request_target:
paths-ignore:
- ".github/workflows/**"
types: [ opened, closed, synchronize ]
concurrency:
group: ${{ github.workflow }}-pull/${{ github.event.number }}
cancel-in-progress: true
jobs:
check_job:
if: github.event.action != 'closed' || github.event.pull_request.merged
uses: deepin-community/.github/.github/workflows/build-deb.yml@master
secrets:
BridgeToken: ${{ secrets.BridgeToken }}

14
.github/workflows/call-build-tag.yml vendored Normal file

@ -0,0 +1,14 @@
name: tag build
on:
push:
tags: "*"
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
uses: deepin-community/.github/.github/workflows/build-tag.yml@master
secrets:
BridgeToken: ${{ secrets.BridgeToken }}

10
.github/workflows/call-chatOps.yml vendored Normal file

@ -0,0 +1,10 @@
name: chatOps
on:
issue_comment:
types: [created]
jobs:
chatopt:
uses: deepin-community/.github/.github/workflows/chatOps.yml@master
secrets:
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}

37
.obs/workflows.yml Normal file

@ -0,0 +1,37 @@
test_build:
steps:
- link_package:
source_project: deepin:Develop:community
source_package: %{SCM_REPOSITORY_NAME}
target_project: deepin:CI
- configure_repositories:
project: deepin:CI
repositories:
- name: deepin_develop
paths:
- target_project: deepin:CI
target_repository: deepin_develop
architectures:
- x86_64
- aarch64
filters:
event: pull_request
tag_build:
steps:
- branch_package:
source_project: deepin:Develop:community
source_package: %{SCM_REPOSITORY_NAME}
target_project: deepin:Unstable:community
filters:
event: tag_push
commit_build:
steps:
- trigger_services:
project: deepin:Develop:community
package: %{SCM_REPOSITORY_NAME}
filters:
event: push

1
README.md Normal file

@ -0,0 +1 @@
# template-repository

5
debian/changelog vendored Normal file

@ -0,0 +1,5 @@
template-repository (1.0-1) unstable; urgency=medium
* Initial release
-- Tsic404 <liuheng@deepin.org> Sat, 28 Jan 2023 13:46:49 +0800

1
debian/compat vendored Normal file

@ -0,0 +1 @@
11

15
debian/control vendored Normal file

@ -0,0 +1,15 @@
Source: template-repository
Section: unknown
Priority: optional
Maintainer: Tsic404 <liuheng@deepin.org>
Build-Depends: debhelper (>= 11)
Standards-Version: 4.1.3
Homepage: https://github.com/deepin-community/template-repository
#Vcs-Browser: https://salsa.debian.org/debian/deepin-community-template-repository
#Vcs-Git: https://salsa.debian.org/debian/deepin-community-template-repository.git
Package: template-repository
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: <insert up to 60 chars description>
<insert long description, indented with spaces>

22
debian/copyright vendored Normal file

@ -0,0 +1,22 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: template-repository
Source: https://github.com/deepin-community/template-repository
Files: *
Copyright: 2023 Tsic404 <liuheng@deepin.org>
License: GPL-2+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>
.
On Debian systems, the complete text of the GNU General
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".

4
debian/rules vendored Executable file

@ -0,0 +1,4 @@
#!/usr/bin/make -f
%:
dh $@

1
debian/source/format vendored Normal file

@ -0,0 +1 @@
3.0 (quilt)