Bump the npm-development group across 1 directory with 8 updates #161
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: Todohub | |
on: | |
pull_request: | |
push: | |
# branches: | |
# - main | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
jobs: | |
todohub: | |
name: Todohub | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Run Todohub Action | |
id: run-todohub-action | |
uses: ./ | |
with: | |
MAX_LINE_LENGTH: '350' | |
# - name: Test Remote Action | |
# id: test-action | |
# uses: todos-in/todohub@main | |
- name: Test Print Output | |
id: print-output | |
run: 'echo "Control Issue Id: ${{steps.run-todohub-action.outputs.TODOHUB_CONTROL_ISSUE_ID}}, Updated Issues: ${{steps.run-todohub-action.outputs.UPDATED_ISSUES}}, Skipped Issues: ${{steps.run-todohub-action.outputs.SKIPPED_UNCHANGED_ISSUES}}, Failed Issues: ${{steps.run-todohub-action.outputs.ISSUES_FAILED_TO_UPDATE}}"' |