This commit is contained in:
parent
af064121c4
commit
58358746d2
4 changed files with 36 additions and 15 deletions
12
.forgejo/workflows/ci.yml
Normal file
12
.forgejo/workflows/ci.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
sast:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
- run: |
|
||||||
|
pip install pipx
|
||||||
|
pipx run yamllint .
|
8
.yamllint.yml
Normal file
8
.yamllint.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
extends: default
|
||||||
|
|
||||||
|
rules:
|
||||||
|
line-length:
|
||||||
|
max: 120
|
||||||
|
level: warning
|
|
@ -1,16 +1,17 @@
|
||||||
|
---
|
||||||
prSections:
|
prSections:
|
||||||
- title: WIP
|
- title: WIP
|
||||||
filters: is:open author:@me -org:tophatmonocle
|
filters: is:open author:@me -org:tophatmonocle
|
||||||
- title: Needs My Review
|
- title: Needs My Review
|
||||||
filters: is:open review-requested:@me -org:tophatmonocle
|
filters: is:open review-requested:@me -org:tophatmonocle
|
||||||
- title: Involved
|
- title: Involved
|
||||||
filters: is:open involves:@me -author:@me -org:tophatmonocle
|
filters: is:open involves:@me -author:@me -org:tophatmonocle
|
||||||
issuesSections:
|
issuesSections:
|
||||||
- title: My Issues
|
- title: My Issues
|
||||||
filters: is:open author:@me
|
filters: is:open author:@me
|
||||||
- title: Assigned
|
- title: Assigned
|
||||||
filters: is:open assignee:@me
|
filters: is:open assignee:@me
|
||||||
- title: Involved
|
- title: Involved
|
||||||
filters: is:open involves:@me -author:@me
|
filters: is:open involves:@me -author:@me
|
||||||
defaults:
|
defaults:
|
||||||
preview:
|
preview:
|
||||||
|
|
|
@ -4,10 +4,10 @@
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- name: Ensure system up-to-date
|
- name: Ensure system up-to-date
|
||||||
become: yes
|
become: true
|
||||||
apt:
|
apt:
|
||||||
update-cache: yes
|
update_cache: true
|
||||||
upgrade: yes
|
upgrade: "yes"
|
||||||
- name: Install terminal & shell
|
- name: Install terminal & shell
|
||||||
apt:
|
apt:
|
||||||
pkg:
|
pkg:
|
||||||
|
|
Loading…
Reference in a new issue