Skip to content

Commit

Permalink
change variables type
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey.shulika committed Jan 3, 2024
1 parent 72b0948 commit 5afb939
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/license_check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Check licenses

on:
workflow_call:
inputs:
runsOn:
required: false
type: string
default: 'ubuntu-20.04'
push:
branches-ignore:
- master
Expand All @@ -9,20 +15,20 @@ on:
paths-ignore:
- README.md

env:
APP_NAME: ${{ github.repository }}
BRANCH: ${{ github.ref }}
runsOn: "ubuntu-20.04"
#env:
# APP_NAME: ${{ github.repository }}
# BRANCH: ${{ github.ref }}
# runsOn: "ubuntu-20.04"

jobs:
prebuild-job:
name: Prebuild Job
uses: th2-net/.github/.github/workflows/compound-prebuild-java-dev-workflow.yml@main
with:
runsOn: ${{ env.runsOn }}
runsOn: ${{ inputs.runsOn }}

check_licenses:
runs-on: ${{ env.runsOn }}
runs-on: ${{ inputs.runsOn }}
needs: [prebuild-job]

steps:
Expand Down

0 comments on commit 5afb939

Please sign in to comment.