Skip to content

change idehelper to pr #7

change idehelper to pr

change idehelper to pr #7

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:
build-docker:
runs-on: ubuntu-latest
permissions:
contents: write # Needed for pushing changes and creating a PR
pull-requests: write # Needed for creating a pull request
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get dependencies
run: make composer-install-dev; make npm-install-gh
- 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="update-ide-helper-$(date +%Y%m%d%H%M%S)"
git checkout -b $BRANCH_NAME
git add .
git commit -m "Regenerate IDE helper files [skip 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: ${{ steps.create_new_branch.outputs.branch }}
title: "Regenerate IDE helper files"
body: |
This PR regenerates IDE helper files.