Skip to content

Commit

Permalink
Rename job
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed May 10, 2024
1 parent 040d634 commit 95c9400
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ concurrency:
cancel-in-progress: true

jobs:
scrub:
name: Scrub for changed Dockerfiles
checks:
name: Dockerfile Checks
runs-on: ubuntu-22.04
outputs:
json: ${{ steps.dockerfiles.outputs.json }}
Expand Down Expand Up @@ -45,14 +45,14 @@ jobs:
# https://github.com/bcgov-nr/action-builder-ghcr
builds:
name: Builds
needs: [scrub]
if: ${{ needs.scrub.outputs.json }}
needs: [checks]
if: ${{ needs.checks.outputs.json }}
permissions:
packages: write
runs-on: ubuntu-22.04
strategy:
matrix:
include: ${{ fromJSON(needs.scrub.outputs.json) }}
include: ${{ fromJSON(needs.checks.outputs.json) }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand All @@ -71,7 +71,7 @@ jobs:

results:
name: PR Results
needs: [scrub, builds]
needs: [checks, builds]
if: always() && (!failure()) && (!cancelled())
runs-on: ubuntu-22.04
permissions:
Expand Down

0 comments on commit 95c9400

Please sign in to comment.