Skip to content

Import Org logos

Import Org logos #382

Workflow file for this run

name: Import Org logos
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Install dependencies
run: yarn install
- name: Import org logos
run: yarn org:import
env:
AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }}
AIRTABLE_API_BASE: ${{ secrets.AIRTABLE_API_BASE }}
- name: Commit updates
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: 'CI Logo import'