Skip to content

Commit

Permalink
don't run GHA workflows on tag pushes
Browse files Browse the repository at this point in the history
  • Loading branch information
iliana committed Sep 3, 2024
1 parent eb54c1c commit dbf40b0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/hakari.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ on:
push:
branches:
- main
pull_request:
branches:
- main
- 'rel/**'
pull_request: {}

name: cargo hakari

Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
#
name: Rust

on: [ push, pull_request ]
on:
push:
branches:
- main
- 'rel/**'
pull_request: {}

jobs:
check-style:
Expand Down

0 comments on commit dbf40b0

Please sign in to comment.