How it works
Apps Script binds to either the Form or the receiving Sheet. The onFormSubmit handler receives an event object with namedValues — a key-value map of the form's answers, indexed by question text.
The handler appends a row with timestamp + parsed fields. Apps Script's appendRow is atomic and safe under concurrent submissions.
For high-priority entries, the script POSTs to a Slack webhook with UrlFetchApp.fetch. That call counts toward your URL-fetch quota (20K/day free, 100K/day Workspace).