15 lines
321 B
YAML
15 lines
321 B
YAML
name: Ping
|
|
|
|
on:
|
|
push:
|
|
branches: ['**']
|
|
pull_request:
|
|
workflow_dispatch: # bouton "Run workflow" si ta version de Gitea le supporte
|
|
|
|
jobs:
|
|
show:
|
|
runs-on: ubuntu-latest # ou k3s (voir Étape C)
|
|
steps:
|
|
- run: echo "It works on $RUNNER_OS"
|
|
- run: echo "labels: ${{ toJson(runner.labels) }}"
|