Run pipeline generator #1039
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: Run pipeline generator | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
branches: master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
- name: Run a multi-line script | |
env: | |
CI_TOKEN: ${{ secrets.CI_TOKEN }} | |
run: | | |
git config --global user.name netboot-ci | |
git config --global user.email [email protected] | |
ansible-playbook -i inventory site.yml |