-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
I was trying to run check-spelling action with act locally.
Yaml file I used
/.github/workflows/spelling.yml
name: Check Spelling
on:
push:
branches: ["**"]
tags-ignore: ["**"]
pull_request_target:
issue_comment:
types: [created]
jobs:
spelling:
name: Check Spelling
permissions:
contents: read
pull-requests: read
actions: read
outputs:
followup: ${{ steps.spelling.outputs.followup }}
runs-on: ubuntu-latest
if: "contains(github.event_name, 'pull_request') || github.event_name == 'push'"
concurrency:
group: spelling-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
steps:
- name: check-spelling
id: spelling
uses: check-spelling/check-spelling@main
with:
suppress_push_for_open_pull_request: 1
checkout: true
spell_check_this: check-spelling/spell-check-this@prerelease
post_comment: 0
experimental_apply_changes_via_bot: 1
I couldn't find what the exact issue was. Please help me to resolve this.
Metadata
Metadata
Assignees
Labels
No labels
