From 18c73ed5db51ca85d86e47c62a6943aec745a649 Mon Sep 17 00:00:00 2001 From: Joaquim Rocha Date: Fri, 16 Aug 2024 11:27:12 +0100 Subject: [PATCH] TEST_ONLY Signed-off-by: Joaquim Rocha --- ...e-static-web-apps-white-bush-0475e2d03.yml | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/azure-static-web-apps-white-bush-0475e2d03.yml diff --git a/.github/workflows/azure-static-web-apps-white-bush-0475e2d03.yml b/.github/workflows/azure-static-web-apps-white-bush-0475e2d03.yml new file mode 100644 index 0000000..a712808 --- /dev/null +++ b/.github/workflows/azure-static-web-apps-white-bush-0475e2d03.yml @@ -0,0 +1,40 @@ +name: Update README with Latest Docs Build + +on: + workflow_dispatch: + +jobs: + update-readme: + runs-on: ubuntu-latest + + steps: + - name: Checkout current repository + uses: actions/checkout@v2 + + - name: Clone headlamp repository + run: | + git clone https://github.com/headlamp-k8s/headlamp.git + cd headlamp + LATEST_COMMIT=$(git log -n 1 --pretty=format:"%H" -- docs) + echo "LATEST_COMMIT=$LATEST_COMMIT" >> $GITHUB_ENV + + - name: Update README.md + run: | + README_FILE="README.md" + DOCS_LINK="https://github.com/headlamp-k8s/headlamp/tree/$LATEST_COMMIT/docs" + # Shorten the hash to 7 characters + LATEST_COMMIT_SHORT=$(echo $LATEST_COMMIT | cut -c1-7) + sed -i "s|^Latest docs build: \[.*\]\(.*\)|Latest docs build: \[$LATEST_COMMIT_SHORT\]($DOCS_LINK)|" $README_FILE + env: + LATEST_COMMIT: ${{ env.LATEST_COMMIT }} + + - name: Commit and push changes + run: | + git config --global user.name 'github-actions[bot]' + git config --global user.email 'github-actions[bot]@users.noreply.github.com' + git add README.md + git checkout -b update-readme + git commit -m "README: Update with latest docs build (automated commit)" + git push -f origin update-readme + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}