Skip to content

Commit

Permalink
Add front end change guard
Browse files Browse the repository at this point in the history
  • Loading branch information
huchenlei committed Jul 13, 2024
1 parent a3dffc4 commit 6a37b79
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/front-end-guard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# 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') }}
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']
});

0 comments on commit 6a37b79

Please sign in to comment.