-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
28 lines (28 loc) · 1.2 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: 'Post Tweet V2 Action'
description: 'Post a tweet to Twitter during a GitHub Actions workflow with Twitter REST API for Version 2 endpoint..'
author: 'Julien SCHMITT'
inputs:
message:
description: 'The message ("tweet") to post to twitter.'
required: true
consumer-key:
description: 'Consumer API key, available in the "Keys and tokens" section of your application in the Twitter Developer site.'
required: true
consumer-secret:
description: 'Consumer API secret key, available in the "Keys and tokens" section of your application in the Twitter Developer site.'
required: true
access-token:
description: 'Application access token, available in the "Keys and tokens" section of your application in the Twitter Developer site.'
required: true
access-token-secret:
description: 'Application access token secret, available in the "Keys and tokens" section of your application in the Twitter Developer site.'
required: true
bearer-token:
description: 'Application bearer token, available in the "Keys and tokens" section of your application in the Twitter Developer site.'
required: true
runs:
using: 'node16'
main: 'index.js'
branding:
icon: edit
color: blue