Reduce frequency of counting issues. The output of this workflow is legacy and published externally, so we should re-consider keeping this or do things a bit differently. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
58 lines
1.7 KiB
YAML
58 lines
1.7 KiB
YAML
name: Issue Tracker
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '10 1/4 * * *'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
OUTPUT_FILE_NAME: IssuesReport.md
|
|
COMMITTER_EMAIL: actions@github.com
|
|
COMMITTER_NAME: github-actions
|
|
COMMITTER_USERNAME: github-actions
|
|
|
|
|
|
jobs:
|
|
track-issues:
|
|
name: "Collect Issue Stats"
|
|
runs-on: ubuntu-24.04
|
|
if: github.repository == 'zephyrproject-rtos/zephyr'
|
|
|
|
steps:
|
|
- name: Download configuration file
|
|
run: |
|
|
wget -q https://raw.githubusercontent.com/$GITHUB_REPOSITORY/main/.github/workflows/issues-report-config.json
|
|
|
|
- name: install-packages
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install discount
|
|
|
|
- uses: brcrista/summarize-issues@54c549b7d38b7db39e5c6e06fd9617e12e5c3491 # v4
|
|
with:
|
|
title: 'Issues Report for ${{ github.repository }}'
|
|
configPath: 'issues-report-config.json'
|
|
outputPath: ${{ env.OUTPUT_FILE_NAME }}
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: upload-stats
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
continue-on-error: true
|
|
with:
|
|
name: ${{ env.OUTPUT_FILE_NAME }}
|
|
path: ${{ env.OUTPUT_FILE_NAME }}
|
|
|
|
- name: Configure AWS Credentials
|
|
uses: aws-actions/configure-aws-credentials@b47578312673ae6fa5b5096b330d9fbac3d116df # v4.2.1
|
|
with:
|
|
aws-access-key-id: ${{ vars.AWS_TESTING_ACCESS_KEY_ID }}
|
|
aws-secret-access-key: ${{ secrets.AWS_TESTING_SECRET_ACCESS_KEY }}
|
|
aws-region: us-east-1
|
|
|
|
- name: Post Results
|
|
run: |
|
|
mkd2html IssuesReport.md IssuesReport.html
|
|
aws s3 cp --quiet IssuesReport.html s3://testing.zephyrproject.org/issues/$GITHUB_REPOSITORY/index.html
|