Skip to content

Updated bmp.h file because the code runs successfully on Windows MSYS2 but fails on Windows MinGW environment. #13

Updated bmp.h file because the code runs successfully on Windows MSYS2 but fails on Windows MinGW environment.

Updated bmp.h file because the code runs successfully on Windows MSYS2 but fails on Windows MinGW environment. #13

Workflow file for this run

name: Label Checker
on:
pull_request:
types: [opened, edited, synchronize, reopened, labeled, unlabeled]
jobs:
check-labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm install @actions/github @actions/core
- name: Run Label Checker
run: node .github/workflows/label-checker.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}