Skip to content

Commit a47b8e6

Browse files
committed
add(#4): some useful flows
1 parent 173306a commit a47b8e6

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/workflows/dependencies.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Check dependencies
2+
on:
3+
push:
4+
tags-ignore:
5+
- "**"
6+
# additionally run once per week (At 00:00 on Sunday) to maintain cache
7+
schedule:
8+
- cron: "0 0 * * 0"
9+
10+
jobs:
11+
antq:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: liquidz/antq-action@main

.github/workflows/git.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Git checks
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
block-fixup:
8+
name: Block merge with fixup commits
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: 13rac1/[email protected]

0 commit comments

Comments
 (0)