mirror of
https://github.com/github/awesome-copilot.git
synced 2026-06-25 17:00:20 +00:00
0eb6062f94
* chore(phase2): retarget all automation from staged to main - publish.yml: trigger on main, publish only to marketplace - check-pr-target.yml: invert — now blocks PRs targeting staged, welcomes main - 10 PR validation workflows: branches [staged] → [main] - external-plugin-command-router.yml: --base staged → main (3×), message text - external-plugin-rereview-command.yml: --base staged → main (2×), message text - external-plugin-rereview.yml: staged reference in review comment text - external-plugin-intake.yml: ref: staged checkout → main - external-plugin-pr-quality-gates.yml: ref: staged checkout → main - external-plugin-quality-gates.yml: ref: staged checkout → main - check-plugin-structure.yml: error messages updated for new branch model - contributors.yml: ref and base target → main - setup-labels.yml: targets-main label description updated - cli-for-beginners-sync.md + .lock.yml: base-branch staged → main - codeowner-update.md + .lock.yml: base-branch staged → main - learning-hub-updater.md + .lock.yml: base-branch staged → main Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * docs(phase2): update contributor guidance from staged to main - CONTRIBUTING.md: branch from main, PR targets main; remove Phase 2 gate note - AGENTS.md: PR target + external plugin PR automation references - .github/pull_request_template.md: PR checklist targets main - website/src/content/docs/learning-hub/agentic-workflows.md: PR target Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * aw updates --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
92 lines
2.7 KiB
YAML
92 lines
2.7 KiB
YAML
name: Validate README.md
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
types: [opened, synchronize, reopened]
|
|
paths:
|
|
- "instructions/**"
|
|
- "prompts/**"
|
|
- "agents/**"
|
|
- "plugins/**"
|
|
- "workflows/**"
|
|
- "*.js"
|
|
- "README.md"
|
|
- "docs/**"
|
|
- "skills/**"
|
|
|
|
jobs:
|
|
validate-readme:
|
|
permissions:
|
|
pull-requests: write
|
|
contents: read
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
|
|
with:
|
|
node-version: "20"
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Validate plugins
|
|
run: npm run plugin:validate
|
|
|
|
- name: Update README.md
|
|
run: npm start
|
|
|
|
- name: Check for file changes
|
|
id: check-diff
|
|
run: |
|
|
if git diff --exit-code; then
|
|
echo "No changes detected after running update script."
|
|
echo "status=success" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "Changes detected after running update script."
|
|
echo "status=failure" >> $GITHUB_OUTPUT
|
|
echo "diff<<EOF" >> $GITHUB_OUTPUT
|
|
git diff >> $GITHUB_OUTPUT
|
|
echo "EOF" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
- name: Output diff to logs for non-write users
|
|
if: steps.check-diff.outputs.status == 'failure' && github.event.pull_request.head.repo.permissions.push != true
|
|
run: |
|
|
echo "::group::File changes (changes needed)"
|
|
echo "The following changes need to be made:"
|
|
echo ""
|
|
git diff
|
|
echo "::endgroup::"
|
|
|
|
- name: Comment on PR if files need updating
|
|
if: steps.check-diff.outputs.status == 'failure' && github.event.pull_request.head.repo.permissions.push == true
|
|
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4
|
|
with:
|
|
header: readme-validation
|
|
message: |
|
|
## ⚠️ Generated files need to be updated
|
|
|
|
The update script detected changes that need to be made.
|
|
|
|
Please run `npm start` locally and commit the changes before merging this PR.
|
|
|
|
<details>
|
|
<summary>View diff</summary>
|
|
|
|
```diff
|
|
${{ steps.check-diff.outputs.diff }}
|
|
```
|
|
</details>
|
|
|
|
- name: Fail workflow if files need updating
|
|
if: steps.check-diff.outputs.status == 'failure'
|
|
run: |
|
|
echo "❌ Generated files need to be updated. Please run `npm start` locally and commit the changes."
|
|
exit 1
|