mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
* this is a test
* [autofix.ci] apply automated fixes
* dot reporter for line by line
* [autofix.ci] apply automated fixes
* ok...
* list reporter
* Update VRT screenshots
Auto-generated by VRT workflow
PR: #6429
* fix couple of issues
* Revert "Update VRT screenshots"
This reverts commit 0124b13475.
* putting text change back
* release notes
* skipping translations on the desktop app
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
29 lines
761 B
YAML
29 lines
761 B
YAML
name: Count points
|
|
|
|
on:
|
|
schedule:
|
|
# Run at 00:00 on the first day of every month
|
|
- cron: '0 0 1 * *'
|
|
workflow_dispatch:
|
|
inputs:
|
|
startDate:
|
|
description: 'Start date for point counter (YYYY-MM-DD)'
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
count-points:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
- name: Set up environment
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
download-translations: 'false'
|
|
- name: Count points
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
START_DATE: ${{ inputs.startDate }}
|
|
run: node .github/scripts/count-points.mjs
|