Skip to content

testing workflow again #3

testing workflow again

testing workflow again #3

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