Skip to content

Commit

Permalink
ci: test commit
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Drew <[email protected]>
  • Loading branch information
learnitall committed May 10, 2024
1 parent c29a81a commit 035d4c1
Showing 1 changed file with 3 additions and 19 deletions.
22 changes: 3 additions & 19 deletions .github/workflows/scale-test-100-gce.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,16 @@ name: 100 Nodes Scale Test
on:
schedule:
- cron: '39 0 * * 1-5'
push:
branches:
- tinker/learnitall/scale-test-1

permissions:
# To be able to access the repository with actions/checkout
contents: read
# To be able to request the JWT from GitHub's OIDC provider
id-token: write

concurrency:
# Structure:
# - Workflow name
# - Event type
# - A unique identifier depending on event type:
# - schedule: SHA
# - workflow_dispatch: PR number
#
# This structure ensures a unique concurrency group name is generated for each
# type of testing, such that re-runs will cancel the previous run.
group: |
${{ github.workflow }}
${{ github.event_name }}
${{
(github.event_name == 'schedule' && github.sha) ||
(github.event_name == 'workflow_dispatch' && github.event.inputs.PR-number)
}}
cancel-in-progress: true

env:
# renovate: datasource=golang-version depName=go
go_version: 1.22.2
Expand Down

0 comments on commit 035d4c1

Please sign in to comment.