Skip to content

fix: Inventory texture disappears during bulk buy (#3152) #2

fix: Inventory texture disappears during bulk buy (#3152)

fix: Inventory texture disappears during bulk buy (#3152) #2

Workflow file for this run

name: Autopromote branches
on:
push:
branches:
- main
- development
jobs:
update-beta:
if: github.ref == 'refs/heads/development'
name: Merge development into beta after a PR is merged
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: merge
uses: mtanzi/action-automerge@v1
id: merge
with:
github_token: ${{ secrets.PRIVATE_TOKEN }}
source: 'development'
target: 'beta'
update-release:
if: github.ref == 'refs/heads/main'
name: Merge main into release after a PR is merged
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: merge
uses: mtanzi/action-automerge@v1
id: merge
with:
github_token: ${{ secrets.PRIVATE_TOKEN }}
source: 'main'
target: 'release'