diff --git a/.github/workflows/delete-serverless-dir-on-backports.yml b/.github/workflows/delete-serverless-dir-on-backports.yml new file mode 100644 index 0000000000..d2f1aa5244 --- /dev/null +++ b/.github/workflows/delete-serverless-dir-on-backports.yml @@ -0,0 +1,36 @@ +name: Delete serverless directory in backports + +on: + pull_request: + branches: + - '7.*' + - '8.*' + +jobs: + check-and-delete-serverless: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Check for existence of docs/en/serverless directory + id: check_serverless + run: | + if [ -d "docs/en/serverless" ]; then + echo "SERVERLESS_EXISTS=true" >> $GITHUB_ENV + else + echo "SERVERLESS_EXISTS=false" >> $GITHUB_ENV + fi + + - name: Delete docs/en/serverless directory if it exists + if: env.SERVERLESS_EXISTS == 'true' + run: | + rm -rf docs/en/serverless + git config pull.rebase true + git config --global user.name 'github-actions[bot]' + git config --global user.email 'github-actions[bot]@users.noreply.github.com' + git add . + git commit -m "Delete docs/en/serverless directory" + git pull origin ${{ github.head_ref }} + git push origin HEAD:${{ github.head_ref }} diff --git a/README.md b/README.md index 8e8bdb37a6..5ad0380402 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ Pull requests should be tagged with the target version of the Elastic Stack alon ### Elastic Observability Serverless docs Serverless docs are not versioned, and should never be backported. All changes should be made to the `main` branch. +If you're backporting Serverless and Stateful content in the same PR, an automation will run that deletes the `docs/en/serverless` dir from your PR. ### Integrations Developer Guide