0dcb0518be
Update Github actions to their latest versions to fix the following warnings on runs: ``` Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions/upload-artifact@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. ``` `actions/checkout` and `actions/cache` are straight Node version upgrades, `actions/upload-artifact` and `actions/download-artifact` have breaking changes, but don't appear to affect our usage. https://github.com/actions/upload-artifact Signed-off-by: Jordan Yates <jordan.yates@data61.csiro.au>
25 lines
816 B
YAML
25 lines
816 B
YAML
name: Merged PR stats
|
|
|
|
on:
|
|
pull_request_target:
|
|
branches:
|
|
- main
|
|
- v*-branch
|
|
types: [closed]
|
|
jobs:
|
|
record_merged:
|
|
if: github.event.pull_request.merged == true && github.repository == 'zephyrproject-rtos/zephyr'
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
- 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: |
|
|
pip3 install pygithub elasticsearch
|
|
python3 ./scripts/ci/stats/merged_prs.py --pull-request ${{ github.event.pull_request.number }} --repo ${{ github.repository }}
|