Update Dash Core download links #23
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: Update Dash Core download links | |
on: | |
repository_dispatch: | |
types: [release_published] | |
workflow_dispatch: # This allows the workflow to be triggered manually | |
schedule: # Run daily at midnight UTC | |
- cron: 0 0 * * * | |
jobs: | |
update-core-download-links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v4 | |
- name: Run core download link update script | |
run: "${GITHUB_WORKSPACE}/scripts/core-download-link-update.sh" | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
branch: update-docs/${{ github.sha }} | |
title: "chore: update core download links to latest version" | |
body: | | |
This PR updates download links in the documentation to use the latest Dash Core version. |