mirror of
https://github.com/ditkrg/project-version-check.git
synced 2026-01-22 22:06:42 +00:00
34 lines
720 B
YAML
34 lines
720 B
YAML
name: Test Action
|
|
|
|
on:
|
|
pull_request:
|
|
types: [labeled]
|
|
|
|
jobs:
|
|
hello-world-job:
|
|
runs-on: ubuntu-latest
|
|
name: A job to say hello
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: "20"
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Hello world action step
|
|
uses: ./
|
|
id: hello
|
|
with:
|
|
who-to-greet: "John"
|
|
label: ${{ github.event.label.name }}
|
|
|
|
- name: Get the output time
|
|
run: |
|
|
echo "The time was ${{ steps.hello.outputs.time }}"
|
|
echo The label was ${{ steps.hello.outputs.label }}
|