-
Notifications
You must be signed in to change notification settings - Fork 4
42 lines (34 loc) · 1.02 KB
/
push-on-change.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
on:
push:
branches:
- '*/*'
workflow_dispatch:
name: Push on change
jobs:
create_key:
runs-on: ubuntu-24.04
name: Push on change ${{ github.ref }}
steps:
- name: Install git-filter-repo
run: |
sudo apt-get update
sudo apt-get install -y git-filter-repo
- name: Check out our repository
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0
- name: Configure Git identity
run: |
git log -n 1 --pretty=format:"git config --global user.name '%an' && git config --global user.email '%ae'" | tee /dev/stderr | sh
- name: Get branch name
id: remote_repo
run: |
echo "slug=$(echo $GITHUB_REF | sed 's#refs/heads/##')" >> $GITHUB_OUTPUT
shell: bash
- name: Merge subtree
env:
TOKEN_KEYS: ${{ secrets.TOKEN_KEYS }}
GH_TOKEN: ${{ secrets.TOKEN_KEYS }}
run: |
./run.sh merge_into_remote ${{ steps.remote_repo.outputs.slug }}