Update test-pr.yml #11
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
# 文件名: .github/workflows/pr_workflow.yml (位于Base Repo的main分支) | |
name: Benign PR Workflow (from Base) | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
run-on-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Base Repo Workflow Step | |
run: echo "✅ This is the ORIGINAL, SAFE workflow from the BASE repo, triggered by PR. The secret is ${{ secrets.MY_SUPER_SECRET }}" |