diff --git a/.github/workflows/social-media-integration.yml b/.github/workflows/social-media-integration.yml new file mode 100644 index 00000000..b6d43b59 --- /dev/null +++ b/.github/workflows/social-media-integration.yml @@ -0,0 +1,19 @@ +name: Post Tweet on Push + +on: push + +jobs: + tweet: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Post a tweet on push + uses: julb/action-post-twitter-status@v1 + with: + message: "🚀 Code has been pushed to the repository!" + twitter_app_consumer_api_key: ${{ secrets.TWITTER_API_KEY }} + twitter_app_consumer_api_secret_key: ${{ secrets.TWITTER_API_SECRET_KEY }} + twitter_app_access_token: ${{ secrets.TWITTER_ACCESS_TOKEN }} + twitter_app_access_token_secret: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} diff --git a/Workshop Presentation.pptx b/Workshop Presentation.pptx index 62dd2e3c..3112f606 100644 Binary files a/Workshop Presentation.pptx and b/Workshop Presentation.pptx differ