You've already forked mint-backgrounds-pkg
Compare commits
1 Commits
v1.8.0-2
...
be681f4519
Author | SHA1 | Date | |
---|---|---|---|
be681f4519
|
2
.SRCINFO
2
.SRCINFO
@ -1,7 +1,7 @@
|
|||||||
pkgbase = mint-backgrounds
|
pkgbase = mint-backgrounds
|
||||||
pkgdesc = The backgrounds of Linux Mint
|
pkgdesc = The backgrounds of Linux Mint
|
||||||
pkgver = 1.8.0
|
pkgver = 1.8.0
|
||||||
pkgrel = 2
|
pkgrel = 1
|
||||||
arch = any
|
arch = any
|
||||||
license = Various
|
license = Various
|
||||||
depends = mint-backgrounds-helena
|
depends = mint-backgrounds-helena
|
||||||
|
97
.drone.yml
Normal file
97
.drone.yml
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: kubernetes
|
||||||
|
name: linter
|
||||||
|
|
||||||
|
clone:
|
||||||
|
disable: true
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: clone
|
||||||
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
||||||
|
|
||||||
|
- name: markdown lint
|
||||||
|
commands:
|
||||||
|
- markdownlint *.md
|
||||||
|
image: git.cryptic.systems/volker.raschek/markdownlint:0.37.0
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpu: 150
|
||||||
|
memory: 150M
|
||||||
|
|
||||||
|
- name: email-notification
|
||||||
|
environment:
|
||||||
|
SMTP_FROM_ADDRESS:
|
||||||
|
from_secret: smtp_from_address
|
||||||
|
SMTP_FROM_NAME:
|
||||||
|
from_secret: smtp_from_name
|
||||||
|
SMTP_HOST:
|
||||||
|
from_secret: smtp_host
|
||||||
|
SMTP_USERNAME:
|
||||||
|
from_secret: smtp_username
|
||||||
|
SMTP_PASSWORD:
|
||||||
|
from_secret: smtp_password
|
||||||
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpu: 150
|
||||||
|
memory: 150M
|
||||||
|
when:
|
||||||
|
status:
|
||||||
|
- changed
|
||||||
|
- failure
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
exclude:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: kubernetes
|
||||||
|
name: sync-to-aur.archlinux.org
|
||||||
|
|
||||||
|
clone:
|
||||||
|
disable: true
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: clone
|
||||||
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
||||||
|
|
||||||
|
- name: git-push
|
||||||
|
image: docker.io/appleboy/drone-git-push:1.0.6
|
||||||
|
settings:
|
||||||
|
branch: master
|
||||||
|
remote: ssh://aur@aur.archlinux.org/mint-backgrounds.git
|
||||||
|
force: false
|
||||||
|
commit: false
|
||||||
|
ssh_key:
|
||||||
|
from_secret: aur_ssh_key
|
||||||
|
|
||||||
|
- name: email-notification
|
||||||
|
environment:
|
||||||
|
SMTP_FROM_ADDRESS:
|
||||||
|
from_secret: smtp_from_address
|
||||||
|
SMTP_FROM_NAME:
|
||||||
|
from_secret: smtp_from_name
|
||||||
|
SMTP_HOST:
|
||||||
|
from_secret: smtp_host
|
||||||
|
SMTP_USERNAME:
|
||||||
|
from_secret: smtp_username
|
||||||
|
SMTP_PASSWORD:
|
||||||
|
from_secret: smtp_password
|
||||||
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpu: 150
|
||||||
|
memory: 150M
|
||||||
|
when:
|
||||||
|
status:
|
||||||
|
- changed
|
||||||
|
- failure
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
repo:
|
||||||
|
- volker.raschek/mint-backgrounds-pkg
|
@ -13,10 +13,10 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
markdown-lint:
|
markdown-lint:
|
||||||
container:
|
container:
|
||||||
image: git.cryptic.systems/volker.raschek/markdownlint:0.44.0
|
image: git.cryptic.systems/volker.raschek/markdownlint:044.0
|
||||||
runs-on:
|
runs-on:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4.2.2
|
- uses: actions/checkout@v4.2.2
|
||||||
- name: Lint Markdown files
|
- name: Lint Markdown files
|
||||||
run: markdownlint --config .markdownlint.yaml .
|
run: markdownlint .
|
@ -1,38 +0,0 @@
|
|||||||
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
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- name: Configure SSH client
|
|
||||||
run: |
|
|
||||||
mkdir ~/.ssh || true
|
|
||||||
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 'HEAD:refs/heads/master'
|
|
||||||
- name: Remove SSH client configuration
|
|
||||||
run: |
|
|
||||||
rm -rf ~/.ssh
|
|
Reference in New Issue
Block a user