Skip to content

Commit 86464af

Browse files
authored
Switch master -> main (#37)
* Switch master -> main * CODEOWNERS added
1 parent 77b0dec commit 86464af

5 files changed

Lines changed: 24 additions & 5 deletions

File tree

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
end_of_line = lf
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.python]
13+
indent_style = space
14+
tab_width = 4
15+
max_line_length = 120
16+
17+
[CODEOWNERS]
18+
indent_style = tab

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ master ]
16+
branches: [ master, main ]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [ master ]
19+
branches: [ master, main ]
2020
schedule:
2121
- cron: '34 19 * * 2'
2222

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Python package
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [ master, main ]
99
pull_request:
10-
branches: [ master ]
10+
branches: [ master, main ]
1111

1212
jobs:
1313
build:

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* denis.averin@aspose.com

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dist:
3232
.PHONY: check_git
3333
check_git:
3434
git fetch origin
35-
git diff origin/master --exit-code
35+
git diff origin/main --exit-code
3636

3737
.PHONY: publish
3838
publish: check_git test clean dist

0 commit comments

Comments
 (0)