Bumps the actions-deps group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [EnricoMi/publish-unit-test-result-action](https://github.com/enricomi/publish-unit-test-result-action) | `2.20.0` | `2.21.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.2` | `5.0.0` | | [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) | `5.0.0` | `5.1.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5.0.0` | `6.0.0` | | [github/codeql-action](https://github.com/github/codeql-action) | `3.30.6` | `4.31.2` | Updates `EnricoMi/publish-unit-test-result-action` from 2.20.0 to 2.21.0 - [Release notes](https://github.com/enricomi/publish-unit-test-result-action/releases) - [Commits](3a74b29574...34d7c956a5) Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](ea165f8d65...330a01c490) Updates `aws-actions/configure-aws-credentials` from 5.0.0 to 5.1.0 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](a03048d875...00943011d9) Updates `actions/download-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](634f93cb29...018cc2cf5b) Updates `github/codeql-action` from 3.30.6 to 4.31.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](64d10c1313...0499de31b9) --- updated-dependencies: - dependency-name: EnricoMi/publish-unit-test-result-action dependency-version: 2.21.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: aws-actions/configure-aws-credentials dependency-version: 5.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: github/codeql-action dependency-version: 4.31.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.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@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
|
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@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
|
|
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
|