Check for New Interactions and Add to Orbit #251
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: Check for New Interactions and Add to Orbit | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
env: | |
ORBIT_API_KEY: ${{ secrets.ORBIT_API_KEY}} | |
ORBIT_WORKSPACE_ID: ${{ secrets.ORBIT_WORKSPACE_ID}} | |
jobs: | |
product_hunt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Use Node.js | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version: '14' | |
- run: npx @orbit-love/producthunt --votes --comments --id 163152 | |
name: 'Get PactFlow Votes & Add to Orbit' | |
env: | |
PRODUCT_HUNT_API_KEY: ${{ secrets.PRODUCT_HUNT_API_KEY}} | |
PRODUCT_HUNT_API_SECRET: ${{ secrets.PRODUCT_HUNT_API_SECRET}} | |
stack_overflow: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
tag: | |
- pact | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Use Node.js | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version: '14' | |
- name: Get Questions & Add to Orbit | |
run: npx @orbit-love/stackoverflow --questions --hours=24 --tag="${{matrix.tag}}" | |
- name: Get Answers & Add to Orbit | |
run: npx @orbit-love/stackoverflow --answers --hours=24 --tag="${{matrix.tag}}" | |
- name: Get Answered Questions & Add to Orbit | |
run: npx @orbit-love/stackoverflow --questions --answers --hours=24 --tag="${{matrix.tag}}" | |
env: | |
STACK_APPS_KEY: ${{ secrets.STACK_APPS_KEY }} | |
youtube: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Use Node.js | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version: '14' | |
- name: Get Comments & Add to Orbit | |
run: npx @orbit-love/youtube --comments --hours=24 | |
env: | |
YOUTUBE_API_KEY: ${{ secrets.YOUTUBE_API_KEY }} | |
YOUTUBE_CHANNEL_ID: ${{ secrets.YOUTUBE_CHANNEL_ID }} |