fix: Inventory texture disappears during bulk buy (#3152) #2
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: 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' |