Skip to content

Commit 4933ff5

Browse files
authored
chore(ci): Add more stuff
1 parent 785c32f commit 4933ff5

File tree

5 files changed

+83
-1
lines changed

5 files changed

+83
-1
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Description
2+
3+
Please explain the changes you made here:
4+
5+
- foo
6+
7+
## Notes
8+
9+
Please add screenshots or some additional context if you believe it is needed.
10+
11+
## Checklist
12+
13+
- [ ] Only GitHub links to open-source repos are added
14+
- [ ] No duplicate links are added
15+
- [ ] All repos exist and are public
16+
- [ ] All repos have at least 50 stars

.github/dependabot.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2+
3+
version: 2
4+
updates:
5+
- package-ecosystem: "pip"
6+
directory: "/"
7+
schedule:
8+
interval: "monthly"
9+
time: "09:00"
10+
timezone: "Europe/Prague"
11+
assignees:
12+
- "vavkamil"
13+
cooldown:
14+
default-days: 7
15+
16+
- package-ecosystem: "github-actions"
17+
directory: "/"
18+
schedule:
19+
interval: "monthly"
20+
time: "09:00"
21+
timezone: "Europe/Prague"
22+
assignees:
23+
- "vavkamil"
24+
cooldown:
25+
default-days: 7
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# https://github.com/woodruffw/zizmor
2+
3+
name: Security
4+
5+
on:
6+
push:
7+
branches:
8+
- main
9+
pull_request:
10+
paths:
11+
- '.github/workflows/**'
12+
13+
permissions: {}
14+
15+
jobs:
16+
zizmor:
17+
# name: zizmor via PyPI
18+
runs-on: ubuntu-latest
19+
permissions:
20+
contents: read
21+
22+
steps:
23+
- name: Checkout repository
24+
uses: actions/[email protected]
25+
with:
26+
persist-credentials: false
27+
28+
- name: Set up Python
29+
uses: actions/setup-python@v6
30+
with:
31+
python-version: '3.10.4'
32+
33+
- name: Install Zizmor
34+
run: |
35+
python -m pip install --upgrade pip
36+
pip install $(grep '^zizmor==' requirements.txt)
37+
38+
- name: Run Zizmor
39+
run: zizmor .github/workflows

.github/workflows/stargazers.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
- name: Checkout repository
1818
uses: actions/[email protected]
1919
with:
20-
fetch-depth: 0 # we need history for diff
20+
fetch-depth: 0
21+
persist-credentials: false
2122

2223
- name: Fetch base branch
2324
run: |

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
zizmor==1.16.1

0 commit comments

Comments
 (0)