chore(readme): remove analytics/stargazers sections (#4) #1
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: README Guard | |
on: | |
push: | |
branches: [ main, master ] | |
paths: [ 'README.md' ] | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
guard: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create review PR for README change | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
title: "Guard: Review README.md change" | |
body: "Automated guard: Please review README changes." | |
commit-message: "chore: guard README change" | |
branch: "chore/readme-guard-${{ github.run_id }}" | |
base: "${{ github.ref_name }}" | |
add-paths: | | |
README.md |