Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebrand under Library Pals #160

Merged
merged 7 commits into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
name: Document GitHub action

permissions:
contents: write

on:
workflow_dispatch:
push:
Expand All @@ -13,7 +17,7 @@ on:

jobs:
documentation:
runs-on: macOS-latest
runs-on: ubuntu-latest
name: Write documentation
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/read-advanced.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ on:
# Set up the steps to run the action
jobs:
update-library:
runs-on: macOS-latest
runs-on: ubuntu-latest
name: Read
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/read-thumbnail.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ on:
# Set up the steps to run the action
jobs:
update-library:
runs-on: macOS-latest
runs-on: ubuntu-latest
name: Read
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/read.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ on:
# Set up the steps to run the action
jobs:
update-library:
runs-on: macOS-latest
runs-on: ubuntu-latest
name: Read
steps:
- name: Checkout
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# read-action

![Test](https://github.com/katydecorah/read-action/workflows/Test/badge.svg?branch=main) [![Read](https://github.com/katydecorah/read-action/actions/workflows/read.yml/badge.svg)](https://github.com/katydecorah/read-action/actions/workflows/read.yml)
![Test](https://github.com/library-pals/read-action/workflows/Test/badge.svg?branch=main) [![Read](https://github.com/library-pals/read-action/actions/workflows/read.yml/badge.svg)](https://github.com/library-pals/read-action/actions/workflows/read.yml)

This GitHub action tracks the books that you read by updating a JSON file in your repository. Pair it with the [iOS Shortcut](shortcut/README.md) to automatically trigger the action or click **Run workflow** from the Actions tab to submit details about the book.

Expand Down Expand Up @@ -70,14 +70,14 @@ on:
# Set up the steps to run the action
jobs:
update-library:
runs-on: macOS-latest
runs-on: ubuntu-latest
name: Read
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Read
uses: katydecorah/[email protected]
uses: library-pals/[email protected]

- name: Commit updated read file
run: |
Expand Down Expand Up @@ -148,7 +148,7 @@ on:
# Set up the steps to run the action
jobs:
update-library:
runs-on: macOS-latest
runs-on: ubuntu-latest
name: Read
steps:
- name: Checkout
Expand All @@ -158,7 +158,7 @@ jobs:
id: read_action
with:
set-image: true
uses: katydecorah/[email protected]
uses: library-pals/[email protected]

- name: Download the book thumbnail
if: env.BookThumbOutput != ''
Expand Down Expand Up @@ -257,14 +257,14 @@ on:
# Set up the steps to run the action
jobs:
update-library:
runs-on: macOS-latest
runs-on: ubuntu-latest
name: Read
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Read
uses: katydecorah/[email protected]
uses: library-pals/[email protected]
with:
thumbnail-width: 1280
set-image: true
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/katydecorah/read.git"
"url": "git+https://github.com/library-pals/read-action.git"
},
"bugs": {
"url": "https://github.com/katydecorah/read/issues"
"url": "https://github.com/library-pals/read-action/issues"
},
"homepage": "https://github.com/katydecorah/read#readme",
"homepage": "https://github.com/library-pals/read-action#readme",
"description": "This GitHub action tracks the books that you've read by updating the `_data/read.json` file in your repository.",
"keywords": [
"github-actions"
Expand Down
Loading