samples: bluetooth: ble_hrs: fix button config struct out of scope #2610
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 | ||
|
Check warning on line 1 in .github/workflows/reapply-ci-trusted-author.yml
|
||
| # 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 }} | ||