Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: zentered/bluesky-post-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.0
Choose a base ref
...
head repository: zentered/bluesky-post-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.2.0
Choose a head ref
  • 7 commits
  • 18 files changed
  • 2 contributors

Commits on Feb 16, 2024

  1. build(deps): bump undici from 5.27.2 to 5.28.3

    Bumps [undici](https://github.com/nodejs/undici) from 5.27.2 to 5.28.3.
    - [Release notes](https://github.com/nodejs/undici/releases)
    - [Commits](nodejs/undici@v5.27.2...v5.28.3)
    
    ---
    updated-dependencies:
    - dependency-name: undici
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Feb 16, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    52a4427 View commit details
  2. Merge pull request #5 from zentered/dependabot/npm_and_yarn/undici-5.…

    …28.3
    
    build(deps): bump undici from 5.27.2 to 5.28.3
    PatrickHeneise authored Feb 16, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    9b61906 View commit details

Commits on Apr 4, 2024

  1. build(deps): bump undici from 5.28.3 to 5.28.4

    Bumps [undici](https://github.com/nodejs/undici) from 5.28.3 to 5.28.4.
    - [Release notes](https://github.com/nodejs/undici/releases)
    - [Commits](nodejs/undici@v5.28.3...v5.28.4)
    
    ---
    updated-dependencies:
    - dependency-name: undici
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Apr 4, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    faec35d View commit details

Commits on Apr 8, 2024

  1. Merge pull request #6 from zentered/dependabot/npm_and_yarn/undici-5.…

    …28.4
    
    build(deps): bump undici from 5.28.3 to 5.28.4
    PatrickHeneise authored Apr 8, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8ee7e78 View commit details

Commits on Feb 18, 2025

  1. Verified

    This commit was signed with the committer’s verified signature.
    PatrickHeneise Patrick Heneise
    Copy the full SHA
    76131bc View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    2943b6b View commit details
  3. Merge pull request #9 from zentered/7-hashtags-not-displaying-as-link…

    …s-in-posts
    
    feat: handle facets with links and mentions
    PatrickHeneise authored Feb 18, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4aa8356 View commit details
Showing with 73,196 additions and 66,514 deletions.
  1. +0 −2 .eslintignore
  2. +0 −12 .eslintrc.json
  3. +0 −1 .husky/commit-msg
  4. +1 −4 .husky/pre-commit
  5. +2 −2 README.md
  6. +71,650 −64,758 dist/index.js
  7. +1 −1 dist/index.js.map
  8. +307 −2 dist/licenses.txt
  9. +1 −1 dist/sourcemap-register.cjs
  10. +14 −0 eslint.config.js
  11. +1,168 −1,676 package-lock.json
  12. +13 −11 package.json
  13. +2 −20 src/agent.js
  14. +2 −20 src/post.js
  15. +1 −2 src/validate.js
  16. +26 −0 test/facets.test.js
  17. +4 −1 test/post.test.js
  18. +4 −1 test/validate.test.js
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

12 changes: 0 additions & 12 deletions .eslintrc.json

This file was deleted.

1 change: 0 additions & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx commitlint --edit $1
5 changes: 1 addition & 4 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
npm test
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Bluesky Post Action

<p align="center">
<img src=".github/assets/cute_robot_in_the_center_with_a_blue_sky.jpg">
<img src=".github/assets/cute_robot_in_the_center_with_a_blue_sky.jpg" alt="robot in the clouds">
</p>

GitHub Action to post to [bsky.app](bsky.app)
@@ -36,7 +36,7 @@ jobs:
bsky-post:
runs-on: ubuntu-latest
steps:
- uses: zentered/bluesky-post-action@v0.0.1
- uses: zentered/bluesky-post-action@{LATEST_VERSION}
with:
post: ${{ inputs.post }}
service: ${{ inputs.service }}
Loading