We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f386f4f commit eedebbfCopy full SHA for eedebbf
1 file changed
.github/workflows/install-workflows.yml
@@ -75,7 +75,11 @@ jobs:
75
RUN_BRANCH="ci/install-workflows-${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}"
76
git switch --create "$RUN_BRANCH"
77
78
- gh aw add "${{ github.workspace }}/workflows/copilot-token-audit.md" "${{ github.workspace }}/workflows/copilot-token-optimizer.md"
+ if [[ -f .github/workflows/copilot-token-audit.md && -f .github/workflows/copilot-token-optimizer.md ]]; then
79
+ gh aw update copilot-token-audit copilot-token-optimizer
80
+ else
81
+ gh aw add "${{ github.workspace }}/workflows/copilot-token-audit.md" "${{ github.workspace }}/workflows/copilot-token-optimizer.md"
82
+ fi
83
gh aw compile
84
85
git config user.name "github-actions[bot]"
0 commit comments