- CI/CD Pipelines
- Posts
- GitHub - Creating Your Account
GitHub - Creating Your Account
Setting Up Your CI/CD Environment: Creating a GitHub account and configuring security for your automation workflow
In our previous article, we covered the installation and basic configuration of Git on your local machine. Now, before we can create repositories for our CI/CD pipeline, we need to set up a GitHub account and configure critical security features. This foundational step ensures you'll have a secure and functional environment for managing your code and automation workflows.
Creating a GitHub Account
Set up a GitHub account
Navigate to GitHub.com
Click "Sign up" and follow the prompts to create your personal account
Verify your email address when prompted (required for creating repositories)
Securing Your GitHub Account
GitHub now enforces two-factor authentication (2FA) for all accounts that contribute code, making this a mandatory step in your CI/CD journey.
Setting Up Two-Factor Authentication
Two-factor authentication adds an essential security layer to your GitHub account:
Navigate to your account settings by clicking your profile picture and selecting Settings
Select "Password and authentication" from the sidebar, or go directly to Settings / Security
Click "Enable two-factor authentication" under the 2FA section
Choose your preferred 2FA method:
Time-based One-Time Password (TOTP) via authenticator apps (recommended)
Security keys
Security Tip: TOTP authentication through apps like Microsoft Authenticator, Authy, or Google Authenticator is significantly more secure than SMS-based verification, which can be vulnerable to SIM-swapping attacks.
For detailed instructions on setting up specific authentication methods, refer to GitHub's official 2FA documentation.
Recovery Options
Always set up recovery options to avoid being locked out of your account:
Save your recovery codes in a secure password manager
Set up recovery methods such as a backup phone number or email
Consider adding a security key as an additional authentication method
Configuring Your GitHub Profile
While not strictly necessary for CI/CD, a well-configured profile enhances your professional presence and can be valuable for collaboration:
Add a profile picture that's professional and recognisable
Complete your bio with relevant technical skills and interests
Consider creating a profile README to showcase your projects and skills
Benefits of a GitHub Account for CI/CD
A GitHub account provides several advantages for your CI/CD workflow:
Single Sign-On (SSO) capabilities for integration with many developer tools and services
Personal showcase for your projects and contributions
GitHub Pages for hosting documentation or project websites directly from your repositories
Access to GitHub Actions for creating integrated CI/CD workflows
Collaboration features including issues, pull requests, and project boards
Package registry for storing and managing packages for your projects
Configuring Your GitHub Email Settings
In our previous article, we mentioned using GitHub's noreply email address for privacy. Now that you have your account, let's properly configure this setting:
Navigate to your email settings by clicking your profile picture, selecting "Settings", then "Emails" in the sidebar
Look for your noreply email address in the "Keep my email addresses private" section
It will follow the format
[email protected]
Take note of this email address for configuration in the next step
Enable "Keep my email addresses private"
Enable "Block command line pushes that expose my email"
Privacy Tip: Using GitHub's noreply email address prevents your personal email from being publicly visible in commit logs while still associating commits with your GitHub account.
Updating Your Git Configuration
Now let's update your local Git configuration to use your GitHub noreply email address:
Open a terminal (Linux/macOS) or PowerShell/Command Prompt (Windows)
Set your GitHub noreply email with the following command:
git config --global user.email "[email protected]"
Replace [email protected]
with your actual GitHub-provided noreply address.
Verify the configuration by checking your configured email address:
git config --global user.email
This should display your GitHub noreply email address, confirming it's been set correctly.
See Setting your commit email address for more detailed information.
Verifying Your Setup
Before proceeding to repository creation, verify your account is properly configured:
Test your 2FA setup by logging out and back in to confirm it's working correctly
Check your profile visibility settings match your desired privacy level
Conclusion and Next Steps
You've now successfully created and secured your GitHub account—the foundation for your CI/CD environment. This account will serve as your central hub for code storage, collaboration, and eventually running automated workflows.
In the next article, we'll build on this foundation by creating a public GitHub repository specifically designed for CI/CD pipelines, and we'll explore how to structure it for optimal automation workflows.
Stay tuned for more practical CI/CD tips and techniques!