Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liamg/github-profile-terminal-action
Create a GitHub profile README nested inside a terminal nested inside a GIF
https://github.com/liamg/github-profile-terminal-action
action autogenerated profile-readme shit
Last synced: 12 days ago
JSON representation
Create a GitHub profile README nested inside a terminal nested inside a GIF
- Host: GitHub
- URL: https://github.com/liamg/github-profile-terminal-action
- Owner: liamg
- Created: 2022-03-11T20:03:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-07T01:11:15.000Z (over 1 year ago)
- Last Synced: 2024-05-02T00:55:28.891Z (6 months ago)
- Topics: action, autogenerated, profile-readme, shit
- Language: Go
- Homepage: https://github.com/liamg
- Size: 119 KB
- Stars: 17
- Watchers: 2
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# github-profile-terminal-action
This is the code that generates my [profile README.md](https://github.com/liamg), including the terminal gif.
You can use it to automatically create your GitHub profile README by adding a GitHub action to your profile repository.
Here's an example config that updates every 4 hours:
```yaml
name: auto-updateon:
workflow_dispatch:
schedule:
- cron: 0 */4 * * *jobs:
build:
name: auto update
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@master
- uses: liamg/github-profile-terminal-action@main
with:
feed_url: https://www.liam-galvin.co.uk/feed.xml
twitter_username: liam_galvin
theme: dark
token: ${{ secrets. GITHUB_TOKEN }}
```