Skip to content

Flags update, transferring theme packages from another repository. #69

Flags update, transferring theme packages from another repository.

Flags update, transferring theme packages from another repository. #69

Workflow file for this run

name: Parse List
on:
push:
branches: [ main ]
paths:
- '.github/**'
- 'packs/**'
- 'index.js'
workflow_dispatch:
jobs:
build:
name: Parse list
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch all commits
run: git fetch --prune --unshallow; git pull origin main
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '16.8.0'
- name: Install dependencies
run: npm install
- name: Parse list
run: node index.js packs
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
tag_push: '--force'