Dashboard Update #3636
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: Dashboard Update | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
update_wiki: | |
runs-on: ubuntu-latest | |
env: | |
HOME_PAGE_NAME: "Home.md" | |
DURATION_PAGE_NAME: "Workflow-status.md" | |
steps: | |
- name: Setup Git Credentials | |
uses: VirtoCommerce/vc-github-actions/setup-git-credentials-github@master | |
with: | |
githubToken: ${{ secrets.REPO_TOKEN }} | |
- name: Generate Dashboard | |
id: dashboard | |
uses: VirtoCommerce/vc-github-actions/generate-dashboard@master | |
with: | |
githubToken: ${{ secrets.REPO_TOKEN }} | |
pageName: ${{ env.HOME_PAGE_NAME }} | |
- name: Generate Duration Dashboard | |
id: dashboard-duration | |
uses: VirtoCommerce/vc-github-actions/generate-dashboard-durations@master | |
with: | |
githubToken: ${{ secrets.REPO_TOKEN }} | |
pageName: ${{ env.DURATION_PAGE_NAME }} | |
- name: Update Duration Dashboard | |
shell: sh | |
run: | | |
git clone https://github.com/VirtoCommerce/vc-github-actions.wiki.git | |
cd vc-github-actions.wiki | |
rm -f ${{ env.HOME_PAGE_NAME }} | |
rm -f ${{ env.DURATION_PAGE_NAME }} | |
cp -f ${{ steps.dashboard.outputs.result }} . | |
cp -f ${{ steps.dashboard-duration.outputs.result }} . | |
git add . | |
git commit -m "Update Dashboard" | |
git push origin master |