clean repo - relative links #1
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: "clean repo - relative links" | |
on: | |
schedule: | |
- cron: "0 1 1 * *" # Runs at 01:00, on day 1 of the month | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
clean-repo: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
# Call clean repo | |
- name: Clean repo | |
id: clean-repo-step | |
uses: dotnet/docs-tools/cleanrepo@b1ebc174a5bbd18e6904a12069a8fae2c5cc3b6f | |
with: | |
function: "ReplaceWithRelativeLinks" | |
docfx_directory: "." | |
target_directory: "docs" | |
url_base_path: "/dotnet" | |
# Create the PR for the work done by the "clean repo" tool | |
- name: create-pull-request | |
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f | |
with: | |
branch: cleanrepo-relative-links | |
title: "Monthly chores: Use relative links" | |
commit-message: "Bot 🤖 generated CleanRepo tool run" | |
body: "Find and replace absolute links with relative links. Contributes to #..." |