Skip to content

Commit

Permalink
ci(workflows): update triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron-Ritter committed Jun 6, 2024
1 parent e8ce980 commit 2f2bb9b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@
name: E2E Test with FusionAuth supported versions

on:
# This version is older than 6 months and will not automatically run.
# To allow running this workflow manually from the Actions tab we add:
workflow_dispatch:
# Triggers the workflow on push request events but only for tag versions
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]'
- 'v[0-9]+.[0-9]+.[0-9]+-*'

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
name: Maven Pre-Release

on:
# Triggers the workflow on push or pull request events but only for default and protected branches
# Triggers the workflow on push request events but only for tag versions
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
name: Maven Release

on:
# Triggers the workflow on push or pull request events but only for default and protected branches
# Triggers the workflow on push request events but only for tag versions
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]'
Expand Down

0 comments on commit 2f2bb9b

Please sign in to comment.