From 8894dcf5f81ba761c4ad8a771c3f5a4d3cb89c0e Mon Sep 17 00:00:00 2001 From: Jesse Shawl Date: Mon, 17 Jun 2024 17:21:46 -0500 Subject: [PATCH 1/3] test github.workspace attachment --- .github/workflows/demo.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 8e677e2..9819d19 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -7,6 +7,7 @@ jobs: - run: echo "Starting GitHub Actions Job" - uses: cinotify/github-action@main with: - to: 'example@example.com' - subject: 'building main' - body: 'This is a notification from GitHub actions.' \ No newline at end of file + to: "example@example.com" + subject: "building main" + body: "This is a notification from GitHub actions." + attachment: "${{github.workspace}}/README.md" From 91d736e67c073deeceab1df1b95aa53f50cc3523 Mon Sep 17 00:00:00 2001 From: Jesse Shawl Date: Mon, 17 Jun 2024 17:22:44 -0500 Subject: [PATCH 2/3] with checkout --- .github/workflows/demo.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 9819d19..f4d677e 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -4,6 +4,8 @@ jobs: First-Step: runs-on: ubuntu-latest steps: + - name: Check out repository code + uses: actions/checkout@v4 - run: echo "Starting GitHub Actions Job" - uses: cinotify/github-action@main with: From 54b20bb35fe728497a11ae3e501878b16aa8d768 Mon Sep 17 00:00:00 2001 From: Jesse Shawl Date: Mon, 17 Jun 2024 17:25:00 -0500 Subject: [PATCH 3/3] send to myself --- .github/workflows/demo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index f4d677e..c570624 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -9,7 +9,7 @@ jobs: - run: echo "Starting GitHub Actions Job" - uses: cinotify/github-action@main with: - to: "example@example.com" + to: "jesse@jesse.sh" subject: "building main" body: "This is a notification from GitHub actions." attachment: "${{github.workspace}}/README.md"