We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My Code :
name: Sed on: push jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Find and Replace uses: jacobtomlinson/gha-find-replace@master with: find: 'await event.edit(' replace: 'await tr(event, ' - name: Pull All Updates uses: stefanzweifel/git-auto-commit-action@v4 with: commit_message: 'Test Translator' commit_options: '--no-verify' repository: . commit_user_name: StarkGang commit_user_email: [email protected] commit_author: StarkGang <[email protected]>
Error:
panic: regexp: Compile(`await event.edit(`): error parsing regexp: missing closing ): `await event.edit(` goroutine 1 [running]: regexp.MustCompile(0xc0000160eb, 0x11, 0xc0001fe000) /usr/local/go/src/regexp/regexp.go:311 +0x152 main.findAndReplace(0xc000018960, 0xa, 0xc0000160eb, 0x11, 0xc00001616e, 0x10, 0x200, 0x0, 0x0) /app/main.go:43 +0x10b main.main() /app/main.go:68 +0x22a
Is There Anyway To fix This? Thanks !
The text was updated successfully, but these errors were encountered:
I expect you need to escape the strings like 'await event\.edit\('.
'await event\.edit\('
Perhaps the action should do this automatically though.
Sorry, something went wrong.
No branches or pull requests
My Code :
Error:
Is There Anyway To fix This? Thanks !
The text was updated successfully, but these errors were encountered: