Removing shared reporting.md from workflows #61
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| compile: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Set up gh-aw CLI | |
| uses: github/gh-aw-actions/setup-cli@f8495a686e66770ae977f82732f34d7340ee42a4 # v0.71.4 | |
| with: | |
| version: v0.71.4 | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Compile workflows | |
| run: gh aw compile --dir workflows | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| add: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up gh-aw CLI | |
| uses: github/gh-aw-actions/setup-cli@f8495a686e66770ae977f82732f34d7340ee42a4 # v0.71.4 | |
| with: | |
| version: v0.71.4 | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Initialize target repository | |
| run: | | |
| TARGET_REPO=$(mktemp -d) | |
| echo "TARGET_REPO=$TARGET_REPO" >> "$GITHUB_ENV" | |
| git init "$TARGET_REPO" | |
| - name: Add workflows | |
| working-directory: ${{ env.TARGET_REPO }} | |
| run: gh aw add githubnext/agentic-ops/copilot-token-audit githubnext/agentic-ops/copilot-token-optimizer | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |