You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-05-04 20:54:02 +02:00
31 lines
717 B
YAML
31 lines
717 B
YAML
name: Update Stable Branch on Release or Update
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- published
|
|
- updated
|
|
|
|
jobs:
|
|
update-stable:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- name: Checkout main branch
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: main
|
|
fetch-depth: 0 # Полная история для force push
|
|
|
|
- name: Configure Git user
|
|
run: |
|
|
git config --local user.email "vitaly.the.alpaca@gmail.com"
|
|
git config --local user.name "Vitaly the Alpaca (bot)"
|
|
|
|
- name: Force update stable branch to match main
|
|
run: |
|
|
git checkout -B stable
|
|
git push --force origin stable
|