Skip to content

Testing a new GH Action #1

Testing a new GH Action

Testing a new GH Action #1

Workflow file for this run

on: [pull_request]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
- uses: actions/checkout@v4
- id: foo
uses: fosskers/[email protected]
with:
who-to-greet: "Mona the Octocat"
- run: echo random-number "$RANDOM_NUMBER"
shell: bash
env:
RANDOM_NUMBER: ${{ steps.foo.outputs.random-number }}