Files
iptv/.github/workflows/validate_label.yml
T
536eb49a8f Potential fix for pull request finding 'CodeQL / Workflow does not contain permissions'
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
2026-08-15 03:30:26 +03:00

41 lines
1.1 KiB
YAML

name: Validate Label
on:
issues:
types: [labeled]
permissions:
contents: read
issues: write
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