Skip to content

[DO NOT MERGE] Test guard #2

[DO NOT MERGE] Test guard

[DO NOT MERGE] Test guard #2

Workflow file for this run

# Guard any changes under web/ directory
on:
pull_request:
branches:
- main
- master
paths:
- "web/**"
jobs:
commentIfWebChanges:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.pull_request.labels.*.name, 'Direct FrontEnd Change') }}
permissions:
pull-requests: "write"
steps:
- name: Post comment on PR and apply label
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const issue_number = context.issue.number;
// Add comment
const message = "No direct changes are allowed in the web/ directory."
"Please submit the change to https://github.com/Comfy-Org/ComfyUI_frontend";
github.rest.issues.createComment({
issue_number: issue_number,
owner: context.repo.owner,
repo: context.repo.repo,
body: message
});
// Apply label
github.rest.issues.addLabels({
issue_number: issue_number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['Direct FrontEnd Change']
});