SDSS-1321: Version 1 of mega menu #1215
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/pull_request_actions.yml | |
# Actions triggered on pull_request. | |
# - Runs the tests workflow and deploys an artifact when tests pass. | |
name: Pull request actions | |
on: | |
pull_request: | |
types: [opened, reopened, ready_for_review, converted_to_draft, synchronize] | |
jobs: | |
# Run tests on current PR branch. | |
tests: | |
uses: ./.github/workflows/tests.yml | |
# Allow secrets to be used in the called workflow. | |
secrets: inherit |