Skip to content

Commit

Permalink
Don't run actions when pushing tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-kvashnin committed Oct 3, 2023
1 parent f942603 commit b4b3a7d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
on: [ pull_request, push ]
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
branches:
- '**'

name: "Benchmark"

Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
on: [ pull_request, push ]
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
branches:
- '**'

name: "Checks"

Expand Down

0 comments on commit b4b3a7d

Please sign in to comment.