Input limitation is blocking my Action workflows #182710
Replies: 2 comments 2 replies
-
|
The 65KB limit for GitHub Actions inputs and secrets is a fixed platform constraint and cannot be increased. You cannot pass the XML directly. The only effective workaround is to change your approach: pass a reference to the data, not the data itself. Before triggering the workflow, your application must upload the XML payload to a temporary, accessible location. This location can be a secure, pre-signed URL in your own cloud storage, a private Gist via the GitHub API, or an ephemeral endpoint in your backend. You then pass this URL or identifier (which is a small string under 65KB) as the workflow input. Inside the job, a step uses curl or a script to fetch and process the XML from that location. This is the standard architectural pattern for handling large payloads in GitHub Actions. You must build the pre-upload logic on your client or triggering service, as the workflow runner is designed for CI/CD tasks, not as a data ingestion pipeline. |
Beta Was this translation helpful? Give feedback.
-
|
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Question
What GitHub Actions topic or product is this about?
Workflow Configuration
Discussion Details
I am using github actions workflow for one of my project.
Where I am facing few restrictions.
Before I used jenkins to process xml data which will be passed by the user in text area field.
Github Actions has the restriction to pass the over all text data only as 65kb so all the time it's not even taking 20% of xml data. Always getting truncated.
I do not want to store the xml data to a file and store it in s3 and process
I tried github secretes as well same issue
There is no input module to pass the direct file
Need help here
Beta Was this translation helpful? Give feedback.
All reactions