tangled
alpha
login
or
join now
zenfyr.dev
/
bootloader-unlock-wall-of-shame
0
fork
atom
Keeping track of companies that "care about your data 🥺"
android
android-modding
0
fork
atom
overview
issues
pulls
pipelines
sync to codeberg (hopefully?)
zenfyr.dev
9 months ago
fc692f0b
af7def4c
verified
This commit was signed with the committer's
known signature
.
zenfyr.dev
SSH Key Fingerprint:
SHA256:TtcIcnTnoAB5mqHofsaOxIgiMzfVBxej1AXT7DQdrTE=
+23
1 changed file
expand all
collapse all
unified
split
.github
workflows
sync.yml
+23
.github/workflows/sync.yml
···
1
1
+
name: sync to codeberg
2
2
+
3
3
+
on:
4
4
+
push:
5
5
+
branches:
6
6
+
- main
7
7
+
8
8
+
jobs:
9
9
+
mirror:
10
10
+
runs-on: ubuntu-latest
11
11
+
steps:
12
12
+
- name: Checkout code
13
13
+
uses: actions/checkout@v4
14
14
+
with:
15
15
+
fetch-depth: 0
16
16
+
17
17
+
- name: push to codeberg
18
18
+
run: |
19
19
+
git remote add codeberg "https://${{ secrets.CODEBERG_PAT }}@codeberg.org/melontini/bootloader-unlock-wall-of-shame.git"
20
20
+
git push --mirror codeberg
21
21
+
env:
22
22
+
GIT_TERMINAL_PROMPT: 0
23
23
+