testing workflow again #3
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: Trigger Update in asd-projects-template | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Update repository | |
run: | | |
git clone https://github.com/OperationSpark/asd-projects-template.git | |
cd asd-projects-template | |
# Make your updates here | |
git add . | |
git commit -m "Automated update from ${{ github.event.repository.name }}" | |
git push origin main |