https://github.com/wistudent/soundcloud-likes-log-action
A github action to log your soundcloud likes
https://github.com/wistudent/soundcloud-likes-log-action
Last synced: 4 months ago
JSON representation
A github action to log your soundcloud likes
- Host: GitHub
- URL: https://github.com/wistudent/soundcloud-likes-log-action
- Owner: WIStudent
- Created: 2021-07-31T20:39:40.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-26T02:11:08.000Z (over 1 year ago)
- Last Synced: 2025-05-01T15:18:01.967Z (about 1 year ago)
- Language: TypeScript
- Size: 737 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Soundcloud Likes Log Action
Collects a list of your soundcloud likes and writes them into a json file.
## Inputs
## `username`
**Required** Your soundcloud user name. If the url to your soundcloud profile is `https://soundcloud.com/wistudent`, your username is `wistudent`.
## `output-path`
Path to where the resulting json should be written. Default: `likes.json`.
## Example usage
The following workflow collects the list of soundcloud likes once a week and commits any changes.
```yml
name: Update Log
on:
schedule:
- cron: '0 0 * * 0'
jobs:
update-log:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: WIStudent/soundcloud-likes-log-action@v2
with:
username: wistudent
- uses: EndBug/add-and-commit@v9
with:
add: likes.json
```