Skip to content

boards: nrf54lc10dk: add support for nrf54lc10a #2608

boards: nrf54lc10dk: add support for nrf54lc10a

boards: nrf54lc10dk: add support for nrf54lc10a #2608

name: Remove CI-Requested label

Check warning on line 1 in .github/workflows/remove-ci-requested.yml

View workflow run for this annotation

GitHub Actions / Remove CI-Requested label

Workflow execution policy warning (evaluate mode)

On November 2, 2026, GitHub will restrict `pull_request_target` on public repositories by default. To continue allowing the event trigger, configure an Actions policy. Learn more: https://gh.io/securely-using-pull_request_target#default-policy-for-pull_request_target
on:
pull_request_target:
types: [opened, reopened, synchronize]
permissions:
contents: read
pull-requests: write
jobs:
remove_label:
name: Remove label
if: ${{ contains(github.event.*.labels.*.name, 'CI-Requested') }}
runs-on: ubuntu-24.04
steps:
- name: Remove label
run: gh pr edit ${{ github.event.pull_request.number }} --remove-label "CI-Requested"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}