Add second top level job
This commit is contained in:
parent
8fa8e0ba58
commit
11797d2fd6
@ -0,0 +1,24 @@
|
||||
name: Second Composite Actions Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
env:
|
||||
ENV_VAR_1: 'set in other top level'
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: 'Test job'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: 'Clone project repository'
|
||||
uses: actions/checkout@v4
|
||||
- name: 'Call composite action'
|
||||
id: call-composite-action
|
||||
uses: ./.gitea/workflows/lib/shared-action
|
||||
with:
|
||||
param1: 'Param1 value set in other top level'
|
||||
- name: 'Output composite action response'
|
||||
run: echo "Composite action returned - ${{ steps.call-composite-action.outputs.output-one }}"
|
Loading…
Reference in New Issue
Block a user