LibWeb: Implement a bunch of values for WebGL2 getParameter #4334
This file contains hidden or 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: blacksmith-2vcpu-ubuntu-2404 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| 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 }} |