Skip to content

Add automated workflow update action (#1) #11

Add automated workflow update action (#1)

Add automated workflow update action (#1) #11

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
compile-workflows:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install gh-aw extension
run: |
curl -fsSL https://raw.githubusercontent.com/githubnext/gh-aw/refs/heads/main/install-gh-aw.sh \
| bash
- name: Run gh aw compile
run: |
set -e
echo "Compiling agentic workflows..."
gh aw compile
echo "Compilation completed successfully"