2023-03-23 15:38:37 +00:00
|
|
|
name: Merge
|
2021-05-10 14:11:01 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-03-23 10:23:58 +00:00
|
|
|
branches: [ main, v*.x ]
|
2021-05-10 14:11:01 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-03-23 11:56:11 +00:00
|
|
|
merge:
|
2021-05-10 14:11:01 +00:00
|
|
|
if: github.repository == 'moodlemobile/moodleapp'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-01-19 10:43:39 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-05-10 14:11:01 +00:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Prepare builds
|
|
|
|
env:
|
|
|
|
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
|
2023-03-23 10:23:58 +00:00
|
|
|
run: ./.github/scripts/merge.sh
|