Add "fingerprint changed" label to PRs with native changes (#10742)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -162,3 +162,17 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
header: fingerprint-diff
|
header: fingerprint-diff
|
||||||
delete: true
|
delete: true
|
||||||
|
|
||||||
|
- name: 🏷️ Label as fingerprint changed
|
||||||
|
if: ${{ steps.fingerprint.outputs.includes-changes }}
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
||||||
|
run: gh pr edit "$PR_NUMBER" --add-label "bot: fingerprint changed" || true
|
||||||
|
|
||||||
|
- name: 🏷️ Remove fingerprint changed label
|
||||||
|
if: ${{ !steps.fingerprint.outputs.includes-changes }}
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
||||||
|
run: gh pr edit "$PR_NUMBER" --remove-label "bot: fingerprint changed" || true
|
||||||
|
|||||||
Reference in New Issue
Block a user