LibGfx: Fix 24bit BMPs being transparent and send them as RGBx to Skia #1091
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push notes | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
jobs: | |
build: | |
if: github.repository == 'LadybirdBrowser/ladybird' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
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 }} |