Skip to content

Commit 0451bb5

Browse files
committed
add 3rd party hello action
1 parent 5a6b2c8 commit 0451bb5

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/01-hello-world.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@ on:
55
# - main
66
workflow_dispatch:
77
jobs:
8-
say-hello:
8+
say-hello-inline:
99
runs-on: ubuntu-24.04
1010
steps:
11-
- run: echo "👋 Hello from a GitHub Action Workflow!"
11+
- run: echo "👋 Hello from an inline bash script in a GitHub Action Workflow!"
12+
13+
say-hello-action:
14+
runs-on: ubuntu-24.04
15+
steps:
16+
- uses: gr2m/hello-world-js-action@597729a1f68eeea20182bf483e713dac43601156 # 1.1.1
17+
with:
18+
greeting: "from an action in the github action marketplace"

.github/workflows/05-matrix-and-conditionals.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
matrix-job:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04
99
strategy:
1010
fail-fast: true
1111
matrix:

0 commit comments

Comments
 (0)