diff --git a/_apps/dco.md b/_apps/dco.md index 1d83017..8e8cb9a 100644 --- a/_apps/dco.md +++ b/_apps/dco.md @@ -7,6 +7,7 @@ screenshots: stars: 20 author: bkeepers repository: probot/dco +updated: 2017-08-18 21:51:05 UTC --- diff --git a/_apps/request-info.md b/_apps/request-info.md index bf6f0eb..a46ff37 100644 --- a/_apps/request-info.md +++ b/_apps/request-info.md @@ -7,6 +7,7 @@ screenshots: stars: 2 author: hiimbex repository: behaviorbot/request-info +updated: 2017-08-15 15:27:53 UTC --- diff --git a/_apps/sentiment-bot.md b/_apps/sentiment-bot.md index 97bf064..690ca77 100644 --- a/_apps/sentiment-bot.md +++ b/_apps/sentiment-bot.md @@ -7,6 +7,7 @@ screenshots: stars: 5 author: hiimbex repository: behaviorbot/sentiment-bot +updated: 2017-08-17 17:44:08 UTC --- Replies to toxic comments with a maintainer designated reply and a link to the repo's code of conduct. It does so by taking data from a `.github/config.yml`. diff --git a/_apps/settings.md b/_apps/settings.md index 3484ab1..1162a85 100644 --- a/_apps/settings.md +++ b/_apps/settings.md @@ -7,6 +7,7 @@ author: bkeepers repository: probot/settings screenshots: - https://user-images.githubusercontent.com/173/29472917-3fad9db0-841b-11e7-8f6d-a6c63052122b.png +updated: 2017-08-09 13:32:07 UTC --- This GitHub App syncs repository settings defined in `.github/settings.yml` to GitHub, enabling Pull Requests for repository settings. diff --git a/_apps/stale.md b/_apps/stale.md index fa66bc6..ff375a7 100644 --- a/_apps/stale.md +++ b/_apps/stale.md @@ -6,8 +6,9 @@ screenshots: - https://user-images.githubusercontent.com/173/27765695-4c016050-5e7e-11e7-9016-c2f6d8c27da4.png - https://user-images.githubusercontent.com/173/27765705-93f94940-5e7e-11e7-8527-3a91bb64ca70.png author: bkeepers -stars: 128 +stars: 129 repository: probot/stale +updated: 2017-08-19 12:25:30 UTC --- Automatically close stale Issues and Pull Requests that tend to accumulate during a project. diff --git a/_apps/update-docs.md b/_apps/update-docs.md index 08a2bc3..9f91812 100644 --- a/_apps/update-docs.md +++ b/_apps/update-docs.md @@ -7,6 +7,7 @@ screenshots: stars: 1 author: hiimbex repository: behaviorbot/update-docs +updated: 2017-08-15 15:27:36 UTC --- diff --git a/_apps/welcome.md b/_apps/welcome.md index 61da8e8..385e046 100644 --- a/_apps/welcome.md +++ b/_apps/welcome.md @@ -9,6 +9,7 @@ screenshots: stars: 5 author: hiimbex repository: behaviorbot/welcome +updated: 2017-08-18 22:42:37 UTC --- diff --git a/_layouts/app.html b/_layouts/app.html index da74d47..0ad73c8 100644 --- a/_layouts/app.html +++ b/_layouts/app.html @@ -46,9 +46,6 @@ layout: default
-

Updated

-

June 12, 2017

-

Repository

{{ page.repository }} @@ -57,6 +54,8 @@ layout: default

{{ page.author }}

+

Updated

+

{{ page.updated | date: "%B %e, %Y"}}

diff --git a/script/sync-stars b/script/sync-data similarity index 90% rename from script/sync-stars rename to script/sync-data index b2db27a..abcfe4b 100755 --- a/script/sync-stars +++ b/script/sync-data @@ -1,5 +1,5 @@ #!/usr/bin/env ruby -# Sync star counts from GitHub +# Sync data for apps from GitHub require 'open-uri' @@ -17,6 +17,7 @@ site.collections["apps"].docs.each do |app| content = File.read(app.path) content.sub!(/^stars: \d+$/, "stars: #{repo[:stargazers_count]}") + content.sub!(/^updated:.*$/, "updated: #{repo[:pushed_at]}") if app['host'] stats = JSON.parse(URI(app['host'] + '/stats').open.read)