Skip to content

Commit

Permalink
[FOLIO-4086] Fix GitHub Actions workflow not running for tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ncovercash committed Oct 9, 2024
1 parent 1c34bb7 commit 23afa7c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
ui:
# Use the shared workflow from https://github.com/folio-org/.github
uses: folio-org/.github/.github/workflows/ui.yml@v1
# Only handle push events from the main branch, to decrease noise
if: github.ref_name == github.event.repository.default_branch || github.event_name != 'push'
# Only handle push events from the main branch or tags, to decrease PR noise
if: github.ref_name == github.event.repository.default_branch || github.event_name != 'push' || github.ref_type == 'tag'
secrets: inherit
with:
jest-test-command: yarn test --ci --coverage
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change history for ui-calendar

## IN PROGRESS

* Fix GitHub Actions workflow not running for tags. Refs FOLIO-4086.

## [11.0.2] (https://github.com/folio-org/ui-calendar/tree/v11.0.2) (2024-10-01)

* Disable 'Actions' menu on DCB Calendar. Refs UICAL-285.
Expand Down

0 comments on commit 23afa7c

Please sign in to comment.