Create tweet about slack workspace #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
schedule: | |
# Tweet at 10 every Saturday | |
- cron: "0 10 * * SAT" | |
name: Create tweet about slack workspace | |
jobs: | |
create-slack-tweet: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup node to execute script | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Create another copy of the tweet | |
run: TWEET_FILENAME=slack-link.tweet node ./.github/scripts/createRecurringTweetFile.js | |
- name: Create Pull Request with new tweet | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
commit-message: 'chore(tweet): recurring tweet about slack link' | |
committer: asyncapi-bot <[email protected]> | |
author: asyncapi-bot <[email protected]> | |
title: 'chore(tweet): recurring tweet about slack link' | |
body: 'This is a tweet that we want to share regularly to make sure all AsyncAPI followers know about our slack workspace' | |
branch: 'tweet/${{github.job}}' |