Skip to content

Commit

Permalink
adding github action to auto tweet on repo change
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelCade committed Apr 21, 2022
1 parent b55a0d6 commit 3dd477e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/send-tweet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Send a Tweet
on: [push]
jobs:
tweet:
runs-on: ubuntu-latest
steps:
- uses: ethomson/send-tweet-action@v1
with:
status: "👋 Hey Everyone!. This is an automated message 🤖 to let you know that there has been an update on the #90DaysOfDevOps repository, You can check it out https://github.com/MichaelCade/90DaysOfDevOps"
consumer-key: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
consumer-secret: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
access-token: ${{ secrets.TWITTER_ACCESS_TOKEN }}
access-token-secret: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}

0 comments on commit 3dd477e

Please sign in to comment.