diff --git a/.github/workflows/twitter-together.yml b/.github/workflows/twitter-together.yml new file mode 100644 index 0000000..8946939 --- /dev/null +++ b/.github/workflows/twitter-together.yml @@ -0,0 +1,43 @@ +on: [push, pull_request] +name: Twitter, together! +jobs: + preview: + name: Preview + runs-on: ubuntu-latest + if: github.event_name == 'pull_request' + steps: + - uses: gr2m/twitter-together@v1.x + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + tweet: + name: Tweet + runs-on: ubuntu-latest + if: github.event_name == 'push' && github.ref == 'refs/heads/master' + steps: + - name: checkout master + uses: actions/checkout@v2 + - name: Tweet + uses: gr2m/twitter-together@v1.x + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }} + TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} + TWITTER_API_KEY: ${{ secrets.TWITTER_API_KEY }} + TWITTER_API_SECRET_KEY: ${{ secrets.TWITTER_API_SECRET_KEY }} + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project.