All Projects → jamesgeorge007 → Github Activity Readme

jamesgeorge007 / Github Activity Readme

Licence: mit
Updates README with the recent GitHub activity of a user

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Github Activity Readme

Blog Post Workflow
Show your latest blog posts from any sources or StackOverflow activity or Youtube Videos on your GitHub profile/project readme automatically using the RSS feed
Stars: ✭ 910 (+157.06%)
Mutual labels:  hacktoberfest, activity
Github Profile Readme Generator
GitHub profile readme generator allows you to create nice and simple GitHub profile readme files that will be included in your profile previews.
Stars: ✭ 374 (+5.65%)
Mutual labels:  hacktoberfest, readme
Github Profilinator
🚀 This tool contains mini GUI components that you can hook together to automatically generate markdown code for a perfect readme.
Stars: ✭ 225 (-36.44%)
Mutual labels:  hacktoberfest, readme
Github Profile Readme Generator
🚀 Generate GitHub profile README easily with the latest add-ons like visitors count, GitHub stats, etc using minimal UI.
Stars: ✭ 7,812 (+2106.78%)
Mutual labels:  hacktoberfest, readme
Activity
⚡️ Activity app for Nextcloud
Stars: ✭ 67 (-81.07%)
Mutual labels:  hacktoberfest, activity
A Good Readme Template
A template to make good README.md
Stars: ✭ 196 (-44.63%)
Mutual labels:  hacktoberfest, readme
profile-activity-generator
Generate custom profile activity for your profile README
Stars: ✭ 78 (-77.97%)
Mutual labels:  readme, activity
Datawave
DataWave is an ingest/query framework that leverages Apache Accumulo to provide fast, secure data access.
Stars: ✭ 347 (-1.98%)
Mutual labels:  hacktoberfest
Core.js
Extendable client for GitHub's REST & GraphQL APIs
Stars: ✭ 344 (-2.82%)
Mutual labels:  hacktoberfest
Php
Development repository for the php cookbook
Stars: ✭ 347 (-1.98%)
Mutual labels:  hacktoberfest
Apostrophe
Apostrophe is a full-featured, open-source CMS built with Node.js that empowers organizations by combining in-context editing and headless architecture in a full-stack JS environment.
Stars: ✭ 3,733 (+954.52%)
Mutual labels:  hacktoberfest
Pvm
Build workflows, activities, BPMN like processes, or state machines with PVM.
Stars: ✭ 348 (-1.69%)
Mutual labels:  activity
Dtd Finder
List DTDs and generate XXE payloads using those local DTDs.
Stars: ✭ 350 (-1.13%)
Mutual labels:  hacktoberfest
Cs193p Developing Apps For Ios Spring 2020
Stanford 公开课 CS193p - Developing Apps for iOS 2020 春季学期字幕翻译
Stars: ✭ 348 (-1.69%)
Mutual labels:  hacktoberfest
Itop
A simple, web based IT Service Management tool
Stars: ✭ 349 (-1.41%)
Mutual labels:  hacktoberfest
Moebooru
Moebooru, a fork of danbooru1 that has been heavily modified
Stars: ✭ 347 (-1.98%)
Mutual labels:  hacktoberfest
Devops Guide
DevOps Guide - Development to Production all configurations with basic notes to debug efficiently.
Stars: ✭ 4,119 (+1063.56%)
Mutual labels:  hacktoberfest
Zwave2mqtt
Fully configurable Zwave to MQTT gateway and Control Panel using NodeJS and Vue
Stars: ✭ 352 (-0.56%)
Mutual labels:  hacktoberfest
Rethinkdb.driver
🎧 A NoSQL C#/.NET RethinkDB database driver with 100% ReQL API coverage.
Stars: ✭ 350 (-1.13%)
Mutual labels:  hacktoberfest
Exodus
Platform to audit trackers used by Android application
Stars: ✭ 349 (-1.41%)
Mutual labels:  hacktoberfest

GitHub Activity in Readme

Updates README.md with the recent GitHub activity of a user.

profile-repo

Instructions

  • Add the comment <!--START_SECTION:activity--> (entry point) within README.md. You can find an example here.

  • It's the time to create a workflow file.

.github/workflows/update-readme.yml

name: Update README

on:
  schedule:
    - cron: '*/30 * * * *'
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest
    name: Update this repo's README with recent activity

    steps:
      - uses: actions/[email protected]
      - uses: jamesgeorge007/[email protected]
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

The above job runs every half an hour, you can change it as you wish based on the cron syntax.

Please note that only those public events that belong to the following list show up:-

  • IssueEvent
  • IssueCommentEvent
  • PullRequestEvent

You can find an example here.

Override defaults

Use the following input params to customize it for your use case:-

Input Param Default Value Description
COMMIT_MSG ⚡️ Update README with the recent activity Commit message used while committing to the repo
MAX_LINES 5 The maximum number of lines populated in your readme file
name: Update README

on:
  schedule:
    - cron: '*/30 * * * *'
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest
    name: Update this repo's README with recent activity

    steps:
      - uses: actions/[email protected]
      - uses: jamesgeorge007/[email protected]
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          COMMIT_MSG: 'Specify a custom commit message'
          MAX_LINES: 10

Inspired by JasonEtco/activity-box

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].