Logging to Application Insights in .NET 8.0 Azure Functions #867
Workflow file for this run
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: CodeTour and Links Watcher | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
codetour-links-watcher: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout source code' | |
uses: actions/checkout@v3 | |
- name: 'Watch CodeTour changes' | |
uses: pozil/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
tour-path: '.tours/' | |
- name: Link Checker | |
id: lychee | |
uses: lycheeverse/[email protected] | |
with: | |
fail: true | |
args: --verbose --no-progress --max-concurrency 2 --exclude-mail --exclude-loopback './**/*.md' | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |