2024-07-19 05:56:35 +00:00
|
|
|
name: Push notes
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2024-07-19 19:24:47 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2024-07-19 05:56:35 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
2024-07-21 11:09:48 +00:00
|
|
|
if: github.repository == 'LadybirdBrowser/ladybird'
|
2024-07-19 05:56:35 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-07-20 06:39:53 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-07-19 05:56:35 +00:00
|
|
|
- uses: fregante/setup-git-user@v2
|
|
|
|
- run: |
|
|
|
|
git fetch origin "refs/notes/*:refs/notes/*"
|
|
|
|
curl -fsSLO https://sideshowbarker.github.io/git-gloss/git-gloss && bash ./git-gloss
|
2024-07-23 07:58:31 +00:00
|
|
|
git push origin "refs/notes/*" || true
|
2024-07-19 05:56:35 +00:00
|
|
|
env:
|
|
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|