https://github.com/irfansofyana/instapaper-actions
Github action to add web contents to Instapaper
https://github.com/irfansofyana/instapaper-actions
api github-actions github-actions-javascript instapaper instapaper-api javascript
Last synced: 4 months ago
JSON representation
Github action to add web contents to Instapaper
- Host: GitHub
- URL: https://github.com/irfansofyana/instapaper-actions
- Owner: irfansofyana
- Created: 2022-09-04T12:39:04.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-04T13:40:28.000Z (almost 4 years ago)
- Last Synced: 2025-10-17T23:07:24.846Z (8 months ago)
- Topics: api, github-actions, github-actions-javascript, instapaper, instapaper-api, javascript
- Language: JavaScript
- Homepage: https://github.com/marketplace/actions/instapaper-actions
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# instapaper-actions
Github action to add web contents into your instapaper account.
## Inputs
- `username`: your instapaper username
- `password`: your instapaper password
- `url`: URL to the web content that you want to save
- `title`: Title of the content that you want to save
- `selection`: The description under the content in the interface
For more details, please check the Simple API documentation from Instapaper [here](https://www.instapaper.com/api/simple).
## Example Usage
```yaml
on: [push]
jobs:
example_job:
runs-on: ubuntu-latest
name: A job to add a medium Article to instapaper account
steps:
- name: Add example article
uses: irfansofyana/instapaper-actions@v1.0.0
with:
username: ${{ secrets.INSTAPAPER_USERNAME }}
password: ${{ secrets.INSTAPAPER_PASSWORD }}
url: https://medium.com/@gibinfrancis/software-architect-journey-ca9398546608
title: Software Architect — Journey
selection: This article is added by Github Action
```