Skip to content

Commit

Permalink
workflows: don't re-run GitHub Actions CI on edited event
Browse files Browse the repository at this point in the history
This event is only triggered if the PR body or title is updated or if
the base branch is updated. A base branch is typically not updated and
we don't rebase anyway, so that would not affect the result of the CI
job anyway. So it seems this event can be skipped and we can save on
CI re-runs.

Epic: CRDB-8308
Release note: None
  • Loading branch information
rickystewart committed Apr 11, 2024
1 parent c6c9461 commit b7767fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-essential-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: GitHub Actions Essential CI
on:
pull_request:
types: [ opened, reopened, synchronize, edited ]
types: [ opened, reopened, synchronize ]
branches:
- 'master'
- 'release-*'
Expand Down

0 comments on commit b7767fd

Please sign in to comment.