WIP: Add useful DT spec macros to unify clock control consumer codes and remove coupling of specific drivers. Converting NXP platforms WIP #23595
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: Merged PR stats | |
| on: | |
| pull_request_target: | |
| branches: | |
| - main | |
| - v*-branch | |
| types: [closed] | |
| permissions: | |
| contents: read | |
| jobs: | |
| record_merged: | |
| if: github.event.pull_request.merged == true && github.repository == 'zephyrproject-rtos/zephyr' | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Set up Python | |
| uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 | |
| with: | |
| python-version: 3.12 | |
| cache: pip | |
| cache-dependency-path: scripts/requirements-actions.txt | |
| - name: Install Python packages | |
| run: | | |
| pip install -r scripts/requirements-actions.txt --require-hashes | |
| - name: PR event | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| ELASTICSEARCH_KEY: ${{ secrets.ELASTICSEARCH_KEY }} | |
| ELASTICSEARCH_SERVER: "https://elasticsearch.zephyrproject.io:443" | |
| PR_STAT_ES_INDEX: ${{ vars.PR_STAT_ES_INDEX }} | |
| run: | | |
| python3 ./scripts/ci/stats/merged_prs.py --pull-request ${{ github.event.pull_request.number }} --repo ${{ github.repository }} |