Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 13 additions & 14 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# Order is important. The LAST matching pattern has the MOST precedence.
# gitignore style patterns are used, not globs.
# https://docs.github.com/articles/about-codeowners
# https://git-scm.com/docs/gitignore

# Site Policy
content/site-policy/ @github/site-policy-admins

# Enterprise
data/release-notes/**/*.yml @github/docs-content-enterprise
src/ghes-releases/lib/enterprise-dates.json @github/docs-content-enterprise

# Requires review of #actions-oidc-integration, docs-engineering/issues/1506
# content/actions/deployment/security-hardening-your-deployments/** @github/oidc
// Add interactivity here
document.addEventListener('DOMContentLoaded', function() {
console.log('Betting Effects Edu website loaded');

// Add click event to CTA button
const ctaBtn = document.querySelector('.cta-btn');
if (ctaBtn) {
ctaBtn.addEventListener('click', function() {
console.log('Learn More clicked');
// You can add navigation or modal here
});
}
});
Loading