15 lines
388 B
YAML
15 lines
388 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
linked_issues:
|
|
runs-on: ubuntu-latest
|
|
name: A job to say hello
|
|
steps:
|
|
- name: Hello world action step
|
|
id: hello
|
|
uses: hossainemruz/linked-issues@main
|
|
with:
|
|
person: 'Emruz'
|
|
# Use the output from the `hello` step
|
|
- name: Get the output time
|
|
run: echo "The time was ${{ steps.hello.outputs.time }}"
|