Skip to content

Commit 543aadc

Browse files
Initial commit
0 parents  commit 543aadc

12 files changed

+144
-0
lines changed
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: backup to gitlab
2+
on: [push]
3+
4+
concurrency:
5+
group: ${{ github.workflow }}
6+
cancel-in-progress: true
7+
8+
jobs:
9+
backup-to-gitlabwh:
10+
uses: deepin-community/.github/.github/workflows/backup-to-gitlabwh.yml@master
11+
secrets:
12+
BRIDGETOKEN: ${{ secrets.BRIDGETOKEN }}

.github/workflows/call-auto-tag.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: auto tag
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, synchronize, closed]
6+
paths:
7+
- "debian/changelog"
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-pull/${{ github.event.number }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
auto_tag:
15+
uses: deepin-community/.github/.github/workflows/auto-tag.yml@master
16+
secrets:
17+
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}

.github/workflows/call-chatOps.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: chatOps
2+
on:
3+
issue_comment:
4+
types: [created]
5+
6+
jobs:
7+
chatopt:
8+
uses: deepin-community/.github/.github/workflows/chatOps.yml@master
9+
secrets: inherit

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# template-repository

debian/changelog

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
template-repository (1.0-1) unstable; urgency=medium
2+
3+
* Initial release
4+
5+
-- Tsic404 <[email protected]> Sat, 28 Jan 2023 13:46:49 +0800

debian/compat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
11

debian/control

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Source: template-repository
2+
Section: unknown
3+
Priority: optional
4+
Maintainer: Tsic404 <[email protected]>
5+
Build-Depends: debhelper (>= 11)
6+
Standards-Version: 4.1.3
7+
Homepage: https://github.com/deepin-community/template-repository
8+
#Vcs-Browser: https://salsa.debian.org/debian/deepin-community-template-repository
9+
#Vcs-Git: https://salsa.debian.org/debian/deepin-community-template-repository.git
10+
11+
Package: template-repository
12+
Architecture: any
13+
Depends: ${shlibs:Depends}, ${misc:Depends}
14+
Description: <insert up to 60 chars description>
15+
<insert long description, indented with spaces>

debian/copyright

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

debian/deepin/OWNERS

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# See the OWNERS docs at https://go.k8s.io/owners
2+
3+
reviewers:
4+
- Zeno-sole
5+
- tsic404
6+
- hudeng-go
7+
- myml
8+
- BLumia
9+
- xzl01
10+
- UTsweetyfish
11+
- Rabenda
12+
- zccrs
13+
- justforlxz
14+
- Clansty
15+
- chenchongbiao
16+
approvers:
17+
- Zeno-sole
18+
- xzl01
19+
- UTsweetyfish
20+
- hudeng-go
21+
- zccrs

debian/deepin/workflows.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
test_build:
2+
steps:
3+
- link_package:
4+
source_project: deepin:Develop:community
5+
source_package: %{SCM_REPOSITORY_NAME}
6+
target_project: deepin:CI
7+
8+
- configure_repositories:
9+
project: deepin:CI
10+
repositories:
11+
- name: deepin_develop
12+
paths:
13+
- target_project: deepin:CI
14+
target_repository: deepin_develop
15+
architectures:
16+
- x86_64
17+
- aarch64
18+
19+
filters:
20+
event: pull_request
21+
22+
tag_build:
23+
steps:
24+
- trigger_services:
25+
project: deepin:Unstable:community
26+
package: %{SCM_REPOSITORY_NAME}
27+
filters:
28+
event: tag_push
29+
30+
commit_build:
31+
steps:
32+
- trigger_services:
33+
project: deepin:Develop:community
34+
package: %{SCM_REPOSITORY_NAME}
35+
filters:
36+
event: push

debian/rules

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/make -f
2+
3+
%:
4+
dh $@

debian/source/format

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (quilt)

0 commit comments

Comments
 (0)