SDSS-1060: Removed featured media label from view (#287) #158
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/dev_branch_actions.yml | |
# Actions triggered on merge to current dev branch (e.g., 1.x, 2.x, etc.,). | |
# - Runs the tests workflow and deploys an artifact when tests pass. | |
name: Dev branch actions | |
on: | |
push: | |
branches: [4.x] | |
jobs: | |
# Run tests on current PR branch. | |
tests: | |
uses: ./.github/workflows/tests.yml | |
# Allow secrets to be used in the called workflow. | |
secrets: inherit | |
# Deploy branch after tests pass by calling deploy workflow. | |
deploy: | |
uses: ./.github/workflows/deploy_branch.yml | |
# Allow secrets to be used in the called workflow. | |
secrets: inherit | |
needs: [tests] |