Add script and workflow to sync the set of starter-workflows for GHES

This commit is contained in:
Christopher Schleiden
2020-05-15 16:49:20 -07:00
parent e3d245e1f3
commit 5802cb7302
9 changed files with 390 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
on:
push:
branches:
- master
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
git config user.email "cschleiden@github.com"
git config user.name "GitHub Actions"
- uses: actions/setup-node@v1
with:
node-version: '12'
- name: Check starter workflows for GHES compat
run: |
npm ci
npx ts-node-script ./index.ts
working-directory: ./script
- run: |
git add -A
git commit -m "Updating GHES workflows"
- run: git push