Files
ladybird/.github/workflows/notes-push.yml
Timothy Flynn b1f672de81 CI: Pin the checkout action to version 6.0.1
If we pin to only v6, we will have a harder time catching breakage due
to minor version updates. This happened recently with the test262 CI
workflow.
2025-12-10 07:43:33 -05:00

24 lines
607 B
YAML

name: Push notes
on:
push:
branches:
- master
permissions:
contents: write
jobs:
build:
if: github.repository == 'LadybirdBrowser/ladybird'
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v6.0.1
with:
fetch-depth: 0
- 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
git push origin "refs/notes/*" || true
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}