clean repo - replace redirects #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 - replace redirects" | |
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: "ReplaceRedirectTargets" | |
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-replace-redirects | |
title: "Monthly chores: Replace redirect targets" | |
commit-message: "Bot 🤖 generated CleanRepo tool run" | |
body: "Replace redirected links with target URL. Contributes to #..." |