[PR #3145] [MERGED] Edit checkgithubdates to add archived status #3145

Closed
opened 2025-11-06 11:05:14 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/awesome-selfhosted/awesome-selfhosted/pull/3145
Author: @Ki-er
Created: 7/19/2022
Status: Merged
Merged: 7/25/2022
Merged by: @nodiscc

Base: masterHead: edit_checkgithubdates


📝 Commits (4)

📊 Changes

1 file changed (+2 additions, -2 deletions)

View changed files

📝 tests/check-github-commit-dates.py (+2 -2)

📄 Description

Closes #1794
Output:

python3 tests/check-github-commit-dates.py
2022-07-19 08:44:15 https://github.com/ActivityWatch/activitywatch archived:False
2022-07-11 08:04:09 https://github.com/Admidio/admidio archived:False
2022-07-19 08:16:10 https://github.com/AirenSoft/OvenMediaEngine archived:False
2022-04-20 09:26:50 https://github.com/Alanaktion/phproject archived:False
2022-06-01 00:59:56 https://github.com/Algram/ytdl-webserver archived:False

Working example: https://github.com/CouchPotato/CouchPotatoServer

2021-08-04 18:39:21 https://github.com/CouchPotato/CouchPotatoServer archived:True

Added encoding = encoding="utf8" due to getting error:

return codecs.charmap_decode(input,self.errors,decoding_table)[0]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 70029: character maps to <undefined>
make: *** [Makefile:31: check_github_commit_dates] Error 1

Thank you for taking the time to work on a PR for Awesome-Selfhosted!

To ensure your PR is dealt with swiftly please check the following:

  • Submit one item per pull request. This eases reviewing and speeds up inclusion.
  • Format your submission as follows, where Demo and Clients are optional.
    Do not add a duplicate Source code link if it is the same as the main link.
    Keep the short description under 250 characters and use sentence case
    for it, even if the project's webpage or readme uses another capitalisation
    such as title case, all caps, small caps or all lowercase.
    Demo links should only be used for interactive demos, i.e. not video demonstrations.
    - [Name](http://homepage/) - Short description, under 250 characters, sentence case. ([Demo](http://url.to/demo), [Source Code](http://url.of/source/code), [Clients](https://url.to/list/of/related/clients-or-apps)) `License` `Language`
  • Additions that depend on proprietary services outside the user's control must be marked .
    - [Name](http://homepage/) `⚠` - Short description, under 250 characters, sentence case. ([Demo](http://url.to/demo), [Source Code](http://url.of/source/code), [Clients](https://url.to/list/of/related/clients-or-apps)) `License` `Language`
  • Additions that are not Free software
    must be added to non-free.md and marked ⊘ Proprietary:
    - [Name](http://homepage/) `⊘ Proprietary` - Short description, under 250 characters, sentence case. ([Demo](http://url.to/demo), [Source Code](http://url.of/source/code), [Clients](https://url.to/list/of/related/clients-or-apps)) `Language`
  • Additions are inserted preserving alphabetical order.
  • Additions are not already listed at any of awesome-sysadmin, awesome-analytics, staticgen.com, staticsitegenerators.net.
  • The Language tag is the main server-side requirement for the software. Don't include frameworks or specific dialects.
  • Any license you add is in our list of licenses.
  • You have searched the repository for any relevant issues or PRs, including closed ones.
  • Any category you are creating has the minimum requirement of 3 items.
    If not, your addition may be inserted into Misc/Other.
  • Any software project you are adding to the list is actively maintained.
  • The pull request title is informative, unlike "Update README.md".
    Suggested titles: "Add aaa to bbb" for adding software aaa to section bbb,
    "Remove aaa from bbb" for removing, "Fix license for aaa", etc.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/awesome-selfhosted/awesome-selfhosted/pull/3145 **Author:** [@Ki-er](https://github.com/Ki-er) **Created:** 7/19/2022 **Status:** ✅ Merged **Merged:** 7/25/2022 **Merged by:** [@nodiscc](https://github.com/nodiscc) **Base:** `master` ← **Head:** `edit_checkgithubdates` --- ### 📝 Commits (4) - [`bda32fe`](https://github.com/awesome-selfhosted/awesome-selfhosted/commit/bda32fe3cef4277b5eb7c8ace9645b76775015a3) Add archives dates - [`503cfa3`](https://github.com/awesome-selfhosted/awesome-selfhosted/commit/503cfa352f6698c81074373ea5487bba80481c6f) Merge branch 'awesome-selfhosted:master' into edit_checkgithubdates - [`969ee04`](https://github.com/awesome-selfhosted/awesome-selfhosted/commit/969ee04059cde240b6ccdb41aeafc87171117237) fix linespacing - [`b229d04`](https://github.com/awesome-selfhosted/awesome-selfhosted/commit/b229d046476c8b82c2d9779098262ceafee1709f) Merge branch 'edit_checkgithubdates' of https://github.com/forks-by-kieran/awesome-selfhosted into edit_checkgithubdates ### 📊 Changes **1 file changed** (+2 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `tests/check-github-commit-dates.py` (+2 -2) </details> ### 📄 Description Closes #1794 Output: ``` python3 tests/check-github-commit-dates.py 2022-07-19 08:44:15 https://github.com/ActivityWatch/activitywatch archived:False 2022-07-11 08:04:09 https://github.com/Admidio/admidio archived:False 2022-07-19 08:16:10 https://github.com/AirenSoft/OvenMediaEngine archived:False 2022-04-20 09:26:50 https://github.com/Alanaktion/phproject archived:False 2022-06-01 00:59:56 https://github.com/Algram/ytdl-webserver archived:False ``` Working example: https://github.com/CouchPotato/CouchPotatoServer ``` 2021-08-04 18:39:21 https://github.com/CouchPotato/CouchPotatoServer archived:True ``` --- Added encoding = `encoding="utf8"` due to getting error: ``` return codecs.charmap_decode(input,self.errors,decoding_table)[0] UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 70029: character maps to <undefined> make: *** [Makefile:31: check_github_commit_dates] Error 1 ``` ---- <!-- DO NOT DELETE THE TEXT BELOW. Please make sure relevant boxes are checked [x] --> Thank you for taking the time to work on a PR for Awesome-Selfhosted! To ensure your PR is dealt with swiftly please check the following: - [x] Submit one item per pull request. This eases reviewing and speeds up inclusion. - [x] Format your submission as follows, where `Demo` and `Clients` are optional. Do not add a duplicate `Source code` link if it is the same as the main link. Keep the short description under 250 characters and use [sentence case](https://en.wikipedia.org/wiki/Letter_case#Sentence_case) for it, even if the project's webpage or readme uses another capitalisation such as title case, all caps, small caps or all lowercase. `Demo` links should only be used for interactive demos, i.e. not video demonstrations. ``- [Name](http://homepage/) - Short description, under 250 characters, sentence case. ([Demo](http://url.to/demo), [Source Code](http://url.of/source/code), [Clients](https://url.to/list/of/related/clients-or-apps)) `License` `Language` `` - [x] Additions that depend on proprietary services outside the user's control must be marked `⚠`. ``- [Name](http://homepage/) `⚠` - Short description, under 250 characters, sentence case. ([Demo](http://url.to/demo), [Source Code](http://url.of/source/code), [Clients](https://url.to/list/of/related/clients-or-apps)) `License` `Language` `` - [x] Additions that are not [Free software](https://en.wikipedia.org/wiki/Free_software) must be added to `non-free.md` and marked `⊘ Proprietary`: ``- [Name](http://homepage/) `⊘ Proprietary` - Short description, under 250 characters, sentence case. ([Demo](http://url.to/demo), [Source Code](http://url.of/source/code), [Clients](https://url.to/list/of/related/clients-or-apps)) `Language` `` - [x] Additions are inserted preserving alphabetical order. - [x] Additions are not already listed at any of [awesome-sysadmin](https://github.com/n1trux/awesome-sysadmin), [awesome-analytics](https://github.com/onurakpolat/awesome-analytics), [staticgen.com](https://www.staticgen.com/), [staticsitegenerators.net](https://staticsitegenerators.net/). - [x] The `Language` tag is the main **server-side** requirement for the software. Don't include frameworks or specific dialects. - [x] Any license you add is in our [list of licenses](https://github.com/awesome-selfhosted/awesome-selfhosted/blob/master/README.md#list-of-licenses). - [x] You have searched the repository for any relevant [issues](https://github.com/awesome-selfhosted/awesome-selfhosted/issues) or [PRs](https://github.com/awesome-selfhosted/awesome-selfhosted/pulls), including closed ones. - [x] Any category you are creating has the minimum requirement of 3 items. If not, your addition may be inserted into `Misc/Other`. - [x] Any software project you are adding to the list is actively maintained. - [x] The pull request title is informative, unlike "Update README.md". Suggested titles: "Add aaa to bbb" for adding software aaa to section bbb, "Remove aaa from bbb" for removing, "Fix license for aaa", etc. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-06 11:05:14 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-selfhosted#3145