42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
name: Auto Update Branch
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
- 'rc'
|
|
paths:
|
|
- 'apps/web/**'
|
|
- 'libs/**'
|
|
- '*'
|
|
- '!*.md'
|
|
- '!*.txt'
|
|
- '.github/workflows/build-web.yml'
|
|
workflow_dispatch:
|
|
inputs: {}
|
|
|
|
jobs:
|
|
update:
|
|
name: Update Branch
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
_BOT_EMAIL: 106330231+bitwarden-devops-bot@users.noreply.github.com
|
|
_BOT_NAME: bitwarden-devops-bot
|
|
steps:
|
|
- name: Setup
|
|
id: setup
|
|
run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
|
with:
|
|
ref: 'eu-web-${{ steps.setup.outputs.branch }}'
|
|
fetch-depth: 0
|
|
|
|
- name: Merge ${{ steps.setup.outputs.branch }}
|
|
run: |
|
|
git config --local user.email "${{ env._BOT_EMAIL }}"
|
|
git config --local user.name "${{ env._BOT_NAME }}"
|
|
git merge origin/${{ steps.setup.outputs.branch }}
|
|
git push
|