Skip to content

Commit b630fda

Browse files
Merge branch 'master' into enhancements/issue-6656
2 parents 0301451 + 3ebae35 commit b630fda

File tree

456 files changed

+33758
-27550
lines changed

Some content is hidden

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

456 files changed

+33758
-27550
lines changed

.coafile

Lines changed: 0 additions & 35 deletions
This file was deleted.

.coveragerc

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/FUNDING.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# These are supported funding model platforms
22

3-
# github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4-
# liberapay: borgbackup
3+
github: borgbackup
4+
liberapay: borgbackup
5+
open_collective: borgbackup
56
custom: ['https://www.borgbackup.org/support/fund.html']

.github/ISSUE_TEMPLATE.md

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,54 @@
11
<!--
22
Thank you for reporting an issue.
33
4-
*IMPORTANT* - *before* creating a new issue please look around:
5-
- Borgbackup documentation: http://borgbackup.readthedocs.io/en/stable/index.html
4+
*IMPORTANT* – Before creating a new issue, please look around:
5+
- BorgBackup documentation: https://borgbackup.readthedocs.io/en/stable/index.html
66
- FAQ: https://borgbackup.readthedocs.io/en/stable/faq.html
7-
and
8-
- open issues in GitHub tracker: https://github.com/borgbackup/borg/issues
9-
7+
- Open issues in the GitHub tracker: https://github.com/borgbackup/borg/issues
8+
109
If you cannot find a similar problem, then create a new issue.
1110
1211
Please fill in as much of the template as possible.
1312
-->
1413

15-
## Have you checked borgbackup docs, FAQ, and open GitHub issues?
14+
## Have you checked the BorgBackup docs, FAQ, and open GitHub issues?
1615

1716
No
1817

19-
## Is this a BUG / ISSUE report or a QUESTION?
18+
## Is this a bug/issue report or a question?
2019

21-
Invalid
20+
Bug/Issue/Question
2221

23-
## System information. For client/server mode post info for both machines.
22+
## System information. For client/server mode, post info for both machines.
2423

25-
#### Your borg version (borg -V).
24+
#### Your Borg version (borg -V).
2625

2726
#### Operating system (distribution) and version.
2827

29-
#### Hardware / network configuration, and filesystems used.
28+
#### Hardware/network configuration and filesystems used.
3029

31-
#### How much data is handled by borg?
30+
#### How much data is handled by Borg?
3231

33-
#### Full borg commandline that lead to the problem (leave away excludes and passwords)
32+
#### Full Borg command line that led to the problem (leave out excludes and passwords).
3433

3534

3635
## Describe the problem you're observing.
3736

3837
#### Can you reproduce the problem? If so, describe how. If not, describe troubleshooting steps you took before opening the issue.
3938

40-
#### Include any warning/errors/backtraces from the system logs
39+
#### Include any warnings/errors/backtraces from the system logs
4140

4241
<!--
4342
44-
If this complaint relates to borg performance, please include CRUD benchmark
43+
If this complaint relates to Borg performance, please include CRUD benchmark
4544
results and any steps you took to troubleshoot.
46-
How to run benchmark: http://borgbackup.readthedocs.io/en/stable/usage/benchmark.html
45+
How to run the benchmark: https://borgbackup.readthedocs.io/en/stable/usage/benchmark.html
4746
48-
*IMPORTANT* - Please mark logs and text output from terminal commands
49-
or else GitHub will not display them correctly.
47+
*IMPORTANT* – Please mark logs and terminal command output, otherwise GitHub will not display them correctly.
5048
An example is provided below.
5149
5250
Example:
5351
```
54-
this is an example how log text should be marked (wrap it with ```)
52+
this is an example of how log text should be marked (wrap it with ```)
5553
```
5654
-->

.github/PULL_REQUEST_TEMPLATE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
Thank you for contributing code to Borg, your help is appreciated!
1+
Thank you for contributing code to Borg; your help is appreciated!
22

3-
Please, before you submit a pull request, make sure it complies with the
4-
guidelines given in our documentation:
3+
Before you submit a pull request, please make sure it complies with the
4+
guidelines in our documentation:
55

66
https://borgbackup.readthedocs.io/en/latest/development.html#contributions
77

8-
**Please remove all above text before submitting your pull request.**
8+
**Please remove the text above before submitting your pull request.**

.github/workflows/backport.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Backport pull request
2+
3+
on:
4+
pull_request_target:
5+
types: [closed]
6+
issue_comment:
7+
types: [created]
8+
9+
permissions:
10+
contents: write # so it can comment
11+
pull-requests: write # so it can create pull requests
12+
13+
jobs:
14+
backport:
15+
name: Backport pull request
16+
runs-on: ubuntu-24.04
17+
18+
# Only run when pull request is merged
19+
# or when a comment starting with `/backport` is created by someone other than the
20+
# https://github.com/backport-action bot user (user id: 97796249). Note that if you use your
21+
# own PAT as `github_token`, that you should replace this id with yours.
22+
if: >
23+
(
24+
github.event_name == 'pull_request_target' &&
25+
github.event.pull_request.merged
26+
) || (
27+
github.event_name == 'issue_comment' &&
28+
github.event.issue.pull_request &&
29+
github.event.comment.user.id != 97796249 &&
30+
startsWith(github.event.comment.body, '/backport')
31+
)
32+
steps:
33+
- uses: actions/checkout@v4
34+
- name: Create backport pull requests
35+
uses: korthout/backport-action@v3

.github/workflows/black.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# https://black.readthedocs.io/en/stable/integrations/github_actions.html#usage
2-
# see also what we use locally, requirements.d/codestyle.txt - should be the same version here.
2+
# See also what we use locally in requirements.d/codestyle.txt — this should be the same version here.
33

44
name: Lint
55

66
on: [push, pull_request]
77

88
jobs:
99
lint:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-22.04
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: psf/black@stable
1414
with:
15-
version: "~= 23.0"
15+
version: "~= 24.0"

0 commit comments

Comments
 (0)