feat: add Azure Principal Architect agent, FinOps skill, PowerShell instructions, and Copilot metrics script #424
This file contains hidden or 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: Check Markdown Links | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Run daily at midnight | |
| pull_request: | |
| paths: | |
| - '*.md' | |
| - 'README.md' | |
| workflow_dispatch: # Allow manual triggers | |
| jobs: | |
| check-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Link Checker | |
| id: lychee | |
| uses: lycheeverse/lychee-action@v1.8.0 | |
| with: | |
| args: --verbose --no-progress '*.md' | |
| fail: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Create Issue From File | |
| if: failure() | |
| uses: peter-evans/create-issue-from-file@v4 | |
| with: | |
| title: Link Checker Report | |
| content-filepath: ./lychee/out.md | |
| labels: report, automated issue |