Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
one liner to avoid confusion
  • Loading branch information
erickisos committed Oct 3, 2022
commit 4c88e59bc3553942a8dac036bdc5eb338db69375
7 changes: 3 additions & 4 deletions .github/workflows/pospell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@ name: pospell
on:
issue_comment:
Comment thread
erickisos marked this conversation as resolved.
types:
- edited
- created

jobs:
fix-spell:
name: Fix spelling
runs-on: ubuntu-latest
if: |
github.event.comment.body == 'pospell-fix'
&& github.event.issue.pull_request
if: ${{ github.event.issue.pull_request && github.event.comment.body == 'pospell-fix' }}
steps:
- name: Confirm process
uses: actions/github-script@v6
Expand All @@ -28,7 +27,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.10"
Comment thread
erickisos marked this conversation as resolved.
cache: 'pip'
cache: "pip"
- name: Instalar dependencias
run: |
sudo apt-get update
Expand Down