Skip to content

Commit

Permalink
Merge pull request #42 from PSNAppz/1.0.0
Browse files Browse the repository at this point in the history
Ignore action/workflows on tag push only
  • Loading branch information
venky-ganapathy authored May 3, 2024
2 parents b04ae7d + 9b444e5 commit f65b9be
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Build Docker and Push

on:
push:
branches:
- "**"
tags-ignore:
- '**'
workflow_dispatch:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/openapi-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: openapi publish on push

on:
push:
branches:
- "**"
tags-ignore:
- '**'
workflow_dispatch:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: pre-commit
on:
pull_request:
push:
branches:
- "**"
tags-ignore:
- '**'
workflow_dispatch:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Publish to PyPI

on:
push:
branches:
- "**"
tags-ignore:
- '**'
workflow_dispatch:
Expand Down

0 comments on commit f65b9be

Please sign in to comment.