Skip to content

Commit

Permalink
Merge pull request #2421 from newrelic/add-concurrency-to-actions
Browse files Browse the repository at this point in the history
Add concurrency to PR Continuous Integration
  • Loading branch information
kaylareopelle authored Jan 30, 2024
2 parents b1d5f86 + a9ece51 commit 68b72f8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} # Ensure that only one instance of this workflow is running per Pull Request
cancel-in-progress: true # Cancel any previous runs of this workflow

jobs:
run_rubocop:
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 68b72f8

Please sign in to comment.