build(deps-dev): bump webpack from 5.94.0 to 5.95.0 (#1427) #602
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: submodule | |
on: | |
push: | |
branches: | |
- main | |
- v[0-9]+ | |
- v[0-9]+.[0-9]+ | |
- cryostat-v[0-9]+.[0-9]+ | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
update-submodule: | |
if: ${{ github.repository_owner == 'cryostatio' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: cryostatio/cryostat | |
token: "${{ secrets.SUBMODULE_TOKEN }}" | |
ref: "${{ github.ref_name }}" | |
- name: Check remote cryostat submodule branch | |
run: | | |
remote_branch="$(git config --get -f .gitmodules submodule."src/main/webui".branch)" | |
if [[ "$remote_branch" != "${{ github.ref_name }}" ]]; then | |
printf "Expected remote branch %s, found branch %s\n" "${{ github.ref_name }}" "$remote_branch" >&2 | |
exit 1 | |
fi | |
- name: Import GPG key | |
uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
- name: Update submodule to latest commit | |
run: | | |
git submodule update --init | |
git submodule update --remote | |
- name: Commit and push submodule | |
run: | | |
git add --all | |
git_hash="$(git rev-parse --short :src/main/webui)" | |
git commit -S -m "build(webui): update submodule to $git_hash" || echo "No changes to commit" | |
git push |