Skip to content

Commit

Permalink
Merge branch 'main' into fake-scheduling-improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekFrank committed Feb 28, 2025
2 parents 0c16cbf + 9b70987 commit f96f76c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/scheduling-benchmarking.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
echo 'BEFORE_OUTPUT<<EOF'
go test -tags=test_performance -run=SchedulingProfile
echo EOF
} >> $GITHUB_OUTPUT
} >> "$GITHUB_OUTPUT"
- uses: actions/github-script@v7
env:
BEFORE_OUTPUT: ${{ steps.test-run.outputs.BEFORE_OUTPUT }}
with:
github-token: ${{secrets.GITHUB_TOKEN}}
env:
BEFORE_OUTPUT: ${{ steps.test-run.outputs.BEFORE_OUTPUT }}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
Expand All @@ -54,19 +54,19 @@ jobs:
run: |
{
cd pkg/controllers/provisioning/scheduling
echo 'BEFORE_OUTPUT<<EOF'
echo 'AFTER_OUTPUT<<EOF'
go test -tags=test_performance -run=SchedulingProfile
echo EOF
} >> $GITHUB_OUTPUT
} >> "$GITHUB_OUTPUT"
- uses: actions/github-script@v7
env:
BEFORE_OUTPUT: ${{ steps.test-run.outputs.AFTER_OUTPUT }}
with:
github-token: ${{secrets.GITHUB_TOKEN}}
env:
BEFORE_OUTPUT: ${{ steps.test-run.outputs.BEFORE_OUTPUT }}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '$BEFORE_OUTPUT'
body: '$AFTER_OUTPUT'
})

0 comments on commit f96f76c

Please sign in to comment.