Update WAProto #10353
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: Update WAProto | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
schedule: | |
- cron: "0,30 * * * *" | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
update-proto: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup GIT | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Get npm cache directory | |
id: npm-cache | |
run: | | |
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT | |
- name: Setup npm cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.npm-cache.outputs.dir }} | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install Dependencies | |
run: npm ci || npm install | |
- name: Check update WAProto.proto | |
id: wa_proto_info | |
run: npm run build | |
env: | |
WA_COMMIT: true | |
- name: Check for Changes | |
id: check_changes | |
run: | | |
CHANGED_LINES=$(git diff --stat | tail -n1 | awk '{print $1}') | |
if [ -z "$CHANGED_LINES" ] || [ "$CHANGED_LINES" -le 1 ]; then | |
echo "::set-output name=result::no_changes" | |
else | |
echo "::set-output name=result::changes_detected" | |
fi | |
- name: Checkout main | |
if: steps.check_changes.outputs.result == 'changes_detected' | |
run: git checkout main | |
- name: Commit Changes | |
if: steps.check_changes.outputs.result == 'changes_detected' | |
run: | | |
git add . | |
git commit -m "Update WAProto.proto" | |
- name: Push Changes | |
if: steps.check_changes.outputs.result == 'changes_detected' | |
run: git push | |
- name: Remove untracked files | |
if: steps.check_changes.outputs.result == 'changes_detected' | |
run: git clean -fd | |
- name: Release | |
if: steps.check_changes.outputs.result == 'changes_detected' | |
run: 'npx release-it --increment ${{ github.event.inputs.increment }}' |