We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a6b2c8 commit 0451bb5Copy full SHA for 0451bb5
2 files changed
.github/workflows/01-hello-world.yaml
@@ -5,7 +5,14 @@ on:
5
# - main
6
workflow_dispatch:
7
jobs:
8
- say-hello:
+ say-hello-inline:
9
runs-on: ubuntu-24.04
10
steps:
11
- - run: echo "👋 Hello from a GitHub Action Workflow!"
+ - 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
@@ -5,7 +5,7 @@ on:
matrix-job:
- runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
0 commit comments