diff options
| author | exatombe <jeremy27.clara22@gmail.com> | 2025-10-27 21:36:28 +0100 |
|---|---|---|
| committer | exatombe <jeremy27.clara22@gmail.com> | 2025-10-27 21:36:28 +0100 |
| commit | 6b5e18930e3e9014354a9f532ef7a08d971c93f1 (patch) | |
| tree | c57ccd02c5bd31016fae6cad2454656022e500f5 | |
| parent | 2bf4d13bb57686ed7edd4c29b9b1a180468be3aa (diff) | |
Simplifier le workflow Hello World en supprimant les déclencheurs inutiles et en affichant le contenu du répertoire
| -rw-r--r-- | .forgejo/workflows/hello-world.yml | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/.forgejo/workflows/hello-world.yml b/.forgejo/workflows/hello-world.yml index e7efddd..ad34f0d 100644 --- a/.forgejo/workflows/hello-world.yml +++ b/.forgejo/workflows/hello-world.yml @@ -1,15 +1,10 @@ name: Hello World -on: - push: - branches: - - main - pull_request: - workflow_dispatch: - +on: [push] jobs: - hello: + print-content: runs-on: docker steps: - - name: Echo Hello World - run: echo "Hello World" + - name: list directory contents + run: ls -la + |
