Skip to content

Commit e2fb141

Browse files
authored
Merge branch 'master' into hai-legacy
2 parents 857dcd5 + 18ce192 commit e2fb141

File tree

161 files changed

+1899
-580
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+1899
-580
lines changed

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Don't export certain files via `git archive` (e.g. via "Download ZIP")
2+
.gitattributes export-ignore
3+
.github export-ignore

.github/workflows/ci.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Check
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- releases/v[0-9]+.[0-9]+.[0-9]+
8+
pull_request:
9+
types: [opened, synchronize]
10+
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
validate_copyright:
17+
name: Copyright
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
with:
22+
show-progress: false
23+
- name: Validate copyright file with debian-control-linter
24+
uses: tibetiroka/debian-control-linter-action@v1
25+
with:
26+
type: 'debian/copyright'
27+
file: 'copyright'
28+
preset: 'strict'
29+
enable: 'trailingSpace,upstreamContactStyle,urlForceHttps,fieldNameCapitalization,maintainerNameFullStop,urlExists,copyrightSourceStyle'

about.txt

-1
This file was deleted.

0 commit comments

Comments
 (0)