This repository has been archived by the owner on Jul 10, 2024. It is now read-only.
Tweet GFI Data #332
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: Tweet GFI Data | |
on: | |
schedule: | |
- cron: "12 0/1 * * *" | |
workflow_dispatch: | |
inputs: | |
TEST: | |
description: "This is a test ?" | |
required: true | |
type: boolean | |
default: false | |
jobs: | |
tweet-gfi-data: | |
name: Tweet GFI Data | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Tweet GFI Data | |
id: tweet-gfi-data | |
uses: ./action/ | |
with: | |
TEST: ${{ inputs.TEST || 'false' }} | |
# Trigger | |
TRIGGER_TWEET_GFI_DATA: true | |
# Secrets | |
GITHUB_TOKEN: ${{ secrets.CODINASION_GITHUB_TOKEN }} | |
TWITTER_APP_KEY: ${{ secrets.TWITTER_APP_KEY }} | |
TWITTER_APP_SECRET: ${{ secrets.TWITTER_APP_SECRET }} | |
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }} | |
TWITTER_ACCESS_SECRET: ${{ secrets.TWITTER_ACCESS_SECRET }} |