Google Drive Automation Workflows
838 ready-made Google Drive workflows for n8n, Make, Zapier, Activepieces, and Pipedream. File-triggered workflows: organize uploads, convert documents, sync folders.
Transform Google Sheets Entries into Audio Files and Upload to Google Drive
Automatically convert new entries from Google Sheets into audio files using Eleven Labs and seamlessly upload them to Google Drive for easy access and sharing.
Make$3.99Automate Audio Transcription from Google Drive with OpenAI Whisper and Email Delivery
Streamline the transcription of audio files stored in Google Drive using OpenAI Whisper. Convert files to compatible formats, transcribe them, store the results in Google Docs, and automatically email the document for seamless communication.
Make$4.99Automate Cloning of Nested Google Drive Folder Structures with Custom Names
Effortlessly duplicate Google Drive folder hierarchies with custom naming, ideal for managing consistent project structures across multiple clients.
n8n$9.99Recursively Retrieve All Files from Google Drive Folders
Automatically fetch all files from a specified Google Drive folder, including those in nested subfolders, for streamlined file management and automation.
n8n$9.99Automate PDF Generation from Typeform Responses and Save to Google Drive
This workflow automates the process of generating PDF documents from Typeform responses using the PDF Generator API and saves them directly to a specified Google Drive folder.
Make$3.99Automated Daily Backup of Google Sheets to Google Drive
This workflow automates the daily backup of a Google Sheet by exporting its data and saving it as a CSV or XLSX file in a specified Google Drive folder. It ensures data redundancy and maintains historical versions for critical business data.
n8n$4.99Automate Document Translation and Quality Verification with Google Drive and Slack
Streamline the translation process by automatically translating documents from Google Drive using Straker Verify, and receive quality feedback and notifications via Slack.
n8n$9.99Generate Audio from Text Scripts using Self-Hosted Bark Model and Google Drive
## Audio Generator - Documentation Purpose: Generate audio files from text scripts stored in Google Drive. ### Flow: 1. Receive repo IDs. 2. Fetch text scripts. 3. Generate .wav files using local Bark model. 4. Upload back to Drive. ### Dependencies: - Python script: `/scripts/generate_voice.py` - Bark (voice generation system) - n8n instance with access to local shell - Google Drive OAuth2 credentials ### Notes: - Script filenames must end with `.txt` - Only works with plain text - No external API used = 100% free ### `/scripts/generate_voice.py`: ```python import sys import torch import numpy import re from bark import SAMPLE_RATE, generate_audio, preload_models from scipy.io.wavfile import write as write_wav # Patch to allow numpy._core.multiarray.scalar during loading torch.serialization.add_safe_globals([numpy._core.multiarray.scalar]) # Monkey patch torch.load to force weights_only=False _original_torch_load = torch.load def patched_torch_load(f, *args, **kwargs): if 'weights_only' not in kwargs: kwargs['weights_only'] = False return _original_torch_load(f, *args, **kwargs) torch.load = patched_torch_load # Preload Bark models preload_models() def split_text(text, max_len=300): # Split on punctuation to avoid mid-sentence cuts sentences = re.split(r'(?<=[.?!])\s+', text) chunks = [] current = "" for sentence in sentences: if len(current) + len(sentence) < max_len: current += sentence + " " else: chunks.append(current.strip()) current = sentence + " " if current: chunks.append(current.strip()) return chunks # Input text file and output path input_text_path = sys.argv[1] output_wav_path = sys.argv[2] with open(input_text_path, 'r', encoding='utf-8') as f: full_text = f.read() voice_preset = "v2/en_speaker_7" chunks = split_text(full_text) # Generate and concatenate audio chunks audio_arrays = [] for chunk in chunks: print(f"Generating audio for chunk: {chunk[:50]}...") audio = generate_audio(chunk, history_prompt=voice_preset) audio_arrays.append(audio) # Merge all audio chunks final_audio = numpy.concatenate(audio_arrays) # Write final .wav file write_wav(output_wav_path, SAMPLE_RATE, final_audio) print(f"Full audio generated at: {output_wav_path}") ```
n8n$9.99Automatically Store Attendance GIRITON Profile Pictures in Google Drive
This workflow retrieves profile pictures of Attendance GIRITON users and automatically saves them to a specified Google Drive folder, ensuring easy access and organization.
Make$3.99Merge Google Drive Files into a Single PDF with CloudConvert
Automatically search, retrieve, and merge files from Google Drive into a single PDF using CloudConvert for seamless file management.
Make$4.99Export Firestore Collection to CSV and Upload to Google Drive
Automatically export a Firestore collection to a CSV file and upload it to Google Drive. This workflow aggregates document fields into a CSV format and requires a two-step setup to map fields correctly.
Make$3.99Seamlessly Transfer Email Attachments to Google Drive
Automatically upload attachments from incoming emails in Google Email to a specified folder in Google Drive, ensuring your important files are always backed up and accessible.
Make$3.99Automatically Upload New GetMyInvoices Documents to Google Drive
Effortlessly transfer new documents from GetMyInvoices to Google Drive for streamlined storage and easy access.
Make$3.99Automate File Monitoring and Notifications for Google Drive
Automatically monitor a Google Drive folder for new files, send email notifications with file details, and move files to a designated folder.
Make$4.99Automate PDF Generation from Betty Blocks Records to Google Drive
Automatically create PDF files on Google Drive using data from Betty Blocks records. This workflow generates training certificates by transforming Google Docs templates into PDFs and removes temporary files.
Make$4.99Automatically Save TSheets Attachments to Google Drive
This workflow automatically saves attachments from TSheets timesheets to a specified Google Drive folder, ensuring your files are organized and easily accessible.
Make$3.99Automate Invoice Uploads from Gmail to Google Drive with Slack Notifications
This workflow automates the daily upload of invoices from Gmail to Google Drive and sends a notification via Slack. It organizes invoices into year and month folders, ensuring efficient document management.
n8n$9.99Save all photos from Unsplash collections to Google Drive
This Make workflow automatically retrieves every photo from your selected Unsplash collections and uploads them to a designated Google Drive folder. It uses HTTP modules to fetch collection data and Google Drive actions to store the images. Ideal for designers, content creators, or anyone wanting a local backup of their curated Unsplash assets without manual downloading.
Make$4.99Backup Automation for n8n Workflows to Google Drive (Daily or Manual)
### Backup Automation for n8n Workflows to Google Drive - No Risk, No Stress #### Hi! I'm Amanda, I build automation workflows for n8n and Make. This ready-to-use workflow is designed to automatically **export and back up all your n8n workflows** to a designated **Google Drive folder**, organized by date. It's perfect for agencies, developers, and teams that want to protect their automation assets without relying on manual exports or risking losing their work. --- ### What this workflow does - Fetches **all your existing workflows** from the n8n API - Compiles each workflow as a `.json` file - Creates a new folder in Google Drive using the current date - Uploads each `.json` file to that folder - Can be triggered **manually** or **automatically via cron** (date-time node) --- ### How to set it up 1. **Connect your Google Drive** in the “Folder Creation” and “Save to Drive” nodes 2. **Add your n8n API Key** in the “Search All Workflows” and “Compiles Individual Data” nodes 3. Define your time zone and execution method: - Run manually via the “Manual Trigger” node - Or schedule backups using the “Date & Time” and “Schedule Trigger” nodes 4. (Optional) Change the parent folder ID in the “Folder Creation in Drive” node to set your destination Once configured, the workflow will back up your entire workflow list daily - or whenever you run it - and send the files to your Google Drive! --- ### Nodes & Tech Used - `Schedule Trigger` + `Manual Trigger` - `Date & Time` - For timestamp folder naming - `n8n API` - To list and fetch each workflow - `Google Drive` - Folder creation and file upload - `Merge`, `Move Binary Data`, `Set` - Workflow compilation and formatting --- ### Who this is for - n8n developers who want peace of mind - Agencies managing many client automations - Anyone worried about losing their workflow work - Teams needing version control and backup history --- ### Requirements - **Google Drive OAuth2 credential** - **n8n API Key** (from your account settings) - n8n Cloud or self-hosted instance --- ### Want to use this workflow? - Buy workflows: [https://iloveflows.com](https://iloveflows.com) - Try n8n Cloud with my partner link: [https://n8n.partnerlinks.io/amanda](https://n8n.partnerlinks.io/amanda)
n8n$9.99Send data to Google Drive using a custom webhook and action module
Automatically send data to Google Drive using a custom webhook and action module. rigger data transfer with Custom WebHook, send via HP, and upload to Google Drive.
Make$3.99Upload files to Google Drive from PDFMonkey documents
Every time a new PDFMonkey document is created, Make will automatically upload the file to Google Drive.
Make$3.99Automate Audio Generation from Google Sheets and Upload to Google Drive
Effortlessly convert new Google Sheets entries into audio files using Eleven Labs text-to-speech, and automatically upload them to Google Drive for streamlined access.
Make$4.99Detect text within new Google Drive images using Google Cloud Vision (OCR) and save it to Google Drive as a new file
Every time a new image containing text is uploaded to your Google Drive folder, Make will detect the text using Google Cloud Vision (OCR) and save the text as a new file to a specified Google Drive folder.
Make$4.99Automate Transcription of Google Drive Files to Google Docs Using OpenAI Whisper
Effortlessly convert audio files from Google Drive into text documents in Google Docs using OpenAI's Whisper model. Streamline your workflow by automating transcription and document creation.
Make$4.99
More integrations
Custom AI Systems & Services
Our team of experienced AI builders will help build custom AI systems, workflows, and solutions.
Request Custom Work