Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
deepin-community-ci-bot[bot] committed Dec 4, 2023
0 parents commit fed612e
Show file tree
Hide file tree
Showing 12 changed files with 140 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/backup-to-gitlab.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 17 additions & 0 deletions .github/workflows/call-auto-tag.yml
Original file line number Diff line number Diff line change
@@ -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 }}
9 changes: 9 additions & 0 deletions .github/workflows/call-chatOps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: chatOps
on:
issue_comment:
types: [created]

jobs:
chatopt:
uses: deepin-community/.github/.github/workflows/chatOps.yml@master
secrets: inherit
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# template-repository
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
11
15 changes: 15 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -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 changes: 22 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
@@ -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".
17 changes: 17 additions & 0 deletions debian/deepin/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# See the OWNERS docs at https://go.k8s.io/owners

reviewers:
- tsic404
- myml
- BLumia
- Rabenda
- justforlxz
- Clansty
- chenchongbiao
approvers:
- Zeno-sole
- xzl01
- UTsweetyfish
- hudeng-go
- zccrs
- deepin-community/deepin-sysdev-team
36 changes: 36 additions & 0 deletions debian/deepin/workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
test_build:
steps:
- link_package:
source_project: deepin:Develop:main
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:
- trigger_services:
project: deepin:Unstable:main
package: %{SCM_REPOSITORY_NAME}
filters:
event: tag_push

commit_build:
steps:
- trigger_services:
project: deepin:Develop:main
package: %{SCM_REPOSITORY_NAME}
filters:
event: push
4 changes: 4 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/make -f

%:
dh $@
1 change: 1 addition & 0 deletions debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (quilt)

0 comments on commit fed612e

Please sign in to comment.