From cee3c03b92fc696dc22d956069d624afed0aeb5b Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 12 May 2024 09:00:59 -0400 Subject: [PATCH] Automatically add workflow info to commit notes This commit adds the GitHub Actions workflow run URL to the notes area of each commit that is processed by the CI pipeline. This shall be used in a blog post later. --- .github/workflows/deploy.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 966d405..8cfed2c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,6 +4,21 @@ on: push: jobs: + workflow_note: + name: Workflow Note + runs-on: ubuntu-latest + steps: + - name: Checkout branch + uses: actions/checkout@v4 + + - name: Add a note with info about this workflow + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git fetch origin "refs/notes/*:refs/notes/*" + git notes append -m "GH-Actions-Workflow-Run: ${{github.server_url}}/${{github.repository}}/actions/runs/${{github.run_id}}" + git push origin "refs/notes/*:refs/notes/*" + build_dev: name: Development Build if: github.ref != 'refs/heads/master' @@ -14,7 +29,7 @@ jobs: deployments: write steps: - - name: Checkout master + - name: Checkout branch uses: actions/checkout@v4 - name: Write the commit hash into the config