Skip to content

Commit

Permalink
Avoid running tests and static analysis on tags (#766)
Browse files Browse the repository at this point in the history
  • Loading branch information
sverdlov93 authored May 21, 2023
1 parent a1a87ab commit 79da787
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: "Static Analysis"
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/frogbot-scan-and-fix.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: "Frogbot Scan and Fix"
on:
push:
push:
tags-ignore:
- '**'
tags-ignore:
- '**'
# Creating fix pull requests will be triggered by any push to one of the these branches.
# You can add or replace to any branch you want to open fix pull requests for.
branches:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: JFrog Client Go Tests
on:
push:
branches:
- '**'
tags-ignore:
- '**'
# Triggers the workflow on labeled PRs only.
Expand Down

0 comments on commit 79da787

Please sign in to comment.