diff --git a/.github/workflows/ui.yml b/.github/workflows/ui.yml index c08d1db..b519a9c 100644 --- a/.github/workflows/ui.yml +++ b/.github/workflows/ui.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ac656a..00cbf26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.