Skip to content

Commit

Permalink
add(#4): some useful flows
Browse files Browse the repository at this point in the history
  • Loading branch information
worm2fed committed Jul 18, 2024
1 parent 4f900ce commit 61d73cc
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/dependencies.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Check dependencies
on:
push:
tags-ignore:
- "**"
# additionally run once per week (At 00:00 on Sunday) to maintain cache
schedule:
- cron: "0 0 * * 0"

jobs:
antq:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: liquidz/antq-action@main
13 changes: 13 additions & 0 deletions .github/workflows/git.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Git checks

on:
pull_request:

jobs:
block-fixup:
name: Block merge with fixup commits
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: 13rac1/block-fixup-merge-action@v2.0.0

0 comments on commit 61d73cc

Please sign in to comment.