From f82053969fcfb882c9cacf82252d5c9867158b44 Mon Sep 17 00:00:00 2001 From: JordonPhillips Date: Wed, 13 Nov 2024 16:57:43 +0100 Subject: [PATCH] TMP - testing github's actual sample --- .github/workflows/provided-example.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/provided-example.yml diff --git a/.github/workflows/provided-example.yml b/.github/workflows/provided-example.yml new file mode 100644 index 00000000000..2e60d575ccb --- /dev/null +++ b/.github/workflows/provided-example.yml @@ -0,0 +1,17 @@ +name: "Github's example one" +on: pull_request +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ github.head_ref }} + - run: | + date > generated.txt + # Note: the following account information will not work on GHES + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add . + git commit -m "generated" + git push \ No newline at end of file