Open branches in Figma #125
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: Open branches in Figma | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 8 * * * | |
jobs: | |
sync-figma-brand: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.x" | |
# Paso 3: Instalar dependencias de Python | |
- name: Install dependencies | |
run: | | |
pip install requests pandas | |
pip install tabulate | |
pip install load_dotenv | |
- name: Run sync for the brand(s) | |
env: | |
FIGMA_TOKEN: ${{ secrets.FIGMA_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.NOVUM_PRIVATE_REPOS }} | |
working-directory: .github/branch-table | |
run: python3 branch-table.py |