-
Notifications
You must be signed in to change notification settings - Fork 21
Conversation
7d6fad3
to
02f158d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
very cool!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks again!
I paired on this, but next day review: everything checks out. :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sorry I didn't look for this before
- run: "./scripts/recurring/build.js" # run the build tweet tweet builder | ||
- uses: gr2m/create-or-update-pull-request-action@v1.x # create a PR or update the Action's existing PR | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note that if you create a pull request using secrets.GITHUB_TOKEN
, no other actions will be triggered by the pull_request
event. You will have to pass a personal access token instead. I'd reccomend to use a bot account or create one for this purpose only
- run: "./scripts/recurring/hiring.js" # run the hiring tweet tweet builder | ||
- uses: gr2m/create-or-update-pull-request-action@v1.x # create a PR or update the Action's existing PR | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above: if you create a pull request using secrets.GITHUB_TOKEN
, no other actions will be triggered by the pull_request
event. You will have to pass a personal access token instead. I'd reccomend to use a bot account or create one for this purpose only
This PR adds automation for tweeting both the build tweet and the hiring tweet. It also adds tooling that can be reused to automatically write other tweets with minimal additional work.