nRF Desktop: application module update after the IronSide SE migration #60838
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Reapply CI-trusted-author label | |
| # We want to use NordicBuilder instead of github-actions[bot] user | |
| # github-actions[bot] is not trusted collaborator and labels added by it does not trigger Jenkins builds | |
| on: | |
| pull_request_target: | |
| types: [opened, reopened, synchronize] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| reapply_label: | |
| name: Reapply label | |
| if: ${{ contains(github.event.*.labels.*.name, 'CI-trusted-author') }} | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Remove CI-trusted-author label | |
| run: gh pr edit ${{ github.event.pull_request.number }} --remove-label "CI-trusted-author" | |
| env: | |
| GH_TOKEN: ${{ secrets.NCS_JENKINS_TOKEN }} | |
| GH_REPO: ${{ github.repository }} | |
| - name: Add CI-trusted-author label | |
| run: gh pr edit ${{ github.event.pull_request.number }} --add-label "CI-trusted-author" | |
| env: | |
| GH_TOKEN: ${{ secrets.NCS_JENKINS_TOKEN }} | |
| GH_REPO: ${{ github.repository }} |