This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
Updated logic to isolate the validation only for content rating form.… #5
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
name: merge_to_reference | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
set_status_in_progress: | |
name: set_status_in_progress | |
if: always() | |
uses: dpc-sdp/github-actions/.github/workflows/set_status.yml@main | |
secrets: inherit | |
with: | |
context: 'tide_merge_to_reference' | |
description: 'Merge to reference running...' | |
state: 'pending' | |
target_url: ${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }} | |
tide_merge_to_reference: | |
name: tide_merge_to_reference | |
uses: dpc-sdp/github-actions/.github/workflows/tide_merge_to_reference.yml@main | |
set_status: | |
name: set_status | |
needs: [tide_merge_to_reference] | |
if: always() | |
uses: dpc-sdp/github-actions/.github/workflows/set_status.yml@main | |
secrets: inherit | |
with: | |
context: 'tide_merge_to_reference' | |
description: 'Merge to reference running...' | |
target_url: ${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }} |