SDSS-1379: Set default value for Featured field #1271
Workflow file for this run
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 |