-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
150 changed files
with
6,788 additions
and
2,766 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Install Dependencies | ||
description: Installs system dependencies | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Install system dependencies (Linux) | ||
if: runner.os == 'Linux' | ||
shell: bash | ||
run: | | ||
sudo apt update && sudo apt install -y \ | ||
xvfb libssl-dev openssl libacl1-dev libacl1 fuse3 build-essential \ | ||
libxkbcommon-x11-0 dbus-x11 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 \ | ||
libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xfixes0 libxcb-shape0 \ | ||
libegl1 libxcb-cursor0 libfuse-dev libsqlite3-dev libfuse3-dev pkg-config \ | ||
python3-pkgconfig libxxhash-dev borgbackup | ||
- name: Install system dependencies (macOS) | ||
if: runner.os == 'macOS' | ||
shell: bash | ||
run: | | ||
brew install openssl readline xz xxhash pkg-config borgbackup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
event_name="$1" | ||
branch_name="$2" | ||
|
||
if [[ "$event_name" == "workflow_dispatch" ]] || [[ "$branch_name" == "master" ]]; then | ||
echo '{ | ||
"python-version": ["3.8", "3.9", "3.10", "3.11"], | ||
"os": ["ubuntu-latest", "macos-latest"], | ||
"borg-version": ["1.2.4"] | ||
}' | jq -c . > matrix-unit.json | ||
|
||
echo '{ | ||
"python-version": ["3.8", "3.9", "3.10", "3.11"], | ||
"os": ["ubuntu-latest", "macos-latest"], | ||
"borg-version": ["1.1.18", "1.2.2", "1.2.4", "2.0.0b5"], | ||
"exclude": [{"borg-version": "2.0.0b5", "python-version": "3.8"}] | ||
}' | jq -c . > matrix-integration.json | ||
|
||
elif [[ "$event_name" == "push" ]] || [[ "$event_name" == "pull_request" ]]; then | ||
echo '{ | ||
"python-version": ["3.8", "3.9", "3.10", "3.11"], | ||
"os": ["ubuntu-latest", "macos-latest"], | ||
"borg-version": ["1.2.4"] | ||
}' | jq -c . > matrix-unit.json | ||
|
||
echo '{ | ||
"python-version": ["3.10"], | ||
"os": ["ubuntu-latest"], | ||
"borg-version": ["1.2.4"] | ||
}' | jq -c . > matrix-integration.json | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,37 @@ | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 60 | ||
name: Close stale issues | ||
on: | ||
schedule: | ||
- cron: '50 1 * * *' | ||
|
||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 7 | ||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
days-before-issue-stale: 60 | ||
days-before-pr-stale: -1 | ||
days-before-issue-close: 7 | ||
# days-before-pr-close: 10 | ||
|
||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- "status:idea" | ||
- "status:planning" | ||
- "status:on hold" | ||
- "status:ready" | ||
- "type:bug" | ||
- "type:docs" | ||
- "type:enhancement" | ||
- "type:feature" | ||
- "type:refactor" | ||
- "type:task" | ||
stale-issue-label: "status:stale" | ||
stale-pr-label: "status:stale" | ||
|
||
# Label to use when marking an issue as stale | ||
staleLabel: "status:stale" | ||
exempt-issue-labels: > | ||
status:idea, | ||
status:planning, | ||
status:on hold, | ||
status:ready, | ||
type:bug, | ||
type:docs, | ||
type:enhancement, | ||
type:feature, | ||
type:refactor, | ||
type:task, | ||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank you | ||
for your contributions. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: false | ||
|
||
# Limit to only `issues` or `pulls` | ||
only: issues | ||
stale-issue-message: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank you | ||
for your contributions. | ||
close-issue-message: > | ||
This issue was closed because it has been stalled for 7 days with no activity. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,4 @@ src/vorta/i18n/ts/vorta.en.ts | |
src/vorta/i18n/ts/vorta.en_US.ts | ||
flatpak/app/ | ||
flatpak/.flatpak-builder/ | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.