Lock file maintenance (#1039) #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: generate idehelper | |
on: | |
push: | |
branches: | |
- dev | |
paths-ignore: | |
- 'README.md' | |
- 'renovate.json' | |
- '.github/workflows/update-dockerhub.yml' | |
- '.github/workflows/website_build.yml' | |
- 'docs' | |
workflow_dispatch: # Allows action to be run manually from the Actions tab | |
jobs: | |
regenerate-idehelper: | |
runs-on: 'ubuntu-latest' | |
permissions: | |
contents: write # Needed for pushing changes | |
pull-requests: write # Needed for creating pull requests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: setup prereq | |
run: make env-file-dev; make docker-lan | |
- name: get dependencies | |
run: make composer-install-dev; make npm-install-gh | |
- name: make foldersctructure and layout images | |
run: make folder-structure-dev; make layout-images-dev | |
- name: spin up dev | |
run: make purge-cache; make generate-key-dev; make dev; make wait-mysql; sleep 10 | |
- name: make regenerate-idehelper | |
run: make regenerate-idehelper | |
- name: Check for changes | |
run: | | |
if [[ -n "$(git status --porcelain)" ]]; then | |
echo "Changes detected. Preparing to create a pull request." | |
echo "has_changes=true" >> $GITHUB_ENV | |
else | |
echo "No changes detected. Skipping pull request." | |
echo "has_changes=false" >> $GITHUB_ENV | |
fi | |
- name: Create new branch and push changes | |
if: env.has_changes == 'true' | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
BRANCH_NAME="maint/update-ide-helper-$(date +%Y%m%d%H%M%S)" | |
echo "branch_name=${BRANCH_NAME}" >> $GITHUB_ENV | |
git checkout -b $BRANCH_NAME | |
git add . | |
git commit -m "Regenerate IDE helper files [ci]" | |
git push origin $BRANCH_NAME | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Pull Request | |
if: env.has_changes == 'true' | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ env.branch_name }} | |
base: dev | |
title: "Regenerate IDE helper files" | |
body: | | |
This PR regenerates IDE helper files. | |
Changes were automatically detected and pushed by the workflow. |