Skip to content

Commit

Permalink
Prevent build.yml workflow to trigger on tags push
Browse files Browse the repository at this point in the history
(This is already handled by release.yml for release tags)

NB: We use here `branches = "*"` condition instead of `tags-ignore = "*"`
because the latter prevent also build.yml to trigger on commit push on
regular branches (oddly enough)
  • Loading branch information
nhuet committed Nov 2, 2021
1 parent 84b0239 commit 72ffae2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: 🔨 Build scikit-decide

on:
push:
branches:
- "*"
pull_request:
workflow_dispatch:

Expand Down

0 comments on commit 72ffae2

Please sign in to comment.