From c5cfc052f8a4f7272eb32d048816e2a54cdafda7 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 12 Nov 2025 15:57:24 +0000 Subject: [PATCH] feat: create hello_world_from_jules.yml workflow Creates a new GitHub Action workflow that prints "Hello World" on pull requests. --- .github/workflows/hello_world_from_jules.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/hello_world_from_jules.yml diff --git a/.github/workflows/hello_world_from_jules.yml b/.github/workflows/hello_world_from_jules.yml new file mode 100644 index 0000000..0f1202b --- /dev/null +++ b/.github/workflows/hello_world_from_jules.yml @@ -0,0 +1,9 @@ +name: hello_world_from_jules +on: + pull_request: +permissions: write-all +jobs: + build: + runs-on: ubuntu-latest + steps: + - run: echo "Hello World"