Welcome to the Liquify Community

Updated 2 months ago

[Feature Request] Add a desktop browser notification when zip is finished converting

It would be nice to have the option to get a notification from the browser when a file is finished converting.
j
1 comment
Hi @Clyde, good idea. I will put this on our list. We are using github actions to send notifications to our mobile app.
You just need to your repository in github an click on action. Create your own new action with this code:

name: Mention on Pull Request # Define the permissions here permissions: issues: write # This allows commenting on issues and pull requests pull-requests: write # This ensures write access to pull requests on: pull_request: branches: - '**' # Ensure it runs on all branches types: [opened, reopened, synchronize] jobs: mention: runs-on: ubuntu-latest steps: - name: Comment on the PR run: | curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ -X POST \ -d "{\"body\": \"Hey @your-username, there's a new pull request!\"}" \ "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.number }}/comments"

Change the @your-username with the your github handle.
Activate notifications on your mobile github app and done πŸ™‚
Add a reply
Sign up and join the conversation on Discord