Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/schedule-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,21 @@ jobs:
schedule-deployment:
runs-on: ubuntu-latest
steps:
- name: Show documentation
run: |
echo "Documentation: ${{ env.documentation }}" | tee -a "$GITHUB_STEP_SUMMARY"

- name: Fail if attempt dispatch on default branch
if: github.ref_name == github.event.repository.default_branch
run: |
echo "The workflow_dispatch is only available for non-default branches." | tee -a "$GITHUB_STEP_SUMMARY"
exit 1

- name: Checkout repository
uses: actions/checkout@v7
with:
fetch-depth: 0

- name: Show documentation
run: |
echo "Documentation: ${{ env.documentation }}" | tee -a "$GITHUB_STEP_SUMMARY"

- name: Verify inputs
id: verify-inputs
env:
Expand Down