Skip to content

Update com.secondsonconsulting.baseline.plist (#664) #136

Update com.secondsonconsulting.baseline.plist (#664)

Update com.secondsonconsulting.baseline.plist (#664) #136

Workflow file for this run

name: Update indexes
on:
push:
branches:
- main
- master
jobs:
build:
if: github.repository == 'ProfileCreator/ProfileManifests'
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
ref: master
path: clone
- name: Run updateindexes.py script and commit changes
working-directory: clone
run: |
./updateIndexes.py
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add -A
git commit -am "Update indexes" || true
git push --set-upstream origin master || true