mirror of
https://github.com/ivuorinen/actions.git
synced 2026-03-20 21:01:09 +00:00
Update SHA-pinned action references to latest versions: - github/codeql-action v4.32.6 → v4.33.0 - nick-fields/retry v3.0.2 → v4.0.0 - actions/cache v5.0.3 → v5.0.4 - oven-sh/setup-bun v2.1.3 → v2.2.0 - softprops/action-gh-release v2.5.0 → v2.6.1 - github/issue-metrics v4.1.0 → v4.1.1 - shivammathur/setup-php 2.36.0 → 2.37.0 - astral-sh/setup-uv v7.5.0 → v7.6.0 - terraform-linters/setup-tflint v6.2.1 → v6.2.2 - aquasecurity/trivy-action: pin from master to v0.35.0 Fix pinact warning in docker-build by adding missing v prefix to trivy-action version comment (0.35.0 → v0.35.0).
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
---
|
|
name: Monthly issue metrics
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '3 2 1 * *'
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
build:
|
|
name: issue metrics
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: read
|
|
steps:
|
|
- name: Get dates for last month
|
|
shell: sh
|
|
run: |
|
|
# Calculate the first day of the previous month
|
|
first_day=$(date -d "last month" +%Y-%m-01)
|
|
|
|
# Calculate the last day of the previous month
|
|
last_day=$(date -d "$first_day +1 month -1 day" +%Y-%m-%d)
|
|
|
|
#Set an environment variable with the date range
|
|
echo "$first_day..$last_day"
|
|
echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV"
|
|
|
|
- name: Run issue-metrics tool
|
|
uses: github/issue-metrics@6a35322ff89cee3e1a594d282c27eb34bffa9174 # v4.1.1
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
SEARCH_QUERY: 'repo:ivuorinen/actions is:issue created:${{ env.last_month }} -reason:"not planned"'
|
|
|
|
- name: Create issue
|
|
uses: peter-evans/create-issue-from-file@fca9117c27cdc29c6c4db3b86c48e4115a786710 # v6.0.0
|
|
with:
|
|
title: Monthly issue metrics report
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
content-filepath: ./issue_metrics.md
|