You've already forked mint-backgrounds-pkg
Compare commits
7 Commits
v1.7.0-2
...
d327604a34
Author | SHA1 | Date | |
---|---|---|---|
d327604a34
|
|||
71cb9a0cbf
|
|||
59a64138c1
|
|||
fd87b9d3a3
|
|||
29d7b70c1d
|
|||
9e58986e70
|
|||
73c8b1e1c6 |
7
.SRCINFO
7
.SRCINFO
@ -1,10 +1,10 @@
|
||||
pkgbase = mint-backgrounds
|
||||
pkgdesc = The backgrounds of Linux Mint
|
||||
pkgver = 1.7.0
|
||||
pkgrel = 2
|
||||
pkgver = 1.8.0
|
||||
pkgrel = 1
|
||||
arch = any
|
||||
license = Various
|
||||
depends = mint-backgrounds
|
||||
depends = mint-backgrounds-helena
|
||||
depends = mint-backgrounds-isadora
|
||||
depends = mint-backgrounds-julia
|
||||
depends = mint-backgrounds-katya
|
||||
@ -33,5 +33,6 @@ pkgbase = mint-backgrounds
|
||||
depends = mint-backgrounds-vera
|
||||
depends = mint-backgrounds-victoria
|
||||
depends = mint-backgrounds-virginia
|
||||
depends = mint-backgrounds-wilma
|
||||
|
||||
pkgname = mint-backgrounds
|
||||
|
22
.gitea/workflows/markdown-linters.yaml
Normal file
22
.gitea/workflows/markdown-linters.yaml
Normal file
@ -0,0 +1,22 @@
|
||||
name: Markdown linter
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [ "opened", "reopened", "synchronize" ]
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
tags-ignore:
|
||||
- '**'
|
||||
workflow_dispatch: {}
|
||||
|
||||
jobs:
|
||||
markdown-lint:
|
||||
container:
|
||||
image: git.cryptic.systems/volker.raschek/markdownlint:0.44.0
|
||||
runs-on:
|
||||
- ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4.2.2
|
||||
- name: Lint Markdown files
|
||||
run: markdownlint --config .markdownlint.yaml .
|
36
.gitea/workflows/sync.yaml
Normal file
36
.gitea/workflows/sync.yaml
Normal file
@ -0,0 +1,36 @@
|
||||
name: Markdown linter
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [ "opened", "reopened", "synchronize" ]
|
||||
push:
|
||||
tags:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
markdown-lint:
|
||||
env:
|
||||
AUR_SSH_KEY: ${{ secrets.AUR_SSH_KEY }}
|
||||
runs-on:
|
||||
- ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4.2.2
|
||||
- name: Configure SSH client
|
||||
run: |
|
||||
mkdir ~/.ssh
|
||||
chmod 0700 ~/.ssh
|
||||
|
||||
echo "${AUR_SSH_KEY}" | base64 --decode > ~/.ssh/id
|
||||
chmod 0600 ~/.ssh/id
|
||||
|
||||
cat > ~/.ssh/config <<EOF
|
||||
Host *
|
||||
IdentityFile ~/.ssh/id
|
||||
StrictHostKeyChecking no
|
||||
EOF
|
||||
- name: Push
|
||||
run: |
|
||||
git push ssh://aur@aur.archlinux.org/mint-backgrounds.git
|
||||
- name: Remove SSH client configuration
|
||||
run: |
|
||||
rm -rf ~/.ssh
|
7
PKGBUILD
7
PKGBUILD
@ -1,13 +1,13 @@
|
||||
# Maintainer: Markus Pesch <markus.pesch@cryptic.systems>
|
||||
|
||||
pkgname=mint-backgrounds
|
||||
pkgver=1.7.0
|
||||
pkgrel=2
|
||||
pkgver=1.8.0
|
||||
pkgrel=1
|
||||
pkgdesc="The backgrounds of Linux Mint"
|
||||
license=('Various')
|
||||
arch=('any')
|
||||
depends=(
|
||||
'mint-backgrounds'
|
||||
'mint-backgrounds-helena'
|
||||
'mint-backgrounds-isadora'
|
||||
'mint-backgrounds-julia'
|
||||
'mint-backgrounds-katya'
|
||||
@ -36,4 +36,5 @@ depends=(
|
||||
'mint-backgrounds-vera'
|
||||
'mint-backgrounds-victoria'
|
||||
'mint-backgrounds-virginia'
|
||||
'mint-backgrounds-wilma'
|
||||
)
|
||||
|
@ -1,17 +1,9 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"assignees": [ "volker.raschek" ],
|
||||
"automergeStrategy": "merge-commit",
|
||||
"automergeType": "pr",
|
||||
"labels": [ "renovate" ],
|
||||
"packageRules": [
|
||||
{
|
||||
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
|
||||
"automerge": true,
|
||||
"matchManagers": "droneci",
|
||||
"matchUpdateTypes": [ "minor", "patch"]
|
||||
}
|
||||
],
|
||||
"rebaseLabel": "renovate/rebase",
|
||||
"rebaseWhen": "behind-base-branch"
|
||||
}
|
||||
"extends": [
|
||||
"local>volker.raschek/renovate-config:default#master",
|
||||
"local>volker.raschek/renovate-config:container#master",
|
||||
"local>volker.raschek/renovate-config:actions#master",
|
||||
"local>volker.raschek/renovate-config:regexp#master"
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user