Fix an error: issue templates are not created sometimes #4
Workflow file for this run
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
name: Create X Post Draft | |
on: | |
pull_request: | |
types: [closed] | |
branches: | |
- main | |
jobs: | |
create-x-post-draft: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/actions/checkout | |
- uses: actions/checkout@v4 | |
# https://github.com/actions/setup-node | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' # Updated to latest LTS version | |
# https://github.com/plhery/node-twitter-api-v2 | |
- name: Install dependencies | |
run: npm install twitter-api-v2 | |
# https://github.com/actions/github-script | |
- name: Create X Post Draft | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const { TwitterApi } = require('twitter-api-v2'); | |
// Initialize with OAuth 1.0a credentials | |
const client = new TwitterApi({ | |
appKey: process.env.TWITTER_API_KEY, | |
appSecret: process.env.TWITTER_API_SECRET, | |
accessToken: process.env.TWITTER_ACCESS_TOKEN, | |
accessSecret: process.env.TWITTER_ACCESS_TOKEN_SECRET, | |
}); | |
const tweet = `🚀 New release: ${context.payload.pull_request.title}\n\n${context.payload.pull_request.html_url}`; | |
// https://developer.x.com/en/docs/x-api/tweets/manage-tweets/api-reference/post-tweets | |
await client.v2.tweet(tweet); | |
env: | |
TWITTER_API_KEY: ${{ secrets.TWITTER_API_KEY }} | |
TWITTER_API_SECRET: ${{ secrets.TWITTER_API_SECRET }} | |
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }} | |
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} | |