78019b4cef
Build Workflow / Build (push) Failing after 4s
Build Workflow / Deploy (push) Has been skipped
Test Gitea Actions support Matrix? / build (14, ubuntu-latest) (push) Successful in 36s
Test Gitea Actions support Matrix? / build (16, ubuntu-latest) (push) Successful in 28s
Test Gitea Actions support Matrix? / build (18, ubuntu-latest) (push) Successful in 28s
Output Information / info (push) Successful in 6s
23 lines
781 B
YAML
23 lines
781 B
YAML
name: Output Information
|
|
on:
|
|
push:
|
|
pull_request:
|
|
types: [opened, edited, closed, reopened, synchronize]
|
|
issues:
|
|
types: [opened, edited, closed, reopened, deleted]
|
|
|
|
jobs:
|
|
info:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v3
|
|
- name: Check Command support
|
|
run: |
|
|
find -name "package-lock.json" -not -path "**/node_modules/*"
|
|
find -type f -name "package-lock.json" -not -path "**/node_modules/*" -exec md5sum "{}" + > checklist.chk
|
|
cat checklist.chk
|
|
- name: Because
|
|
run: echo "${{gitea.event.action)}}"
|
|
- name: Output Event Details
|
|
run: echo "${{toJSON(gitea.event)}}" |