mirror of
https://github.com/iptv-org/iptv
synced 2026-09-06 03:50:47 -04:00
Create validate_label.yml
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
name: Validate Label
|
||||
on:
|
||||
issues:
|
||||
types: [labeled]
|
||||
|
||||
jobs:
|
||||
validate:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository code
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- uses: tibdex/github-app-token@v1.8.2
|
||||
if: ${{ !env.ACT }}
|
||||
id: create-app-token
|
||||
with:
|
||||
app_id: ${{ secrets.APP_ID }}
|
||||
private_key: ${{ secrets.APP_PRIVATE_KEY }}
|
||||
|
||||
- name: Block self-approval
|
||||
if: |
|
||||
github.event.label.name == 'approved' &&
|
||||
github.actor == github.event.issue.user.login
|
||||
env:
|
||||
GH_TOKEN: ${{ steps.create-app-token.outputs.token }}
|
||||
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
||||
run: |
|
||||
if [ "${{ env.ACT }}" = "true" ]; then
|
||||
echo "[MOCK] Post comment: A request cannot be approved by its author."
|
||||
echo "[MOCK] Remove label: approved"
|
||||
else
|
||||
gh issue comment $ISSUE_NUMBER --body "A request cannot be approved by its author."
|
||||
gh issue edit $ISSUE_NUMBER --remove-label "approved"
|
||||
fi
|
||||
|
||||
exit 1
|
||||
Reference in New Issue
Block a user