ci: add note about permissions and repo settings for automerge #786
Workflow file for this run
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: Linkspector | |
on: [pull_request] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
check-links: | |
name: runner / linkspector | |
# Temporarily work around this issue by downgrading the runner OS | |
# https://github.com/UmbrellaDocs/action-linkspector/issues/32 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Run linkspector | |
# needs to be pinned to 1.2.5 avoid | |
# https://github.com/UmbrellaDocs/action-linkspector/issues/30 | |
uses: umbrelladocs/[email protected] | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
fail_on_error: true |