Skip to content

SDSS-1060: Removed featured media label from view (#287) #158

SDSS-1060: Removed featured media label from view (#287)

SDSS-1060: Removed featured media label from view (#287) #158

# .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]