Skip to content

Commit a2b9bed

Browse files
committed
🎉 Initial commit
0 parents  commit a2b9bed

15 files changed

+191
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Development
2+
dev
3+
4+
## Jekyll
5+
_site
6+
7+
## Vim (BTW™)
8+
.swp
9+
.swo

Gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
gemspec
5+
6+
gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]

_config.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
title: GitHub Actions Utilities
2+
author: gha-utilities
3+
4+
description: > # this means to ignore newlines until "twitter_username:"
5+
Site dedicated to utilities for GitHub Action CI/CD Workflows
6+
7+
# social links
8+
# twitter_username: jekyllrb
9+
# github_username: jekyll
10+
# rss: rss
11+
# dribbble_username: jekyll
12+
# facebook_username: jekyll
13+
# flickr_username: jekyll
14+
# instagram_username: jekyll
15+
# linkedin_username: jekyll
16+
# pinterest_username: jekyll
17+
# youtube_username: jekyll
18+
# googleplus_username: +jekyll
19+
20+
# Mastodon instances
21+
# mastodon:
22+
# - username: jekyll
23+
# instance: example.com
24+
# - username: jekyll2
25+
# instance: example.com
26+
27+
28+
show_excerpts: false # set to true to show excerpts on the homepage
29+
30+
# Minima date format
31+
# refer to http://shopify.github.io/liquid/filters/date/ if you want to customize this
32+
minima:
33+
date_format: "%Y-%m-%d"
34+
35+
# If you want to link only specific pages in your header, uncomment
36+
# this and add the path to the pages in order as they should show up
37+
#header_pages:
38+
# - about.html
39+
40+
# Build settings
41+
theme: minima
42+
43+
plugins:
44+
- jekyll-feed
45+
- jekyll-seo-tag

_includes/head.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
{%- seo -%}
6+
<link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
7+
{%- feed_meta -%}
8+
9+
{%- include custom-head.html -%}
10+
11+
<!-- Thanks be to https://realfavicongenerator.net -->
12+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
13+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
14+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
15+
<link rel="manifest" href="/site.webmanifest" />
16+
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
17+
<meta name="msapplication-TileColor" content="#da532c" />
18+
<meta name="theme-color" content="#ffffff" />
19+
</head>

android-chrome-192x192.png

926 Bytes
Loading

android-chrome-384x384.png

1.41 KB
Loading

apple-touch-icon.png

879 Bytes
Loading

browserconfig.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/mstile-150x150.png"/>
6+
<TileColor>#da532c</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

favicon-16x16.png

799 Bytes
Loading

favicon-32x32.png

935 Bytes
Loading

favicon.ico

7.23 KB
Binary file not shown.

index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
#
3+
# By default, content added below the "---" mark will appear in the home page
4+
# between the top bar and the list of recent posts.
5+
# To change the home page layout, edit the _layouts/home.html file.
6+
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
7+
#
8+
layout: home
9+
---
10+
11+
Check the [`gha-utilities`](https://github.com/gha-utilities/) GitHub
12+
Organization for various projects intended to integrate with GitHub Actions!
13+

mstile-150x150.png

983 Bytes
Loading

robots.txt

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
vim: filetype=liquid.robots expandtab
3+
layout: null
4+
sitemap: false
5+
6+
attributions:
7+
- https://github.com/ai-robots-txt/ai.robots.txt/blob/main/robots.txt
8+
- https://github.com/dmitrizzle/disallow-ai/blob/main/src/robots.txt
9+
- https://github.com/jekyll/jekyll-sitemap
10+
- https://michaelcurrin.github.io/code-cookbook/recipes/web/seo/robots/jekyll.html
11+
- https://neil-clarke.com/block-the-bots-that-feed-ai-models-by-scraping-your-website/
12+
- https://rknight.me/blog/perplexity-ai-is-lying-about-its-user-agent/
13+
- https://search.google.com/search-console/about
14+
- https://www.cyberciti.biz/robots.txt
15+
- https://www.cyberciti.biz/web-developer/block-openai-bard-bing-ai-crawler-bots-using-robots-txt-file/
16+
- https://www.robotstxt.org/robotstxt.html
17+
18+
bots:
19+
allow:
20+
- Mediapartners-Google
21+
22+
disallow:
23+
- AdsBot-Google
24+
- AhrefsBot
25+
- Amazonbot
26+
- Applebot-Extended
27+
- Bytespider
28+
- CCBot
29+
- ChatGPT-User
30+
- Claude-Web
31+
- ClaudeBot
32+
- Diffbot
33+
- FacebookBot
34+
- FriendlyCrawler
35+
- GPTBot
36+
- Google-Extended
37+
- GoogleOther
38+
- ImagesiftBot
39+
- Omgili
40+
- Omgilibot
41+
- PerplexityBot
42+
- Pintrestbot
43+
- Semrush
44+
- SemrushBot
45+
- YouBot
46+
- YouBot
47+
- anthropic-ai
48+
- cohere-ai
49+
- dotbot
50+
- img2dataset
51+
- omgili
52+
- omgilibot
53+
- peer39_crawler
54+
- peer39_crawler/1.0
55+
---
56+
57+
{% for bot in page.bots.allow %}
58+
User-agent: {{ bot }}
59+
Allow: /
60+
{% endfor %}
61+
62+
{% for bot in page.bots.disallow %}
63+
User-agent: {{ bot }}
64+
Disallow: /
65+
{% endfor %}
66+
67+
User-agent: *
68+
Disallow: /assets/ai/bait.zip
69+
70+
Sitemap: {{ "sitemap.xml" | absolute_url }}
71+

site.webmanifest

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "GitHub Actions Utilities",
3+
"short_name": "GHA Utilities",
4+
"icons": [
5+
{
6+
"src": "/android-chrome-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
9+
},
10+
{
11+
"src": "/android-chrome-384x384.png",
12+
"sizes": "384x384",
13+
"type": "image/png"
14+
}
15+
],
16+
"theme_color": "#ffffff",
17+
"background_color": "#ffffff",
18+
"display": "standalone"
19+
}

0 commit comments

Comments
 (0)