Files
learn/.gitea/workflows/hello.yml
T
Marco Da Re 23aa040a07
Hello CI / informazioni (push) Successful in 8s
ci: aggiungi workflow hello CI
2026-06-25 07:29:35 +02:00

34 lines
938 B
YAML

name: Hello CI
on:
push:
branches:
- main
- master
jobs:
informazioni:
runs-on: ubuntu-latest
steps:
- name: Scarica il codice
uses: actions/checkout@v4
- name: Informazioni sul push
run: |
echo "=========================================="
echo "Repository: ${{ github.repository }}"
echo "Branch: ${{ github.ref_name }}"
echo "Autore: ${{ github.actor }}"
echo "Commit SHA: ${{ github.sha }}"
echo "Tipo evento: ${{ github.event_name }}"
echo "=========================================="
- name: Statistiche repository
run: |
echo "File nel repository:"
find . -type f -not -path './.git/*' | wc -l
echo ""
echo "Estensioni principali:"
find . -type f -not -path './.git/*' | sed 's/.*\.//' | sort | uniq -c | sort -rn | head -10