Skip to content

Commit

Permalink
feat: add bluesky action
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickHeneise committed Apr 18, 2023
1 parent 041c97b commit 72cc5f8
Show file tree
Hide file tree
Showing 7 changed files with 24,539 additions and 7,173 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/bluesky-event.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Post an Event on Bluesky

on:
workflow_call:
inputs:
post:
type: string
required: true
secrets:
BSKY_IDENTIFIER:
required: true
BSKY_PASSWORD:
required: true

jobs:
bluesky:
runs-on: ubuntu-latest
steps:
- uses: zentered/[email protected]
with:
post: ${{ inputs.post }}
env:
BSKY_IDENTIFIER: ${{ secrets.BSKY_IDENTIFIER }}
BSKY_PASSWORD: ${{ secrets.BSKY_PASSWORD }}
4 changes: 2 additions & 2 deletions .github/workflows/twitter-event.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tween an Event on Twitter
name: Tweet an Event on Twitter

on:
workflow_call:
Expand Down Expand Up @@ -26,4 +26,4 @@ jobs:
consumer-key: ${{ secrets.consumer-key }}
consumer-secret: ${{ secrets.consumer-secret }}
access-token: ${{ secrets.access-token }}
access-token-secret: ${{ secrets.access-token-secret }}
access-token-secret: ${{ secrets.access-token-secret }}
Loading

0 comments on commit 72cc5f8

Please sign in to comment.