fix counters in todoist #221
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checks | |
on: | |
# PRs only on main branch | |
pull_request: | |
branches: [main] | |
jobs: | |
check: | |
name: Check Recipe Version Bump | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Fetch main branch | |
run: git fetch origin main --depth 1 | |
- uses: tj-actions/changed-files@v37 | |
id: changed-files | |
- name: Checking recipe version bump | |
uses: ./.github/workflows/check-recipe-version-bump | |
with: | |
changed-files: ${{ steps.changed-files.outputs.modified_files }} |