Skip to content

Commit

Permalink
Removing concurrency from github action
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Farley <adfarley@redhat.com>
  • Loading branch information
adamfarley committed Dec 16, 2024
1 parent 3368073 commit 71e0ca2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/function-lib-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

# If a PR includes a change to any lib file, we run the function library tests.

----
name: Build Function Library Checker
on:
pull_request:
Expand All @@ -23,14 +24,18 @@ on:
env:
TEST_SCRIPT: "lib/tests/functionLibraryTests.sh"

# Cancel existing runs if user makes another push.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

permissions:
contents: read

jobs:
libtests:
permissions:
contents: read
issues: write
runs-on: ubuntu-latest
name: Run Build Function Library Tests
if: ${{ (github.repository == 'adoptium/temurin-build') || (github.event_name == 'workflow_dispatch') }}
Expand Down

0 comments on commit 71e0ca2

Please sign in to comment.