-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
✨ Identify and Publish DNS Records to Repository + Refactor Bin Files #256
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This cleans up the repository a little and makes it a more maintainable
🦙 MegaLinter status: ✅ SUCCESS
See detailed report in MegaLinter reports |
jasonBirchall
changed the title
find all github pages
✨ Identify and Publish DNS Records to Repository
Nov 4, 2024
To better reflect its purpose.
When we run the github action to search for and add new entries, this will be used as a trial.
jasonBirchall
changed the title
✨ Identify and Publish DNS Records to Repository
✨ Identify and Publish DNS Records to Repository + Refactor Bin Files
Nov 4, 2024
AntonyBishop
approved these changes
Nov 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
👀 Purpose
Connects to R021: Tag Resources in DNS Repository to Indicate GitHub Pages Delegation operations-engineering#4782
This pull request introduces automation for updating identifying and updating GitHub Pages records. A workflow runs weekly, identifies all GitHub Pages delegations, as per their managing custom domains documentation, and creates a pull request if there are any changes to the records.
This PR also refactors the layout of the repository. There were a number of executables building up in the root of the repo. I decided to group these and place them in a directory named
bin
.♻️ What's changed
bin/update_github_pages_config.py
, this file will loop over our hostedzones directory looking for records associated with GitHub pages.bin
that holds all entrypoints for jobs in this repository..github/workflows/check-github-pages-records.yaml
that will run theupdate_github_pages_config
once per week. Upon changes, a new PR will be raised.📝 Notes