Addressing 404 errors during page loading#21
Conversation
Co-authored-by: Darliewithrow <216807437+Darliewithrow@users.noreply.github.com>
Co-authored-by: Darliewithrow <216807437+Darliewithrow@users.noreply.github.com>
|
@copilot resolve the merge conflicts in this pull request |
# Conflicts: # README.md Co-authored-by: Darliewithrow <216807437+Darliewithrow@users.noreply.github.com>
Merge conflicts resolved in commit |
There was a problem hiding this comment.
Pull request overview
This PR turns the repository into a complete, beginner-friendly guide for contributing to ethereum/EIPs when GitHub shows the “Uploads are disabled” message, and updates contribution guidance links.
Changes:
- Replaced the placeholder
README.mdwith a full step-by-step fork/clone/branch/PR workflow guide, plus troubleshooting and resources. - Updated the “open an issue” link in
CONTRIBUTING.mdto avoid link/rendering problems.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 6 comments.
| File | Description |
|---|---|
| README.md | Adds the full contribution workflow guide (fork/clone/branch/PR), sync instructions, troubleshooting, and resources. |
| CONTRIBUTING.md | Updates the “open an issue” link for contributor questions/suggestions. |
| # Contributing to Ethereum EIPs: Fixing "Uploads are disabled" | ||
|
|
||
| If you've tried to contribute to the [Ethereum EIPs repository](https://github.com/ethereum/EIPs) and encountered the error **"Uploads are disabled"**, this guide explains why it happens and how to contribute correctly using the standard GitHub fork-and-pull-request workflow. |
|
|
||
| ### Step 3 — Create a Feature Branch | ||
|
|
||
| Always create a new branch for your changes instead of working directly on `main`: |
|
|
||
| ```bash | ||
| # Create your EIP file following the EIP template | ||
| cp EIPS/eip-1.md EIPS/eip-XXXX.md |
| git checkout main | ||
| git merge upstream/main |
| git merge upstream/main | ||
|
|
||
| # Push the updated main to your fork | ||
| git push origin main |
Darliewithrow
left a comment
There was a problem hiding this comment.
diff --git a/home/runner/work/master/master/README.md b/home/runner/work/master/master/README.md
index 0000000..0000000 100644
--- a/home/runner/work/master/master/README.md
+++ b/home/runner/work/master/master/README.md
@@ -1,1 +1,1 @@
Untitled
diff --git a/home/runner/work/master/master/CONTRIBUTING.md b/home/runner/work/master/master/CONTRIBUTING.md
index 0000000..0000000 100644
--- a/home/runner/work/master/master/CONTRIBUTING.md
+++ b/home/runner/work/master/master/CONTRIBUTING.md
@@ -1,65 +1,65 @@
Contributing to This Guide
Thank you for helping improve this guide! This repository provides instructions for contributors who encounter the "Uploads are disabled" error when working with the Ethereum EIPs repository.
How to Contribute
Types of Contributions Welcome
- Clarity improvements — Rewrite sections that are confusing or unclear
- UI updates — Update steps to reflect changes in the GitHub interface
- New examples — Add additional use cases or scenarios
- Typo and grammar fixes — Correct any errors in the text
- Broken links — Fix or update URLs that are no longer valid
- New sections — Add content for common questions not yet covered
Making Changes
- Fork this repository
- Create a feature branch from
main:git checkout -b your-feature-branch
- Make your changes to the Markdown files
- Verify all links are working
- Preview the rendered Markdown to ensure formatting is correct
- Commit your changes with a clear message:
git commit -m "docs: brief description of your changes" - Push your branch and open a pull request with a clear title and description
Validation Checklist
Before submitting a pull request, please verify:
- Markdown syntax is valid and renders correctly
- All links are working and point to the correct destinations
- Language is clear and suitable for beginners
- Changes are consistent with the existing writing style
- No sensitive information (credentials, personal data) has been included
Style Guidelines
- Write for beginners who may be unfamiliar with GitHub workflows
- Use clear, concise language and avoid unexplained jargon
- Use numbered lists for sequential steps and bullet points for non-ordered items
- Include code blocks with language identifiers for all commands
- Use placeholder text like
YOUR-USERNAMEto indicate where users should substitute their own values
Scope
This is a guide repository — it explains how to contribute to ethereum/EIPs, but does not accept EIP submissions itself. Please keep contributions focused on improving the guide content.
Questions or Suggestions?
Open an issue in this repository to discuss ideas before making large changes. For questions about contributing to the actual Ethereum EIPs repository, see the Resources section in the main guide.
Pull request created by AI Agent